/* DUPLICATOR-PRO (PHP MULTI-THREADED BUILD MODE) MYSQL SCRIPT CREATED ON : 2026-07-02 18:37:41 */

/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;

CREATE TABLE IF NOT EXISTS `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`),
  KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=8732 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=9114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=21838 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_awb_critical_css` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `css_key` varchar(255) NOT NULL,
  `mobile_css` longtext NOT NULL,
  `desktop_css` longtext NOT NULL,
  `mobile_preloads` longtext NOT NULL,
  `desktop_preloads` longtext NOT NULL,
  `updated_at` varchar(25) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

CREATE TABLE IF NOT EXISTS `wp_duplicator_activity_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(100) NOT NULL,
  `sub_type` varchar(100) NOT NULL,
  `severity` int(8) NOT NULL,
  `title` text NOT NULL,
  `data` longtext NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `version` varchar(30) NOT NULL DEFAULT '',
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `type_idx` (`type`),
  KEY `sub_type_idx` (`sub_type`),
  KEY `severity_idx` (`severity`),
  KEY `created_at` (`created_at`),
  KEY `updated_at` (`updated_at`),
  KEY `version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_duplicator_backups` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(100) NOT NULL,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `archive_name` varchar(350) NOT NULL DEFAULT '',
  `status` int(11) NOT NULL,
  `flags` set('MANUAL','SCHEDULE','SCHEDULE_RUN_NOW','DB_ONLY','MEDIA_ONLY','HAVE_LOCAL','HAVE_REMOTE','DISASTER_AVAIABLE','DISASTER_SET','CREATED_AFTER_RESTORE','ACTIVE','TEMPLATE','ZIP_ARCHIVE','DUP_ARCHIVE','TEMPORARY') NOT NULL DEFAULT '',
  `package` longtext NOT NULL,
  `version` varchar(30) NOT NULL DEFAULT '',
  `created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `type_idx` (`type`),
  KEY `hash` (`hash`),
  KEY `flags` (`flags`),
  KEY `version` (`version`),
  KEY `created` (`created`),
  KEY `updated_at` (`updated_at`),
  KEY `status` (`status`),
  KEY `name` (`name`(191)),
  KEY `archive_name` (`archive_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_duplicator_entities` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(100) NOT NULL,
  `value_1` varchar(255) NOT NULL DEFAULT '',
  `value_2` varchar(255) NOT NULL DEFAULT '',
  `value_3` varchar(255) NOT NULL DEFAULT '',
  `value_4` varchar(255) NOT NULL DEFAULT '',
  `value_5` varchar(255) NOT NULL DEFAULT '',
  `data` longtext NOT NULL,
  `version` varchar(30) NOT NULL DEFAULT '',
  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `type_idx` (`type`),
  KEY `created_at` (`created_at`),
  KEY `updated_at` (`updated_at`),
  KEY `version` (`version`),
  KEY `value_1` (`value_1`(191)),
  KEY `value_2` (`value_2`(191)),
  KEY `value_3` (`value_3`(191)),
  KEY `value_4` (`value_4`(191)),
  KEY `value_5` (`value_5`(191))
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_duplicator_pro_entities` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(100) NOT NULL,
  `data` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_idx` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_duplicator_pro_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_fusion_forms` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `views` bigint(20) DEFAULT 0,
  `submissions_count` bigint(20) DEFAULT 0,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_fusion_form_entries` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `form_id` bigint(20) NOT NULL,
  `field_id` bigint(20) NOT NULL,
  `value` longtext DEFAULT NULL,
  `privacy` tinyint(1) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_fusion_form_fields` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `field_name` varchar(256) NOT NULL,
  `field_label` varchar(256) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_fusion_form_submissions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `time` datetime NOT NULL,
  `source_url` varchar(512) NOT NULL,
  `post_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `ip` varchar(512) DEFAULT NULL,
  `is_read` tinyint(1) DEFAULT NULL,
  `privacy_scrub_date` date DEFAULT NULL,
  `on_privacy_scrub` varchar(20) NOT NULL,
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_draft_submissions` (
  `uuid` char(32) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(45) NOT NULL,
  `source_url` longtext NOT NULL,
  `submission` longtext NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_entry` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `post_id` bigint(10) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_starred` tinyint(10) NOT NULL DEFAULT 0,
  `is_read` tinyint(10) NOT NULL DEFAULT 0,
  `ip` varchar(45) NOT NULL,
  `source_url` varchar(200) NOT NULL DEFAULT '',
  `user_agent` varchar(250) NOT NULL DEFAULT '',
  `currency` varchar(5) DEFAULT NULL,
  `payment_status` varchar(15) DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) DEFAULT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `is_fulfilled` tinyint(10) DEFAULT NULL,
  `created_by` bigint(10) unsigned DEFAULT NULL,
  `transaction_type` tinyint(10) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'active',
  `source_id` bigint(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `form_id_status` (`form_id`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_entry_meta` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL DEFAULT 0,
  `entry_id` bigint(10) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  `item_index` varchar(60) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `entry_id` (`entry_id`),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_entry_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) DEFAULT NULL,
  `user_id` bigint(10) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext DEFAULT NULL,
  `note_type` varchar(50) DEFAULT NULL,
  `sub_type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_form` (
  `id` mediumint(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_active` tinyint(10) NOT NULL DEFAULT 1,
  `is_trash` tinyint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_form_meta` (
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `entries_grid_meta` longtext DEFAULT NULL,
  `confirmations` longtext DEFAULT NULL,
  `notifications` longtext DEFAULT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_form_revisions` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `date_created` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_gf_form_view` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` mediumint(10) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_imunify_bot_rl` (
  `rl_key` varchar(191) NOT NULL,
  `counter` int(10) unsigned NOT NULL DEFAULT 0,
  `expires_at` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`rl_key`),
  KEY `idx_expires_at` (`expires_at`) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=ascii COLLATE=ascii_general_ci;

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

CREATE TABLE IF NOT EXISTS `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=17515 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4646 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

CREATE TABLE IF NOT EXISTS `wp_sbi_feeds` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_name` text NOT NULL DEFAULT '',
  `feed_title` text NOT NULL DEFAULT '',
  `settings` longtext NOT NULL DEFAULT '',
  `author` bigint(20) unsigned NOT NULL DEFAULT 1,
  `status` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `author` (`author`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_sbi_feed_caches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(255) NOT NULL DEFAULT '',
  `cache_key` varchar(255) NOT NULL DEFAULT '',
  `cache_value` longtext NOT NULL DEFAULT '',
  `cron_update` varchar(20) NOT NULL DEFAULT 'yes',
  `last_updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`(191))
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_sbi_instagram_feeds_posts` (
  `record_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id` int(11) unsigned NOT NULL,
  `instagram_id` varchar(1000) NOT NULL DEFAULT '',
  `feed_id` varchar(1000) NOT NULL DEFAULT '',
  `hashtag` varchar(1000) NOT NULL DEFAULT '',
  PRIMARY KEY (`record_id`),
  KEY `hashtag` (`hashtag`(191)),
  KEY `feed_id` (`feed_id`(191))
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_sbi_instagram_feed_locator` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(50) NOT NULL DEFAULT '',
  `post_id` bigint(20) unsigned NOT NULL,
  `html_location` varchar(50) NOT NULL DEFAULT 'unknown',
  `shortcode_atts` longtext NOT NULL,
  `last_update` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`),
  KEY `post_id` (`post_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

CREATE TABLE IF NOT EXISTS `wp_sbi_instagram_posts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created_on` datetime DEFAULT NULL,
  `instagram_id` varchar(1000) NOT NULL DEFAULT '',
  `time_stamp` datetime DEFAULT NULL,
  `top_time_stamp` datetime DEFAULT NULL,
  `json_data` longtext NOT NULL DEFAULT '',
  `media_id` varchar(1000) NOT NULL DEFAULT '',
  `sizes` varchar(1000) NOT NULL DEFAULT '',
  `aspect_ratio` decimal(4,2) NOT NULL DEFAULT 0.00,
  `images_done` tinyint(1) NOT NULL DEFAULT 0,
  `last_requested` date DEFAULT NULL,
  `mime_type` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_sbi_sources` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` varchar(255) NOT NULL DEFAULT '',
  `account_type` varchar(255) NOT NULL DEFAULT '',
  `privilege` varchar(255) NOT NULL DEFAULT '',
  `access_token` varchar(1000) NOT NULL DEFAULT '',
  `username` varchar(255) NOT NULL DEFAULT '',
  `info` text NOT NULL DEFAULT '',
  `error` text NOT NULL DEFAULT '',
  `expires` datetime NOT NULL,
  `last_updated` datetime NOT NULL,
  `author` bigint(20) unsigned NOT NULL DEFAULT 1,
  `connect_type` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `account_type` (`account_type`(191)),
  KEY `author` (`author`)
) ENGINE=InnoDB AUTO_INCREMENT=150 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wow_fmp` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) DEFAULT NULL,
  `param` longtext DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 0,
  `mode` tinyint(1) NOT NULL DEFAULT 0,
  `tag` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wpr_above_the_fold` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `lcp` longtext DEFAULT '',
  `viewport` longtext DEFAULT '',
  `error_message` longtext DEFAULT NULL,
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191))
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wpr_lazy_render_content` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `below_the_fold` longtext DEFAULT '',
  `error_message` longtext DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191))
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wpr_performance_monitoring` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `title` text DEFAULT '',
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `job_id` varchar(255) NOT NULL DEFAULT '',
  `queue_name` varchar(255) NOT NULL DEFAULT '',
  `retries` tinyint(1) NOT NULL DEFAULT 1,
  `status` varchar(255) DEFAULT NULL,
  `data` longtext NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `submitted_at` timestamp NULL DEFAULT NULL,
  `next_retry_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `score` tinyint(3) DEFAULT 0,
  `report_url` varchar(255) DEFAULT '',
  `is_blurred` tinyint(1) NOT NULL DEFAULT 0,
  `metric_data` longtext DEFAULT NULL,
  `error_code` varchar(32) DEFAULT NULL,
  `error_message` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `url_is_mobile` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191)),
  KEY `error_code_index` (`error_code`),
  KEY `is_blurred` (`is_blurred`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wpr_preconnect_external_domains` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `domains` longtext DEFAULT '',
  `error_message` longtext DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191))
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wpr_preload_fonts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `fonts` longtext DEFAULT '',
  `error_message` longtext DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wpr_rocket_cache` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `is_locked` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`)
) ENGINE=InnoDB AUTO_INCREMENT=191 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE IF NOT EXISTS `wp_wpr_rucss_used_css` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(2000) NOT NULL DEFAULT '',
  `css` longtext DEFAULT NULL,
  `hash` varchar(32) DEFAULT '',
  `error_code` varchar(32) DEFAULT NULL,
  `error_message` longtext DEFAULT NULL,
  `unprocessedcss` longtext DEFAULT NULL,
  `retries` tinyint(1) NOT NULL DEFAULT 1,
  `is_mobile` tinyint(1) NOT NULL DEFAULT 0,
  `job_id` varchar(255) NOT NULL DEFAULT '',
  `queue_name` varchar(255) NOT NULL DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_accessed` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `submitted_at` timestamp NULL DEFAULT NULL,
  `next_retry_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `url` (`url`(150),`is_mobile`),
  KEY `modified` (`modified`),
  KEY `last_accessed` (`last_accessed`),
  KEY `status_index` (`status`(191)),
  KEY `error_code_index` (`error_code`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

/***** TABLE CREATION END *****/
INSERT IGNORE INTO `wp_users` VALUES 
("1","Tahoora","$wp$2y$10$gr8qdb5/nzEN381/jxRZE.JEjIbQu/mdHhp5TRUPa5FJUAPePIm1G","tahoora","tahoora.av27@gmail.com","https://dr.frex.digital","2026-06-01 14:51:36","","0","Tahoora");

INSERT IGNORE INTO `wp_usermeta` VALUES 
("1","1","nickname","Tahoora"),
("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","modern"),
("9","1","use_ssl","0"),
("10","1","show_admin_bar_front","true"),
("11","1","locale",""),
("12","1","wp_capabilities","a:1:{s:13:\"administrator\";b:1;}"),
("13","1","wp_user_level","10"),
("14","1","dismissed_wp_pointers",""),
("15","1","show_welcome_panel","1"),
("17","1","wp_dashboard_quick_press_last_post_id","2825"),
("18","1","community-events-location","a:1:{s:2:\"ip\";s:12:\"195.15.255.0\";}"),
("19","1","session_tokens","a:8:{s:64:\"cd18fd6599119994c2d068d68a641a6e190111150c440aba3df05f9458643316\";a:4:{s:10:\"expiration\";i:1783156898;s:2:\"ip\";s:13:\"77.83.203.137\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1782984098;}s:64:\"9f0e660e4fca3bde1f1b94cc9ae46fd721c13baefbbeb7b78c571c6472f379fa\";a:4:{s:10:\"expiration\";i:1783168844;s:2:\"ip\";s:13:\"77.83.203.139\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1782996044;}s:64:\"6960459c8788f8d602909012e9f5ddac32a01e9eafa819b27e4e876ca9bb14f3\";a:4:{s:10:\"expiration\";i:1783169160;s:2:\"ip\";s:14:\"83.228.251.111\";s:2:\"ua\";s:145:\"Mozilla/5.0 (iPhone; CPU iPhone OS 26_5_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/149.0.7827.137 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1782996360;}s:64:\"9322da55064368ff18f096d77c02a47d0f4d3b0dc2dc2c6c659199c690faddda\";a:4:{s:10:\"expiration\";i:1783169163;s:2:\"ip\";s:14:\"83.228.251.111\";s:2:\"ua\";s:145:\"Mozilla/5.0 (iPhone; CPU iPhone OS 26_5_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/149.0.7827.137 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1782996363;}s:64:\"78352e8e9704ae1d8d7df8ef3c1ba79a859179e40f05beb6c1cceb24ee87760f\";a:4:{s:10:\"expiration\";i:1783169894;s:2:\"ip\";s:15:\"178.131.136.226\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1782997094;}s:64:\"d4b231198528ac1d56c2c5250b002f6746402baef2bb4acba51e22d6874d1e72\";a:4:{s:10:\"expiration\";i:1783170851;s:2:\"ip\";s:15:\"178.131.136.226\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1782998051;}s:64:\"64df17f3f94f4474b68d4db9e1f309dba7a1d2d8b7151f39435100db6b321381\";a:4:{s:10:\"expiration\";i:1783174465;s:2:\"ip\";s:15:\"178.131.136.226\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1783001665;}s:64:\"f3c21c00f76e03af7465cffc9b53d8c696eae9f36622ef1560c9322afba70c61\";a:4:{s:10:\"expiration\";i:1783183760;s:2:\"ip\";s:13:\"195.15.255.50\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1783010960;}}"),
("20","1","wp_user-settings","libraryContent=browse&editor=tinymce&hidetb=1&imgsize=full&posts_list_mode=list"),
("21","1","wp_user-settings-time","1781712929"),
("22","1","nav_menu_recently_edited","6"),
("23","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\";}"),
("24","1","metaboxhidden_nav-menus","a:5:{i:0;s:19:\"add-post-type-class\";i:1;s:24:\"add-post-type-instructor\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:18:\"add-class_category\";}"),
("25","1","sbi_onboarding","s:40:\"a:1:{s:10:\"customizer\";s:9:\"dismissed\";}\";"),
("26","1","wpcode_default_code_type","html"),
("27","1","managetoplevel_page_wpcodecolumnshidden","a:3:{i:0;s:4:\"note\";i:1;s:9:\"shortcode\";i:2;s:7:\"updated\";}"),
("28","1","gform_recent_forms","a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}"),
("29","1","edit_page_per_page","100"),
("30","1","wpcode_snippet_activate_notice_shown","1"),
("31","1","rocket_boxes","a:1:{i:0;s:34:\"rocket_warning_plugin_modification\";}"),
("32","1","rocketcdn_dismiss_notice","1"),
("33","1","meta-box-order_page","a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:219:\"fusion_settings_meta_box,submitdiv,pageparentdiv,rocket_post_exclude,postimagediv,featured-image-2_page,featured-image-3_page,featured-image-4_page,featured-image-5_page,fusion_featured_images_info,fusion_builder_layout\";s:6:\"normal\";s:83:\"revisionsdiv,commentstatusdiv,commentsdiv,slugdiv,authordiv,wpcode-metabox-snippets\";s:8:\"advanced\";s:17:\"pyre_page_options\";}"),
("34","1","screen_layout_page","2"),
("35","1","duplicator_dismissed_admin_notices","a:1:{s:26:\"duplicator_cross_promotion\";a:1:{s:4:\"time\";i:1783016063;}}"),
("36","1","duplicator_pro_created_format","1");

INSERT IGNORE INTO `wp_actionscheduler_actions` VALUES 
("1463","rocket_job_warmup","complete","2026-06-12 11:25:57","2026-06-12 11:25:57","10","[]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:58","2026-06-12 11:25:58","0",NULL),
("1464","action_scheduler/migration_hook","complete","2026-06-12 11:26:57","2026-06-12 11:26:57","10","[]","O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1781263617;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1781263617;}","3","1","2026-06-12 11:26:57","2026-06-12 11:26:57","0",NULL),
("1468","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1469","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/botox-anti-wrinkle\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1470","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/botox-anti-wrinkle\\/forehead-and-crows-feet\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1471","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1472","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/skin-boosters\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1473","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/pdrn-and-salmon-dna\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1474","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/biostimulators\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1475","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/microneedling\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1476","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/prp\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("1477","rocket_job_warmup_url","complete","2026-06-12 11:25:58","2026-06-12 11:25:58","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\\/\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","2","1","2026-06-12 11:25:59","2026-06-12 11:25:59","0",NULL),
("8611","rocket_preload_job_preload_url","complete","2026-07-02 17:36:38","2026-07-02 17:36:38","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:37:10","2026-07-02 17:37:10","0",NULL),
("8612","rocket_preload_job_preload_url","complete","2026-07-02 17:36:38","2026-07-02 17:36:38","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:37:10","2026-07-02 17:37:10","0",NULL),
("8613","rocket_preload_job_preload_url","complete","2026-07-02 17:36:38","2026-07-02 17:36:38","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:37:10","2026-07-02 17:37:10","0",NULL),
("8614","rocket_preload_job_preload_url","complete","2026-07-02 17:36:38","2026-07-02 17:36:38","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/chin-filler\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:37:12","2026-07-02 17:37:12","0",NULL),
("8615","rocket_preload_job_preload_url","complete","2026-07-02 17:36:38","2026-07-02 17:36:38","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:37:15","2026-07-02 17:37:15","0",NULL),
("8616","rocket_preload_job_preload_url","complete","2026-07-02 17:37:15","2026-07-02 17:37:15","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:38:01","2026-07-02 17:38:01","0",NULL),
("8617","rocket_preload_job_preload_url","complete","2026-07-02 17:37:15","2026-07-02 17:37:15","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:38:03","2026-07-02 17:38:03","0",NULL),
("8618","rocket_preload_job_preload_url","complete","2026-07-02 17:37:15","2026-07-02 17:37:15","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:38:05","2026-07-02 17:38:05","0",NULL),
("8619","rocket_preload_job_preload_url","complete","2026-07-02 17:37:15","2026-07-02 17:37:15","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/jawline-filler\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:38:07","2026-07-02 17:38:07","0",NULL),
("8620","rocket_preload_job_preload_url","complete","2026-07-02 17:37:15","2026-07-02 17:37:15","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:38:09","2026-07-02 17:38:09","0",NULL),
("8621","rocket_preload_job_preload_url","complete","2026-07-02 17:38:09","2026-07-02 17:38:09","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:39:25","2026-07-02 17:39:25","0",NULL),
("8622","rocket_preload_job_preload_url","complete","2026-07-02 17:38:09","2026-07-02 17:38:09","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:39:27","2026-07-02 17:39:27","0",NULL),
("8623","rocket_preload_job_preload_url","complete","2026-07-02 17:38:09","2026-07-02 17:38:09","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:39:29","2026-07-02 17:39:29","0",NULL),
("8624","rocket_preload_job_preload_url","complete","2026-07-02 17:38:09","2026-07-02 17:38:09","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/face-contouring\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:39:32","2026-07-02 17:39:32","0",NULL),
("8625","rocket_preload_job_preload_url","complete","2026-07-02 17:38:09","2026-07-02 17:38:09","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:39:34","2026-07-02 17:39:34","0",NULL),
("8626","rocket_preload_job_preload_url","complete","2026-07-02 17:39:34","2026-07-02 17:39:34","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/fat-dissolving\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:40:13","2026-07-02 17:40:13","0",NULL),
("8627","rocket_preload_job_preload_url","complete","2026-07-02 17:39:34","2026-07-02 17:39:34","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/fat-dissolving\\/double-chin\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:40:16","2026-07-02 17:40:16","0",NULL),
("8628","rocket_preload_job_preload_url","complete","2026-07-02 17:39:34","2026-07-02 17:39:34","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:40:18","2026-07-02 17:40:18","0",NULL),
("8629","rocket_preload_job_preload_url","complete","2026-07-02 17:39:34","2026-07-02 17:39:34","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:40:20","2026-07-02 17:40:20","0",NULL),
("8630","rocket_preload_job_preload_url","complete","2026-07-02 17:39:34","2026-07-02 17:39:34","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:40:21","2026-07-02 17:40:21","0",NULL),
("8631","rocket_preload_job_preload_url","complete","2026-07-02 17:39:34","2026-07-02 17:39:34","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\\/high-dose-vitamin-c\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:40:24","2026-07-02 17:40:24","0",NULL),
("8632","rocket_preload_job_preload_url","complete","2026-07-02 17:39:34","2026-07-02 17:39:34","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:40:26","2026-07-02 17:40:26","0",NULL),
("8633","rocket_preload_job_preload_url","complete","2026-07-02 17:40:26","2026-07-02 17:40:26","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:41:40","2026-07-02 17:41:40","0",NULL),
("8634","rocket_preload_job_preload_url","complete","2026-07-02 17:40:26","2026-07-02 17:40:26","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:41:42","2026-07-02 17:41:42","0",NULL),
("8635","rocket_preload_job_preload_url","complete","2026-07-02 17:40:26","2026-07-02 17:40:26","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:41:44","2026-07-02 17:41:44","0",NULL),
("8636","rocket_preload_job_preload_url","complete","2026-07-02 17:40:26","2026-07-02 17:40:26","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\\/glutathione-iv\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:41:46","2026-07-02 17:41:46","0",NULL),
("8637","rocket_preload_job_preload_url","complete","2026-07-02 17:40:26","2026-07-02 17:40:26","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:41:49","2026-07-02 17:41:49","0",NULL),
("8638","rocket_preload_job_preload_url","complete","2026-07-02 17:41:49","2026-07-02 17:41:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\\/nad-iv\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:42:27","2026-07-02 17:42:27","0",NULL),
("8639","rocket_preload_job_preload_url","complete","2026-07-02 17:41:49","2026-07-02 17:41:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:42:30","2026-07-02 17:42:30","0",NULL),
("8640","rocket_preload_job_preload_url","complete","2026-07-02 17:41:49","2026-07-02 17:41:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:42:31","2026-07-02 17:42:31","0",NULL),
("8641","rocket_preload_job_preload_url","complete","2026-07-02 17:41:49","2026-07-02 17:41:49","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:42:33","2026-07-02 17:42:33","0",NULL),
("8642","rocket_preload_job_preload_url","complete","2026-07-02 17:41:49","2026-07-02 17:41:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\\/vitamin-injections\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:42:36","2026-07-02 17:42:36","0",NULL),
("8643","rocket_preload_job_preload_url","complete","2026-07-02 17:41:49","2026-07-02 17:41:49","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:42:38","2026-07-02 17:42:38","0",NULL),
("8644","rocket_preload_job_preload_url","complete","2026-07-02 17:42:38","2026-07-02 17:42:38","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:43:11","2026-07-02 17:43:11","0",NULL),
("8645","rocket_preload_job_preload_url","complete","2026-07-02 17:42:38","2026-07-02 17:42:38","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:43:11","2026-07-02 17:43:11","0",NULL),
("8646","rocket_preload_job_preload_url","complete","2026-07-02 17:42:38","2026-07-02 17:42:38","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:43:11","2026-07-02 17:43:11","0",NULL),
("8647","rocket_preload_job_preload_url","complete","2026-07-02 17:42:38","2026-07-02 17:42:38","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/iv-therapy-and-wellness\\/stem-cell-iv\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:43:14","2026-07-02 17:43:14","0",NULL),
("8648","rocket_preload_job_preload_url","complete","2026-07-02 17:42:38","2026-07-02 17:42:38","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:43:17","2026-07-02 17:43:17","0",NULL),
("8649","rocket_preload_job_preload_url","complete","2026-07-02 17:43:17","2026-07-02 17:43:17","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:44:40","2026-07-02 17:44:40","0",NULL),
("8650","rocket_preload_job_preload_url","complete","2026-07-02 17:43:17","2026-07-02 17:43:17","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:44:42","2026-07-02 17:44:42","0",NULL),
("8651","rocket_preload_job_preload_url","complete","2026-07-02 17:43:17","2026-07-02 17:43:17","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:44:44","2026-07-02 17:44:44","0",NULL),
("8652","rocket_preload_job_preload_url","complete","2026-07-02 17:43:17","2026-07-02 17:43:17","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/cheek-filler\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:44:47","2026-07-02 17:44:47","0",NULL),
("8653","rocket_preload_job_preload_url","complete","2026-07-02 17:43:17","2026-07-02 17:43:17","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:44:49","2026-07-02 17:44:49","0",NULL),
("8654","rocket_preload_job_preload_url","complete","2026-07-02 17:44:49","2026-07-02 17:44:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/temple-filler\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:45:25","2026-07-02 17:45:25","0",NULL),
("8655","rocket_preload_job_preload_url","complete","2026-07-02 17:44:49","2026-07-02 17:44:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:45:27","2026-07-02 17:45:27","0",NULL),
("8656","rocket_preload_job_preload_url","complete","2026-07-02 17:44:49","2026-07-02 17:44:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:45:29","2026-07-02 17:45:29","0",NULL),
("8657","rocket_preload_job_preload_url","complete","2026-07-02 17:44:49","2026-07-02 17:44:49","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:45:31","2026-07-02 17:45:31","0",NULL),
("8658","rocket_preload_job_preload_url","complete","2026-07-02 17:44:49","2026-07-02 17:44:49","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/face-lift-with-filler\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:45:34","2026-07-02 17:45:34","0",NULL),
("8659","rocket_preload_job_preload_url","complete","2026-07-02 17:44:49","2026-07-02 17:44:49","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:45:36","2026-07-02 17:45:36","0",NULL),
("8660","rocket_preload_job_preload_url","complete","2026-07-02 17:45:36","2026-07-02 17:45:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:46:08","2026-07-02 17:46:08","0",NULL),
("8661","rocket_preload_job_preload_url","complete","2026-07-02 17:45:36","2026-07-02 17:45:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:46:08","2026-07-02 17:46:08","0",NULL),
("8662","rocket_preload_job_preload_url","complete","2026-07-02 17:45:36","2026-07-02 17:45:36","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:46:08","2026-07-02 17:46:08","0",NULL),
("8663","rocket_preload_job_preload_url","complete","2026-07-02 17:45:36","2026-07-02 17:45:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/smile-lines-nasolabial\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:46:11","2026-07-02 17:46:11","0",NULL),
("8664","rocket_preload_job_preload_url","complete","2026-07-02 17:45:36","2026-07-02 17:45:36","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:46:13","2026-07-02 17:46:13","0",NULL),
("8665","rocket_preload_job_preload_url","complete","2026-07-02 17:46:13","2026-07-02 17:46:13","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:47:42","2026-07-02 17:47:42","0",NULL),
("8666","rocket_preload_job_preload_url","complete","2026-07-02 17:46:13","2026-07-02 17:46:13","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/microneedling\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:47:43","2026-07-02 17:47:43","0",NULL),
("8667","rocket_preload_job_preload_url","complete","2026-07-02 17:46:13","2026-07-02 17:46:13","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:47:45","2026-07-02 17:47:45","0",NULL),
("8668","rocket_preload_job_preload_url","complete","2026-07-02 17:46:13","2026-07-02 17:46:13","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/microneedling\\/derma-pen\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:47:48","2026-07-02 17:47:48","0",NULL),
("8669","rocket_preload_job_preload_url","complete","2026-07-02 17:46:13","2026-07-02 17:46:13","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:47:50","2026-07-02 17:47:50","0",NULL),
("8670","rocket_preload_job_preload_url","complete","2026-07-02 17:47:50","2026-07-02 17:47:50","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/microneedling\\/exosome-microneedling\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:48:00","2026-07-02 17:48:00","0",NULL),
("8671","rocket_preload_job_preload_url","complete","2026-07-02 17:47:50","2026-07-02 17:47:50","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:48:02","2026-07-02 17:48:02","0",NULL),
("8672","rocket_preload_job_preload_url","complete","2026-07-02 17:47:50","2026-07-02 17:47:50","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/microneedling\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:48:04","2026-07-02 17:48:04","0",NULL),
("8673","rocket_preload_job_preload_url","complete","2026-07-02 17:47:50","2026-07-02 17:47:50","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:48:05","2026-07-02 17:48:05","0",NULL),
("8674","rocket_preload_job_preload_url","complete","2026-07-02 17:47:50","2026-07-02 17:47:50","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/microneedling\\/growth-factor-microneedling\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:48:08","2026-07-02 17:48:08","0",NULL),
("8675","rocket_preload_job_preload_url","complete","2026-07-02 17:47:50","2026-07-02 17:47:50","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:48:10","2026-07-02 17:48:10","0",NULL),
("8676","rocket_preload_job_preload_url","complete","2026-07-02 17:48:41","2026-07-02 17:48:41","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:49:28","2026-07-02 17:49:28","0",NULL),
("8677","rocket_preload_job_preload_url","complete","2026-07-02 17:48:41","2026-07-02 17:48:41","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:49:30","2026-07-02 17:49:30","0",NULL),
("8678","rocket_preload_job_preload_url","complete","2026-07-02 17:48:41","2026-07-02 17:48:41","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/mesotherapy\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:49:32","2026-07-02 17:49:32","0",NULL),
("8679","rocket_preload_job_preload_url","complete","2026-07-02 17:48:41","2026-07-02 17:48:41","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/mesotherapy\\/pigmentation\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:49:34","2026-07-02 17:49:34","0",NULL),
("8680","rocket_preload_job_preload_url","complete","2026-07-02 17:48:41","2026-07-02 17:48:41","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:49:36","2026-07-02 17:49:36","0",NULL),
("8681","rocket_preload_job_preload_url","complete","2026-07-02 17:49:36","2026-07-02 17:49:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/subcision\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:50:13","2026-07-02 17:50:13","0",NULL),
("8682","rocket_preload_job_preload_url","complete","2026-07-02 17:49:36","2026-07-02 17:49:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/subcision\\/acne-scar-treatment\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:50:15","2026-07-02 17:50:15","0",NULL),
("8683","rocket_preload_job_preload_url","complete","2026-07-02 17:49:36","2026-07-02 17:49:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:50:17","2026-07-02 17:50:17","0",NULL),
("8684","rocket_preload_job_preload_url","complete","2026-07-02 17:49:36","2026-07-02 17:49:36","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:50:19","2026-07-02 17:50:19","0",NULL),
("8685","rocket_preload_job_preload_url","complete","2026-07-02 17:49:36","2026-07-02 17:49:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/skin-lesion-removal\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:50:21","2026-07-02 17:50:21","0",NULL),
("8686","rocket_preload_job_preload_url","complete","2026-07-02 17:49:36","2026-07-02 17:49:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/skin-lesion-removal\\/skin-tag-and-mole-removal\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:50:23","2026-07-02 17:50:23","0",NULL),
("8687","rocket_preload_job_preload_url","complete","2026-07-02 17:49:36","2026-07-02 17:49:36","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:50:26","2026-07-02 17:50:26","0",NULL),
("8688","rocket_preload_job_preload_url","complete","2026-07-02 17:50:26","2026-07-02 17:50:26","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:51:00","2026-07-02 17:51:00","0",NULL),
("8689","rocket_preload_job_preload_url","complete","2026-07-02 17:50:26","2026-07-02 17:50:26","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:51:02","2026-07-02 17:51:02","0",NULL),
("8690","rocket_preload_job_preload_url","complete","2026-07-02 17:50:26","2026-07-02 17:50:26","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/mesotherapy\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:51:04","2026-07-02 17:51:04","0",NULL),
("8691","rocket_preload_job_preload_url","complete","2026-07-02 17:50:26","2026-07-02 17:50:26","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/mesotherapy\\/fat-dissolving\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:51:06","2026-07-02 17:51:06","0",NULL),
("8692","rocket_preload_job_preload_url","complete","2026-07-02 17:50:26","2026-07-02 17:50:26","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:51:08","2026-07-02 17:51:08","0",NULL),
("8693","rocket_preload_job_preload_url","complete","2026-07-02 17:51:08","2026-07-02 17:51:08","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:52:28","2026-07-02 17:52:28","0",NULL),
("8694","rocket_preload_job_preload_url","complete","2026-07-02 17:51:08","2026-07-02 17:51:08","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:52:30","2026-07-02 17:52:30","0",NULL),
("8695","rocket_preload_job_preload_url","complete","2026-07-02 17:51:08","2026-07-02 17:51:08","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/fat-dissolving\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:52:32","2026-07-02 17:52:32","0",NULL),
("8696","rocket_preload_job_preload_url","complete","2026-07-02 17:51:08","2026-07-02 17:51:08","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/fat-dissolving\\/cellulite-treatment\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:52:34","2026-07-02 17:52:34","0",NULL),
("8697","rocket_preload_job_preload_url","complete","2026-07-02 17:51:08","2026-07-02 17:51:08","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:52:36","2026-07-02 17:52:36","0",NULL),
("8698","rocket_preload_job_preload_url","complete","2026-07-02 17:52:36","2026-07-02 17:52:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/fat-dissolving\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:11","2026-07-02 17:53:11","0",NULL),
("8699","rocket_preload_job_preload_url","complete","2026-07-02 17:52:36","2026-07-02 17:52:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/fat-dissolving\\/body-fat\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:13","2026-07-02 17:53:13","0",NULL),
("8700","rocket_preload_job_preload_url","complete","2026-07-02 17:52:36","2026-07-02 17:52:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:15","2026-07-02 17:53:15","0",NULL),
("8701","rocket_preload_job_preload_url","complete","2026-07-02 17:52:36","2026-07-02 17:52:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/botox-anti-wrinkle\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:17","2026-07-02 17:53:17","0",NULL),
("8702","rocket_preload_job_preload_url","complete","2026-07-02 17:52:36","2026-07-02 17:52:36","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:19","2026-07-02 17:53:19","0",NULL),
("8703","rocket_preload_job_preload_url","complete","2026-07-02 17:52:36","2026-07-02 17:52:36","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/botox-anti-wrinkle\\/underarm-hyperhidrosis\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:22","2026-07-02 17:53:22","0",NULL),
("8704","rocket_preload_job_preload_url","complete","2026-07-02 17:52:36","2026-07-02 17:52:36","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:24","2026-07-02 17:53:24","0",NULL),
("8705","rocket_preload_job_preload_url","complete","2026-07-02 17:53:24","2026-07-02 17:53:24","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:57","2026-07-02 17:53:57","0",NULL),
("8706","rocket_preload_job_preload_url","complete","2026-07-02 17:53:24","2026-07-02 17:53:24","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/botox-anti-wrinkle\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:57","2026-07-02 17:53:57","0",NULL),
("8707","rocket_preload_job_preload_url","complete","2026-07-02 17:53:24","2026-07-02 17:53:24","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:57","2026-07-02 17:53:57","0",NULL),
("8708","rocket_preload_job_preload_url","complete","2026-07-02 17:53:24","2026-07-02 17:53:24","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/botox-anti-wrinkle\\/hands-and-feet-hyperhidrosis\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:59","2026-07-02 17:53:59","0",NULL),
("8709","rocket_preload_job_preload_url","complete","2026-07-02 17:53:24","2026-07-02 17:53:24","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:53:59","2026-07-02 17:53:59","0",NULL),
("8710","rocket_preload_job_preload_url","complete","2026-07-02 17:54:00","2026-07-02 17:54:00","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:55:28","2026-07-02 17:55:28","0",NULL),
("8711","rocket_preload_job_preload_url","complete","2026-07-02 17:54:00","2026-07-02 17:54:00","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:55:30","2026-07-02 17:55:30","0",NULL),
("8712","rocket_preload_job_preload_url","complete","2026-07-02 17:54:00","2026-07-02 17:54:00","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:55:32","2026-07-02 17:55:32","0",NULL),
("8713","rocket_preload_job_preload_url","complete","2026-07-02 17:54:00","2026-07-02 17:54:00","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/lip-filler\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:55:34","2026-07-02 17:55:34","0",NULL),
("8714","rocket_preload_job_preload_url","complete","2026-07-02 17:54:00","2026-07-02 17:54:00","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:55:37","2026-07-02 17:55:37","0",NULL),
("8715","rocket_preload_job_preload_url","complete","2026-07-02 17:55:37","2026-07-02 17:55:37","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/tear-trough\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:56:13","2026-07-02 17:56:13","0",NULL),
("8716","rocket_preload_job_preload_url","complete","2026-07-02 17:55:37","2026-07-02 17:55:37","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:56:15","2026-07-02 17:56:15","0",NULL),
("8717","rocket_preload_job_preload_url","complete","2026-07-02 17:55:37","2026-07-02 17:55:37","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:56:17","2026-07-02 17:56:17","0",NULL),
("8718","rocket_preload_job_preload_url","complete","2026-07-02 17:55:37","2026-07-02 17:55:37","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:56:19","2026-07-02 17:56:19","0",NULL),
("8719","rocket_preload_job_preload_url","complete","2026-07-02 17:55:37","2026-07-02 17:55:37","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/dermal-fillers\\/under-eye-filler\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:56:21","2026-07-02 17:56:21","0",NULL),
("8720","rocket_preload_job_preload_url","complete","2026-07-02 17:55:37","2026-07-02 17:55:37","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:56:24","2026-07-02 17:56:24","0",NULL),
("8721","rocket_preload_job_preload_url","complete","2026-07-02 17:56:24","2026-07-02 17:56:24","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:57:00","2026-07-02 17:57:00","0",NULL),
("8722","rocket_preload_job_preload_url","complete","2026-07-02 17:56:24","2026-07-02 17:56:24","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/prp\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:57:02","2026-07-02 17:57:02","0",NULL),
("8723","rocket_preload_job_preload_url","complete","2026-07-02 17:56:24","2026-07-02 17:56:24","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:57:04","2026-07-02 17:57:04","0",NULL),
("8724","rocket_preload_job_preload_url","complete","2026-07-02 17:56:24","2026-07-02 17:56:24","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/prp\\/hair-loss\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:57:06","2026-07-02 17:57:06","0",NULL),
("8725","rocket_preload_job_preload_url","complete","2026-07-02 17:56:24","2026-07-02 17:56:24","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:57:09","2026-07-02 17:57:09","0",NULL),
("8726","rocket_preload_job_preload_url","complete","2026-07-02 17:57:09","2026-07-02 17:57:09","10","[\"https:\\/\\/dr.frex.digital\\/treatments\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:58:55","2026-07-02 17:58:55","0",NULL),
("8727","rocket_preload_job_preload_url","complete","2026-07-02 17:57:09","2026-07-02 17:57:09","10","[\"https:\\/\\/dr.frex.digital\\/author\\/tahoora\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:58:55","2026-07-02 17:58:55","0",NULL),
("8728","rocket_preload_job_preload_url","complete","2026-07-02 17:57:09","2026-07-02 17:57:09","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/mesotherapy\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:58:57","2026-07-02 17:58:57","0",NULL),
("8729","rocket_preload_job_preload_url","complete","2026-07-02 17:57:09","2026-07-02 17:57:09","10","[\"https:\\/\\/dr.frex.digital\\/treatments\\/mesotherapy\\/hair-loss\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:59:00","2026-07-02 17:59:00","0",NULL),
("8730","rocket_preload_job_preload_url","complete","2026-07-02 17:57:09","2026-07-02 17:57:09","10","[\"https:\\/\\/dr.frex.digital\"]","O:28:\"ActionScheduler_NullSchedule\":0:{}","1","1","2026-07-02 17:59:00","2026-07-02 17:59:00","0",NULL),
("8731","action_scheduler/migration_hook","pending","2026-07-02 18:38:01","2026-07-02 18:38:01","10","[]","O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1783017481;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1783017481;}","3","0","0000-00-00 00:00:00","0000-00-00 00:00:00","0",NULL);

INSERT IGNORE INTO `wp_actionscheduler_claims` VALUES 
("2826","2026-06-16 23:06:14"),
("8458","2026-07-02 12:14:09"),
("8580","2026-07-02 13:23:29");

INSERT IGNORE INTO `wp_actionscheduler_groups` VALUES 
("1","rocket-preload"),
("2","rocket-performance-hints-warmup"),
("3","action-scheduler-migration"),
("4","rocket-rucss");

INSERT IGNORE INTO `wp_actionscheduler_logs` VALUES 
("2","1463","action created","2026-06-12 11:25:57","2026-06-12 11:25:57"),
("3","1464","action created","2026-06-12 11:25:57","2026-06-12 11:25:57"),
("9","1463","action started via WP Cron","2026-06-12 11:25:57","2026-06-12 11:25:57"),
("10","1468","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("11","1469","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("12","1470","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("13","1471","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("14","1472","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("15","1473","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("16","1474","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("17","1475","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("18","1476","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("19","1477","action created","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("20","1463","action complete via WP Cron","2026-06-12 11:25:58","2026-06-12 11:25:58"),
("32","1468","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("33","1468","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("34","1469","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("35","1469","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("36","1470","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("37","1470","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("38","1471","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("39","1471","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("40","1472","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("41","1472","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("42","1473","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("43","1473","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("44","1474","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("45","1474","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("46","1475","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("47","1475","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("48","1476","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("49","1476","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("50","1477","action started via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("51","1477","action complete via WP Cron","2026-06-12 11:25:59","2026-06-12 11:25:59"),
("66","1464","action started via WP Cron","2026-06-12 11:26:57","2026-06-12 11:26:57"),
("67","1464","action complete via WP Cron","2026-06-12 11:26:57","2026-06-12 11:26:57"),
("21477","8611","action created","2026-07-02 17:36:38","2026-07-02 17:36:38"),
("21478","8612","action created","2026-07-02 17:36:38","2026-07-02 17:36:38"),
("21479","8613","action created","2026-07-02 17:36:38","2026-07-02 17:36:38"),
("21480","8614","action created","2026-07-02 17:36:38","2026-07-02 17:36:38"),
("21481","8615","action created","2026-07-02 17:36:38","2026-07-02 17:36:38"),
("21482","8611","action started via WP Cron","2026-07-02 17:37:08","2026-07-02 17:37:08"),
("21483","8611","action complete via WP Cron","2026-07-02 17:37:10","2026-07-02 17:37:10"),
("21484","8612","action started via WP Cron","2026-07-02 17:37:10","2026-07-02 17:37:10"),
("21485","8612","action complete via WP Cron","2026-07-02 17:37:10","2026-07-02 17:37:10"),
("21486","8613","action started via WP Cron","2026-07-02 17:37:10","2026-07-02 17:37:10"),
("21487","8613","action complete via WP Cron","2026-07-02 17:37:10","2026-07-02 17:37:10"),
("21488","8614","action started via WP Cron","2026-07-02 17:37:10","2026-07-02 17:37:10"),
("21489","8614","action complete via WP Cron","2026-07-02 17:37:12","2026-07-02 17:37:12"),
("21490","8615","action started via WP Cron","2026-07-02 17:37:12","2026-07-02 17:37:12"),
("21491","8615","action complete via WP Cron","2026-07-02 17:37:15","2026-07-02 17:37:15"),
("21492","8616","action created","2026-07-02 17:37:15","2026-07-02 17:37:15"),
("21493","8617","action created","2026-07-02 17:37:15","2026-07-02 17:37:15"),
("21494","8618","action created","2026-07-02 17:37:15","2026-07-02 17:37:15"),
("21495","8619","action created","2026-07-02 17:37:15","2026-07-02 17:37:15"),
("21496","8620","action created","2026-07-02 17:37:15","2026-07-02 17:37:15"),
("21497","8616","action started via WP Cron","2026-07-02 17:37:59","2026-07-02 17:37:59"),
("21498","8616","action complete via WP Cron","2026-07-02 17:38:01","2026-07-02 17:38:01"),
("21499","8617","action started via WP Cron","2026-07-02 17:38:01","2026-07-02 17:38:01"),
("21500","8617","action complete via WP Cron","2026-07-02 17:38:03","2026-07-02 17:38:03"),
("21501","8618","action started via WP Cron","2026-07-02 17:38:03","2026-07-02 17:38:03"),
("21502","8618","action complete via WP Cron","2026-07-02 17:38:05","2026-07-02 17:38:05"),
("21503","8619","action started via WP Cron","2026-07-02 17:38:05","2026-07-02 17:38:05"),
("21504","8619","action complete via WP Cron","2026-07-02 17:38:07","2026-07-02 17:38:07"),
("21505","8620","action started via WP Cron","2026-07-02 17:38:07","2026-07-02 17:38:07"),
("21506","8620","action complete via WP Cron","2026-07-02 17:38:09","2026-07-02 17:38:09"),
("21507","8621","action created","2026-07-02 17:38:09","2026-07-02 17:38:09"),
("21508","8622","action created","2026-07-02 17:38:09","2026-07-02 17:38:09"),
("21509","8623","action created","2026-07-02 17:38:09","2026-07-02 17:38:09"),
("21510","8624","action created","2026-07-02 17:38:09","2026-07-02 17:38:09"),
("21511","8625","action created","2026-07-02 17:38:09","2026-07-02 17:38:09"),
("21512","8621","action started via WP Cron","2026-07-02 17:39:23","2026-07-02 17:39:23"),
("21513","8621","action complete via WP Cron","2026-07-02 17:39:25","2026-07-02 17:39:25"),
("21514","8622","action started via WP Cron","2026-07-02 17:39:25","2026-07-02 17:39:25"),
("21515","8622","action complete via WP Cron","2026-07-02 17:39:27","2026-07-02 17:39:27"),
("21516","8623","action started via WP Cron","2026-07-02 17:39:27","2026-07-02 17:39:27"),
("21517","8623","action complete via WP Cron","2026-07-02 17:39:29","2026-07-02 17:39:29"),
("21518","8624","action started via WP Cron","2026-07-02 17:39:29","2026-07-02 17:39:29"),
("21519","8624","action complete via WP Cron","2026-07-02 17:39:32","2026-07-02 17:39:32"),
("21520","8625","action started via WP Cron","2026-07-02 17:39:32","2026-07-02 17:39:32"),
("21521","8625","action complete via WP Cron","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21522","8626","action created","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21523","8627","action created","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21524","8628","action created","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21525","8629","action created","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21526","8630","action created","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21527","8631","action created","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21528","8632","action created","2026-07-02 17:39:34","2026-07-02 17:39:34"),
("21529","8626","action started via WP Cron","2026-07-02 17:40:10","2026-07-02 17:40:10"),
("21530","8626","action complete via WP Cron","2026-07-02 17:40:13","2026-07-02 17:40:13"),
("21531","8627","action started via WP Cron","2026-07-02 17:40:13","2026-07-02 17:40:13"),
("21532","8627","action complete via WP Cron","2026-07-02 17:40:16","2026-07-02 17:40:16"),
("21533","8628","action started via WP Cron","2026-07-02 17:40:16","2026-07-02 17:40:16"),
("21534","8628","action complete via WP Cron","2026-07-02 17:40:18","2026-07-02 17:40:18"),
("21535","8629","action started via WP Cron","2026-07-02 17:40:18","2026-07-02 17:40:18"),
("21536","8629","action complete via WP Cron","2026-07-02 17:40:20","2026-07-02 17:40:20"),
("21537","8630","action started via WP Cron","2026-07-02 17:40:20","2026-07-02 17:40:20"),
("21538","8630","action complete via WP Cron","2026-07-02 17:40:21","2026-07-02 17:40:21"),
("21539","8631","action started via WP Cron","2026-07-02 17:40:21","2026-07-02 17:40:21"),
("21540","8631","action complete via WP Cron","2026-07-02 17:40:24","2026-07-02 17:40:24"),
("21541","8632","action started via WP Cron","2026-07-02 17:40:24","2026-07-02 17:40:24"),
("21542","8632","action complete via WP Cron","2026-07-02 17:40:26","2026-07-02 17:40:26"),
("21543","8633","action created","2026-07-02 17:40:26","2026-07-02 17:40:26"),
("21544","8634","action created","2026-07-02 17:40:26","2026-07-02 17:40:26"),
("21545","8635","action created","2026-07-02 17:40:26","2026-07-02 17:40:26"),
("21546","8636","action created","2026-07-02 17:40:26","2026-07-02 17:40:26"),
("21547","8637","action created","2026-07-02 17:40:26","2026-07-02 17:40:26"),
("21548","8633","action started via WP Cron","2026-07-02 17:41:38","2026-07-02 17:41:38"),
("21549","8633","action complete via WP Cron","2026-07-02 17:41:40","2026-07-02 17:41:40"),
("21550","8634","action started via WP Cron","2026-07-02 17:41:40","2026-07-02 17:41:40"),
("21551","8634","action complete via WP Cron","2026-07-02 17:41:42","2026-07-02 17:41:42"),
("21552","8635","action started via WP Cron","2026-07-02 17:41:42","2026-07-02 17:41:42"),
("21553","8635","action complete via WP Cron","2026-07-02 17:41:44","2026-07-02 17:41:44"),
("21554","8636","action started via WP Cron","2026-07-02 17:41:44","2026-07-02 17:41:44"),
("21555","8636","action complete via WP Cron","2026-07-02 17:41:46","2026-07-02 17:41:46"),
("21556","8637","action started via WP Cron","2026-07-02 17:41:46","2026-07-02 17:41:46"),
("21557","8637","action complete via WP Cron","2026-07-02 17:41:49","2026-07-02 17:41:49"),
("21558","8638","action created","2026-07-02 17:41:49","2026-07-02 17:41:49"),
("21559","8639","action created","2026-07-02 17:41:49","2026-07-02 17:41:49"),
("21560","8640","action created","2026-07-02 17:41:49","2026-07-02 17:41:49"),
("21561","8641","action created","2026-07-02 17:41:49","2026-07-02 17:41:49"),
("21562","8642","action created","2026-07-02 17:41:49","2026-07-02 17:41:49"),
("21563","8643","action created","2026-07-02 17:41:49","2026-07-02 17:41:49"),
("21564","8638","action started via WP Cron","2026-07-02 17:42:25","2026-07-02 17:42:25"),
("21565","8638","action complete via WP Cron","2026-07-02 17:42:27","2026-07-02 17:42:27"),
("21566","8639","action started via WP Cron","2026-07-02 17:42:27","2026-07-02 17:42:27"),
("21567","8639","action complete via WP Cron","2026-07-02 17:42:30","2026-07-02 17:42:30"),
("21568","8640","action started via WP Cron","2026-07-02 17:42:30","2026-07-02 17:42:30"),
("21569","8640","action complete via WP Cron","2026-07-02 17:42:31","2026-07-02 17:42:31"),
("21570","8641","action started via WP Cron","2026-07-02 17:42:31","2026-07-02 17:42:31"),
("21571","8641","action complete via WP Cron","2026-07-02 17:42:33","2026-07-02 17:42:33"),
("21572","8642","action started via WP Cron","2026-07-02 17:42:33","2026-07-02 17:42:33"),
("21573","8642","action complete via WP Cron","2026-07-02 17:42:36","2026-07-02 17:42:36"),
("21574","8643","action started via WP Cron","2026-07-02 17:42:36","2026-07-02 17:42:36"),
("21575","8643","action complete via WP Cron","2026-07-02 17:42:38","2026-07-02 17:42:38"),
("21576","8644","action created","2026-07-02 17:42:38","2026-07-02 17:42:38"),
("21577","8645","action created","2026-07-02 17:42:38","2026-07-02 17:42:38"),
("21578","8646","action created","2026-07-02 17:42:38","2026-07-02 17:42:38"),
("21579","8647","action created","2026-07-02 17:42:38","2026-07-02 17:42:38"),
("21580","8648","action created","2026-07-02 17:42:38","2026-07-02 17:42:38"),
("21581","8644","action started via WP Cron","2026-07-02 17:43:11","2026-07-02 17:43:11"),
("21582","8644","action complete via WP Cron","2026-07-02 17:43:11","2026-07-02 17:43:11"),
("21583","8645","action started via WP Cron","2026-07-02 17:43:11","2026-07-02 17:43:11"),
("21584","8645","action complete via WP Cron","2026-07-02 17:43:11","2026-07-02 17:43:11"),
("21585","8646","action started via WP Cron","2026-07-02 17:43:11","2026-07-02 17:43:11"),
("21586","8646","action complete via WP Cron","2026-07-02 17:43:11","2026-07-02 17:43:11"),
("21587","8647","action started via WP Cron","2026-07-02 17:43:11","2026-07-02 17:43:11"),
("21588","8647","action complete via WP Cron","2026-07-02 17:43:14","2026-07-02 17:43:14"),
("21589","8648","action started via WP Cron","2026-07-02 17:43:14","2026-07-02 17:43:14"),
("21590","8648","action complete via WP Cron","2026-07-02 17:43:17","2026-07-02 17:43:17"),
("21591","8649","action created","2026-07-02 17:43:17","2026-07-02 17:43:17"),
("21592","8650","action created","2026-07-02 17:43:17","2026-07-02 17:43:17"),
("21593","8651","action created","2026-07-02 17:43:17","2026-07-02 17:43:17"),
("21594","8652","action created","2026-07-02 17:43:17","2026-07-02 17:43:17"),
("21595","8653","action created","2026-07-02 17:43:17","2026-07-02 17:43:17"),
("21596","8649","action started via WP Cron","2026-07-02 17:44:38","2026-07-02 17:44:38"),
("21597","8649","action complete via WP Cron","2026-07-02 17:44:40","2026-07-02 17:44:40"),
("21598","8650","action started via WP Cron","2026-07-02 17:44:40","2026-07-02 17:44:40"),
("21599","8650","action complete via WP Cron","2026-07-02 17:44:42","2026-07-02 17:44:42"),
("21600","8651","action started via WP Cron","2026-07-02 17:44:42","2026-07-02 17:44:42"),
("21601","8651","action complete via WP Cron","2026-07-02 17:44:44","2026-07-02 17:44:44"),
("21602","8652","action started via WP Cron","2026-07-02 17:44:44","2026-07-02 17:44:44"),
("21603","8652","action complete via WP Cron","2026-07-02 17:44:47","2026-07-02 17:44:47"),
("21604","8653","action started via WP Cron","2026-07-02 17:44:47","2026-07-02 17:44:47"),
("21605","8653","action complete via WP Cron","2026-07-02 17:44:49","2026-07-02 17:44:49"),
("21606","8654","action created","2026-07-02 17:44:49","2026-07-02 17:44:49"),
("21607","8655","action created","2026-07-02 17:44:49","2026-07-02 17:44:49"),
("21608","8656","action created","2026-07-02 17:44:49","2026-07-02 17:44:49"),
("21609","8657","action created","2026-07-02 17:44:49","2026-07-02 17:44:49"),
("21610","8658","action created","2026-07-02 17:44:49","2026-07-02 17:44:49"),
("21611","8659","action created","2026-07-02 17:44:49","2026-07-02 17:44:49"),
("21612","8654","action started via WP Cron","2026-07-02 17:45:23","2026-07-02 17:45:23"),
("21613","8654","action complete via WP Cron","2026-07-02 17:45:25","2026-07-02 17:45:25"),
("21614","8655","action started via WP Cron","2026-07-02 17:45:25","2026-07-02 17:45:25"),
("21615","8655","action complete via WP Cron","2026-07-02 17:45:27","2026-07-02 17:45:27"),
("21616","8656","action started via WP Cron","2026-07-02 17:45:27","2026-07-02 17:45:27"),
("21617","8656","action complete via WP Cron","2026-07-02 17:45:29","2026-07-02 17:45:29"),
("21618","8657","action started via WP Cron","2026-07-02 17:45:29","2026-07-02 17:45:29"),
("21619","8657","action complete via WP Cron","2026-07-02 17:45:31","2026-07-02 17:45:31"),
("21620","8658","action started via WP Cron","2026-07-02 17:45:31","2026-07-02 17:45:31"),
("21621","8658","action complete via WP Cron","2026-07-02 17:45:34","2026-07-02 17:45:34"),
("21622","8659","action started via WP Cron","2026-07-02 17:45:34","2026-07-02 17:45:34"),
("21623","8659","action complete via WP Cron","2026-07-02 17:45:36","2026-07-02 17:45:36"),
("21624","8660","action created","2026-07-02 17:45:36","2026-07-02 17:45:36"),
("21625","8661","action created","2026-07-02 17:45:36","2026-07-02 17:45:36"),
("21626","8662","action created","2026-07-02 17:45:36","2026-07-02 17:45:36"),
("21627","8663","action created","2026-07-02 17:45:36","2026-07-02 17:45:36"),
("21628","8664","action created","2026-07-02 17:45:36","2026-07-02 17:45:36"),
("21629","8660","action started via WP Cron","2026-07-02 17:46:08","2026-07-02 17:46:08"),
("21630","8660","action complete via WP Cron","2026-07-02 17:46:08","2026-07-02 17:46:08"),
("21631","8661","action started via WP Cron","2026-07-02 17:46:08","2026-07-02 17:46:08"),
("21632","8661","action complete via WP Cron","2026-07-02 17:46:08","2026-07-02 17:46:08"),
("21633","8662","action started via WP Cron","2026-07-02 17:46:08","2026-07-02 17:46:08"),
("21634","8662","action complete via WP Cron","2026-07-02 17:46:08","2026-07-02 17:46:08"),
("21635","8663","action started via WP Cron","2026-07-02 17:46:08","2026-07-02 17:46:08"),
("21636","8663","action complete via WP Cron","2026-07-02 17:46:11","2026-07-02 17:46:11"),
("21637","8664","action started via WP Cron","2026-07-02 17:46:11","2026-07-02 17:46:11"),
("21638","8664","action complete via WP Cron","2026-07-02 17:46:13","2026-07-02 17:46:13"),
("21639","8665","action created","2026-07-02 17:46:13","2026-07-02 17:46:13"),
("21640","8666","action created","2026-07-02 17:46:13","2026-07-02 17:46:13"),
("21641","8667","action created","2026-07-02 17:46:13","2026-07-02 17:46:13"),
("21642","8668","action created","2026-07-02 17:46:13","2026-07-02 17:46:13"),
("21643","8669","action created","2026-07-02 17:46:13","2026-07-02 17:46:13"),
("21644","8665","action started via WP Cron","2026-07-02 17:47:39","2026-07-02 17:47:39"),
("21645","8665","action complete via WP Cron","2026-07-02 17:47:42","2026-07-02 17:47:42"),
("21646","8666","action started via WP Cron","2026-07-02 17:47:42","2026-07-02 17:47:42"),
("21647","8666","action complete via WP Cron","2026-07-02 17:47:43","2026-07-02 17:47:43"),
("21648","8667","action started via WP Cron","2026-07-02 17:47:43","2026-07-02 17:47:43"),
("21649","8667","action complete via WP Cron","2026-07-02 17:47:45","2026-07-02 17:47:45"),
("21650","8668","action started via WP Cron","2026-07-02 17:47:45","2026-07-02 17:47:45"),
("21651","8668","action complete via WP Cron","2026-07-02 17:47:48","2026-07-02 17:47:48"),
("21652","8669","action started via WP Cron","2026-07-02 17:47:48","2026-07-02 17:47:48"),
("21653","8669","action complete via WP Cron","2026-07-02 17:47:50","2026-07-02 17:47:50"),
("21654","8670","action created","2026-07-02 17:47:50","2026-07-02 17:47:50"),
("21655","8671","action created","2026-07-02 17:47:50","2026-07-02 17:47:50"),
("21656","8672","action created","2026-07-02 17:47:50","2026-07-02 17:47:50"),
("21657","8673","action created","2026-07-02 17:47:50","2026-07-02 17:47:50"),
("21658","8674","action created","2026-07-02 17:47:50","2026-07-02 17:47:50"),
("21659","8675","action created","2026-07-02 17:47:50","2026-07-02 17:47:50"),
("21660","8670","action started via WP Cron","2026-07-02 17:47:57","2026-07-02 17:47:57"),
("21661","8670","action complete via WP Cron","2026-07-02 17:48:00","2026-07-02 17:48:00"),
("21662","8671","action started via WP Cron","2026-07-02 17:48:00","2026-07-02 17:48:00"),
("21663","8671","action complete via WP Cron","2026-07-02 17:48:02","2026-07-02 17:48:02"),
("21664","8672","action started via WP Cron","2026-07-02 17:48:02","2026-07-02 17:48:02"),
("21665","8672","action complete via WP Cron","2026-07-02 17:48:04","2026-07-02 17:48:04"),
("21666","8673","action started via WP Cron","2026-07-02 17:48:04","2026-07-02 17:48:04"),
("21667","8673","action complete via WP Cron","2026-07-02 17:48:05","2026-07-02 17:48:05"),
("21668","8674","action started via WP Cron","2026-07-02 17:48:05","2026-07-02 17:48:05"),
("21669","8674","action complete via WP Cron","2026-07-02 17:48:08","2026-07-02 17:48:08"),
("21670","8675","action started via WP Cron","2026-07-02 17:48:08","2026-07-02 17:48:08"),
("21671","8675","action complete via WP Cron","2026-07-02 17:48:10","2026-07-02 17:48:10"),
("21672","8676","action created","2026-07-02 17:48:41","2026-07-02 17:48:41"),
("21673","8677","action created","2026-07-02 17:48:41","2026-07-02 17:48:41"),
("21674","8678","action created","2026-07-02 17:48:41","2026-07-02 17:48:41"),
("21675","8679","action created","2026-07-02 17:48:41","2026-07-02 17:48:41"),
("21676","8680","action created","2026-07-02 17:48:41","2026-07-02 17:48:41"),
("21677","8676","action started via WP Cron","2026-07-02 17:49:26","2026-07-02 17:49:26"),
("21678","8676","action complete via WP Cron","2026-07-02 17:49:28","2026-07-02 17:49:28"),
("21679","8677","action started via WP Cron","2026-07-02 17:49:28","2026-07-02 17:49:28"),
("21680","8677","action complete via WP Cron","2026-07-02 17:49:30","2026-07-02 17:49:30"),
("21681","8678","action started via WP Cron","2026-07-02 17:49:30","2026-07-02 17:49:30"),
("21682","8678","action complete via WP Cron","2026-07-02 17:49:32","2026-07-02 17:49:32"),
("21683","8679","action started via WP Cron","2026-07-02 17:49:32","2026-07-02 17:49:32"),
("21684","8679","action complete via WP Cron","2026-07-02 17:49:34","2026-07-02 17:49:34"),
("21685","8680","action started via WP Cron","2026-07-02 17:49:34","2026-07-02 17:49:34"),
("21686","8680","action complete via WP Cron","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21687","8681","action created","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21688","8682","action created","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21689","8683","action created","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21690","8684","action created","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21691","8685","action created","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21692","8686","action created","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21693","8687","action created","2026-07-02 17:49:36","2026-07-02 17:49:36"),
("21694","8681","action started via WP Cron","2026-07-02 17:50:11","2026-07-02 17:50:11"),
("21695","8681","action complete via WP Cron","2026-07-02 17:50:13","2026-07-02 17:50:13"),
("21696","8682","action started via WP Cron","2026-07-02 17:50:13","2026-07-02 17:50:13"),
("21697","8682","action complete via WP Cron","2026-07-02 17:50:15","2026-07-02 17:50:15"),
("21698","8683","action started via WP Cron","2026-07-02 17:50:15","2026-07-02 17:50:15"),
("21699","8683","action complete via WP Cron","2026-07-02 17:50:17","2026-07-02 17:50:17"),
("21700","8684","action started via WP Cron","2026-07-02 17:50:17","2026-07-02 17:50:17"),
("21701","8684","action complete via WP Cron","2026-07-02 17:50:19","2026-07-02 17:50:19"),
("21702","8685","action started via WP Cron","2026-07-02 17:50:19","2026-07-02 17:50:19"),
("21703","8685","action complete via WP Cron","2026-07-02 17:50:21","2026-07-02 17:50:21"),
("21704","8686","action started via WP Cron","2026-07-02 17:50:21","2026-07-02 17:50:21"),
("21705","8686","action complete via WP Cron","2026-07-02 17:50:23","2026-07-02 17:50:23"),
("21706","8687","action started via WP Cron","2026-07-02 17:50:23","2026-07-02 17:50:23"),
("21707","8687","action complete via WP Cron","2026-07-02 17:50:26","2026-07-02 17:50:26"),
("21708","8688","action created","2026-07-02 17:50:26","2026-07-02 17:50:26"),
("21709","8689","action created","2026-07-02 17:50:26","2026-07-02 17:50:26"),
("21710","8690","action created","2026-07-02 17:50:26","2026-07-02 17:50:26"),
("21711","8691","action created","2026-07-02 17:50:26","2026-07-02 17:50:26"),
("21712","8692","action created","2026-07-02 17:50:26","2026-07-02 17:50:26"),
("21713","8688","action started via WP Cron","2026-07-02 17:50:58","2026-07-02 17:50:58"),
("21714","8688","action complete via WP Cron","2026-07-02 17:51:00","2026-07-02 17:51:00"),
("21715","8689","action started via WP Cron","2026-07-02 17:51:00","2026-07-02 17:51:00"),
("21716","8689","action complete via WP Cron","2026-07-02 17:51:02","2026-07-02 17:51:02"),
("21717","8690","action started via WP Cron","2026-07-02 17:51:02","2026-07-02 17:51:02"),
("21718","8690","action complete via WP Cron","2026-07-02 17:51:04","2026-07-02 17:51:04"),
("21719","8691","action started via WP Cron","2026-07-02 17:51:04","2026-07-02 17:51:04"),
("21720","8691","action complete via WP Cron","2026-07-02 17:51:06","2026-07-02 17:51:06"),
("21721","8692","action started via WP Cron","2026-07-02 17:51:06","2026-07-02 17:51:06"),
("21722","8692","action complete via WP Cron","2026-07-02 17:51:08","2026-07-02 17:51:08"),
("21723","8693","action created","2026-07-02 17:51:08","2026-07-02 17:51:08"),
("21724","8694","action created","2026-07-02 17:51:08","2026-07-02 17:51:08"),
("21725","8695","action created","2026-07-02 17:51:08","2026-07-02 17:51:08"),
("21726","8696","action created","2026-07-02 17:51:08","2026-07-02 17:51:08"),
("21727","8697","action created","2026-07-02 17:51:08","2026-07-02 17:51:08"),
("21728","8693","action started via WP Cron","2026-07-02 17:52:26","2026-07-02 17:52:26"),
("21729","8693","action complete via WP Cron","2026-07-02 17:52:28","2026-07-02 17:52:28"),
("21730","8694","action started via WP Cron","2026-07-02 17:52:28","2026-07-02 17:52:28"),
("21731","8694","action complete via WP Cron","2026-07-02 17:52:30","2026-07-02 17:52:30"),
("21732","8695","action started via WP Cron","2026-07-02 17:52:30","2026-07-02 17:52:30"),
("21733","8695","action complete via WP Cron","2026-07-02 17:52:32","2026-07-02 17:52:32"),
("21734","8696","action started via WP Cron","2026-07-02 17:52:32","2026-07-02 17:52:32"),
("21735","8696","action complete via WP Cron","2026-07-02 17:52:34","2026-07-02 17:52:34"),
("21736","8697","action started via WP Cron","2026-07-02 17:52:34","2026-07-02 17:52:34"),
("21737","8697","action complete via WP Cron","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21738","8698","action created","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21739","8699","action created","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21740","8700","action created","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21741","8701","action created","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21742","8702","action created","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21743","8703","action created","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21744","8704","action created","2026-07-02 17:52:36","2026-07-02 17:52:36"),
("21745","8698","action started via WP Cron","2026-07-02 17:53:11","2026-07-02 17:53:11"),
("21746","8698","action complete via WP Cron","2026-07-02 17:53:11","2026-07-02 17:53:11"),
("21747","8699","action started via WP Cron","2026-07-02 17:53:11","2026-07-02 17:53:11"),
("21748","8699","action complete via WP Cron","2026-07-02 17:53:13","2026-07-02 17:53:13"),
("21749","8700","action started via WP Cron","2026-07-02 17:53:13","2026-07-02 17:53:13"),
("21750","8700","action complete via WP Cron","2026-07-02 17:53:15","2026-07-02 17:53:15"),
("21751","8701","action started via WP Cron","2026-07-02 17:53:15","2026-07-02 17:53:15"),
("21752","8701","action complete via WP Cron","2026-07-02 17:53:17","2026-07-02 17:53:17"),
("21753","8702","action started via WP Cron","2026-07-02 17:53:17","2026-07-02 17:53:17"),
("21754","8702","action complete via WP Cron","2026-07-02 17:53:19","2026-07-02 17:53:19"),
("21755","8703","action started via WP Cron","2026-07-02 17:53:19","2026-07-02 17:53:19"),
("21756","8703","action complete via WP Cron","2026-07-02 17:53:22","2026-07-02 17:53:22"),
("21757","8704","action started via WP Cron","2026-07-02 17:53:22","2026-07-02 17:53:22"),
("21758","8704","action complete via WP Cron","2026-07-02 17:53:24","2026-07-02 17:53:24"),
("21759","8705","action created","2026-07-02 17:53:24","2026-07-02 17:53:24"),
("21760","8706","action created","2026-07-02 17:53:24","2026-07-02 17:53:24"),
("21761","8707","action created","2026-07-02 17:53:24","2026-07-02 17:53:24"),
("21762","8708","action created","2026-07-02 17:53:24","2026-07-02 17:53:24"),
("21763","8709","action created","2026-07-02 17:53:24","2026-07-02 17:53:24"),
("21764","8705","action started via WP Cron","2026-07-02 17:53:57","2026-07-02 17:53:57"),
("21765","8705","action complete via WP Cron","2026-07-02 17:53:57","2026-07-02 17:53:57"),
("21766","8706","action started via WP Cron","2026-07-02 17:53:57","2026-07-02 17:53:57"),
("21767","8706","action complete via WP Cron","2026-07-02 17:53:57","2026-07-02 17:53:57"),
("21768","8707","action started via WP Cron","2026-07-02 17:53:57","2026-07-02 17:53:57"),
("21769","8707","action complete via WP Cron","2026-07-02 17:53:57","2026-07-02 17:53:57"),
("21770","8708","action started via WP Cron","2026-07-02 17:53:57","2026-07-02 17:53:57"),
("21771","8708","action complete via WP Cron","2026-07-02 17:53:59","2026-07-02 17:53:59"),
("21772","8709","action started via WP Cron","2026-07-02 17:53:59","2026-07-02 17:53:59"),
("21773","8709","action complete via WP Cron","2026-07-02 17:53:59","2026-07-02 17:53:59"),
("21774","8710","action created","2026-07-02 17:54:00","2026-07-02 17:54:00"),
("21775","8711","action created","2026-07-02 17:54:00","2026-07-02 17:54:00"),
("21776","8712","action created","2026-07-02 17:54:00","2026-07-02 17:54:00"),
("21777","8713","action created","2026-07-02 17:54:00","2026-07-02 17:54:00"),
("21778","8714","action created","2026-07-02 17:54:00","2026-07-02 17:54:00"),
("21779","8710","action started via WP Cron","2026-07-02 17:55:26","2026-07-02 17:55:26"),
("21780","8710","action complete via WP Cron","2026-07-02 17:55:28","2026-07-02 17:55:28"),
("21781","8711","action started via WP Cron","2026-07-02 17:55:28","2026-07-02 17:55:28"),
("21782","8711","action complete via WP Cron","2026-07-02 17:55:30","2026-07-02 17:55:30"),
("21783","8712","action started via WP Cron","2026-07-02 17:55:30","2026-07-02 17:55:30"),
("21784","8712","action complete via WP Cron","2026-07-02 17:55:32","2026-07-02 17:55:32"),
("21785","8713","action started via WP Cron","2026-07-02 17:55:32","2026-07-02 17:55:32"),
("21786","8713","action complete via WP Cron","2026-07-02 17:55:34","2026-07-02 17:55:34"),
("21787","8714","action started via WP Cron","2026-07-02 17:55:34","2026-07-02 17:55:34"),
("21788","8714","action complete via WP Cron","2026-07-02 17:55:37","2026-07-02 17:55:37"),
("21789","8715","action created","2026-07-02 17:55:37","2026-07-02 17:55:37"),
("21790","8716","action created","2026-07-02 17:55:37","2026-07-02 17:55:37"),
("21791","8717","action created","2026-07-02 17:55:37","2026-07-02 17:55:37"),
("21792","8718","action created","2026-07-02 17:55:37","2026-07-02 17:55:37"),
("21793","8719","action created","2026-07-02 17:55:37","2026-07-02 17:55:37"),
("21794","8720","action created","2026-07-02 17:55:37","2026-07-02 17:55:37"),
("21795","8715","action started via WP Cron","2026-07-02 17:56:11","2026-07-02 17:56:11"),
("21796","8715","action complete via WP Cron","2026-07-02 17:56:13","2026-07-02 17:56:13"),
("21797","8716","action started via WP Cron","2026-07-02 17:56:13","2026-07-02 17:56:13"),
("21798","8716","action complete via WP Cron","2026-07-02 17:56:15","2026-07-02 17:56:15"),
("21799","8717","action started via WP Cron","2026-07-02 17:56:15","2026-07-02 17:56:15"),
("21800","8717","action complete via WP Cron","2026-07-02 17:56:17","2026-07-02 17:56:17"),
("21801","8718","action started via WP Cron","2026-07-02 17:56:17","2026-07-02 17:56:17"),
("21802","8718","action complete via WP Cron","2026-07-02 17:56:19","2026-07-02 17:56:19"),
("21803","8719","action started via WP Cron","2026-07-02 17:56:19","2026-07-02 17:56:19"),
("21804","8719","action complete via WP Cron","2026-07-02 17:56:21","2026-07-02 17:56:21"),
("21805","8720","action started via WP Cron","2026-07-02 17:56:21","2026-07-02 17:56:21"),
("21806","8720","action complete via WP Cron","2026-07-02 17:56:24","2026-07-02 17:56:24"),
("21807","8721","action created","2026-07-02 17:56:24","2026-07-02 17:56:24"),
("21808","8722","action created","2026-07-02 17:56:24","2026-07-02 17:56:24"),
("21809","8723","action created","2026-07-02 17:56:24","2026-07-02 17:56:24"),
("21810","8724","action created","2026-07-02 17:56:24","2026-07-02 17:56:24"),
("21811","8725","action created","2026-07-02 17:56:24","2026-07-02 17:56:24"),
("21812","8721","action started via WP Cron","2026-07-02 17:56:58","2026-07-02 17:56:58"),
("21813","8721","action complete via WP Cron","2026-07-02 17:57:00","2026-07-02 17:57:00"),
("21814","8722","action started via WP Cron","2026-07-02 17:57:00","2026-07-02 17:57:00"),
("21815","8722","action complete via WP Cron","2026-07-02 17:57:02","2026-07-02 17:57:02"),
("21816","8723","action started via WP Cron","2026-07-02 17:57:02","2026-07-02 17:57:02"),
("21817","8723","action complete via WP Cron","2026-07-02 17:57:04","2026-07-02 17:57:04"),
("21818","8724","action started via WP Cron","2026-07-02 17:57:04","2026-07-02 17:57:04"),
("21819","8724","action complete via WP Cron","2026-07-02 17:57:06","2026-07-02 17:57:06"),
("21820","8725","action started via WP Cron","2026-07-02 17:57:06","2026-07-02 17:57:06"),
("21821","8725","action complete via WP Cron","2026-07-02 17:57:09","2026-07-02 17:57:09"),
("21822","8726","action created","2026-07-02 17:57:09","2026-07-02 17:57:09"),
("21823","8727","action created","2026-07-02 17:57:09","2026-07-02 17:57:09"),
("21824","8728","action created","2026-07-02 17:57:09","2026-07-02 17:57:09"),
("21825","8729","action created","2026-07-02 17:57:09","2026-07-02 17:57:09"),
("21826","8730","action created","2026-07-02 17:57:09","2026-07-02 17:57:09"),
("21827","8726","action started via Async Request","2026-07-02 17:58:55","2026-07-02 17:58:55"),
("21828","8726","action complete via Async Request","2026-07-02 17:58:55","2026-07-02 17:58:55"),
("21829","8727","action started via Async Request","2026-07-02 17:58:55","2026-07-02 17:58:55"),
("21830","8727","action complete via Async Request","2026-07-02 17:58:55","2026-07-02 17:58:55"),
("21831","8728","action started via Async Request","2026-07-02 17:58:55","2026-07-02 17:58:55"),
("21832","8728","action complete via Async Request","2026-07-02 17:58:57","2026-07-02 17:58:57"),
("21833","8729","action started via Async Request","2026-07-02 17:58:57","2026-07-02 17:58:57"),
("21834","8729","action complete via Async Request","2026-07-02 17:59:00","2026-07-02 17:59:00"),
("21835","8730","action started via Async Request","2026-07-02 17:59:00","2026-07-02 17:59:00"),
("21836","8730","action complete via Async Request","2026-07-02 17:59:00","2026-07-02 17:59:00"),
("21837","8731","action created","2026-07-02 18:37:01","2026-07-02 18:37:01");

INSERT IGNORE INTO `wp_awb_critical_css` VALUES 
("1","homepage","@media all{@font-face{font-family:Dance;src:url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.eot?8aad4q\');src:url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.eot?8aad4q#iefix\') format(\'embedded-opentype\'),url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.ttf?8aad4q\') format(\'truetype\'),url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.woff?8aad4q\') format(\'woff\'),url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.svg?8aad4q#Dance\') format(\'svg\');font-weight:400;font-style:normal;font-display:swap}[class*=\" icon-dance-\"],[class^=icon-dance-]{font-family:Dance!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-dance-times:before{content:\"\\e908\"}.icon-dance-bars:before{content:\"\\e909\"}.icon-dance-menu:before{content:\"\\e906\"}.icon-dance-adress:before{content:\"\\e900\"}.icon-dance-arrow:before{content:\"\\e901\"}.icon-dance-phone:before{content:\"\\e902\"}.icon-dance-time:before{content:\"\\e904\"}[class*=\" awb-icon-\"],[class^=awb-icon-]{font-family:awb-icons!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.awb-icon-twitter:before{content:\"\\e90b\"}.awb-icon-facebook:before{content:\"\\e604\"}.awb-icon-youtube:before{content:\"\\e622\"}.awb-icon-instagram:before{content:\"\\ea92\"}.awb-icon-close:before{content:\"\\e904\"}.awb-icon-exclamation-triangle:before{content:\"\\f071\"}.awb-icon-check-circle:before{content:\"\\f058\"}.fusion-form .form-submission-notices .fusion-form-response{display:none}*{box-sizing:border-box}input[type=text]{-webkit-appearance:none;-webkit-border-radius:0}body{margin:0;min-width:320px;-webkit-text-size-adjust:100%;overflow-x:hidden;overflow-y:scroll;color:var(--body_typography-color);font-size:var(--body_typography-font-size,16px);font-family:var(--body_typography-font-family,inherit)}#boxed-wrapper{overflow-x:hidden;overflow-x:clip}#wrapper{overflow:visible}img{border-style:none;vertical-align:top;max-width:100%;height:auto}a{text-decoration:none}input{font-family:var(--body_typography-font-family,inherit);vertical-align:middle;color:var(--body_typography-color)}#main{padding:55px 10px 45px;clear:both}#content{width:71.1702128%;float:left;min-height:1px}#content.full-width{width:100%}input[type=text]{border:1px solid #d2d2d2;font-size:13px;color:#747474;padding:8px 15px;width:100%;box-sizing:border-box}.fontawesome-icon{display:inline-block;float:left}.fontawesome-icon{margin-right:10px}.fusion-animated{position:relative;z-index:2000}.layout-wide-mode #wrapper{width:100%;max-width:none}#sliders-container{position:relative}.fusion-row{margin:0 auto}.fusion-row:after,.fusion-row:before{content:\" \";display:table}.fusion-row:after{clear:both}strong{font-weight:bolder}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.rich-snippet-hidden{display:none}.fusion-page-load-link{display:none}.fusion-disable-outline input{outline:0}html:not(.avada-html-layout-boxed):not(.avada-html-layout-framed),html:not(.avada-html-layout-boxed):not(.avada-html-layout-framed) body{background-color:var(--bg_color);background-blend-mode:var(--bg-color-overlay)}body{background-image:var(--bg_image);background-repeat:var(--bg_repeat)}#main,.layout-wide-mode #main,.layout-wide-mode #wrapper,body,html{background-color:var(--content_bg_color)}#main{background-image:var(--content_bg_image);background-repeat:var(--content_bg_repeat)}#toTop{background-color:var(--totop_background);border-radius:4px 4px 0 0;bottom:0;height:35px;position:fixed;text-align:center;width:48px;opacity:0;z-index:100000;line-height:1}#toTop:before{line-height:35px;content:\"\\f106\";-webkit-font-smoothing:antialiased;font-family:awb-icons;font-size:22px;color:var(--totop_icon_color)}.to-top-container #toTop{border-radius:var(--totop_border_radius) var(--totop_border_radius) 0 0}.to-top-floating #toTop{bottom:30px;height:44px;width:44px;border-radius:var(--totop_border_radius) var(--totop_border_radius) var(--totop_border_radius) var(--totop_border_radius)}.to-top-floating #toTop:before{line-height:42px}.to-top-right #toTop{right:75px}input[type=text]{height:var(--form_input_height);padding-top:0;padding-bottom:0}input[type=text]{background-color:var(--form_bg_color);font-size:var(--form_text_size);color:var(--form_text_color)}input::-moz-placeholder{color:var(--form_text_color)}input::-webkit-input-placeholder{color:var(--form_text_color)}input[type=text]{border-width:var(--form_border_width-top) var(--form_border_width-right) var(--form_border_width-bottom) var(--form_border_width-left);border-color:var(--form_border_color);border-radius:var(--form_border_radius)}#main .fusion-row{max-width:var(--site_width)}html:not(.avada-has-site-width-percent) #main{padding-left:30px;padding-right:30px}html:not(.avada-has-site-width-percent) #main.width-100{padding-left:var(--hundredp_padding-fallback_to_zero);padding-right:var(--hundredp_padding-fallback_to_zero)}.width-100 .fusion-fullwidth,.width-100 .nonhundred-percent-fullwidth{margin-left:var(--hundredp_padding-hundred_percent_negative_margin);margin-right:var(--hundredp_padding-hundred_percent_negative_margin)}body.awb-no-sidebars #content{width:100%;float:none}#main{padding-left:30px;padding-right:30px;padding-top:var(--main_padding-top);padding-bottom:var(--main_padding-bottom)}#main.width-100{padding-left:var(--hundredp_padding-fallback_to_zero);padding-right:var(--hundredp_padding-fallback_to_zero)}html.avada-is-100-percent-template #main{padding-left:0;padding-right:0}html.avada-is-100-percent-template #main.width-100{padding-left:var(--hundredp_padding-fallback_to_zero);padding-right:var(--hundredp_padding-fallback_to_zero)}.layout-wide-mode #wrapper{width:100%;max-width:none}body{font-family:var(--body_typography-font-family);font-weight:var(--body_typography-font-weight);letter-spacing:var(--body_typography-letter-spacing);font-style:var(--body_typography-font-style,normal)}.fusion-alert,body{font-size:var(--body_typography-font-size)}body{line-height:var(--body_typography-line-height)}body{color:var(--body_typography-color)}body a,body a:after,body a:before{color:var(--link_color)}.fusion-title h1,.post-content h1,h1{font-family:var(--h1_typography-font-family);font-weight:var(--h1_typography-font-weight);line-height:var(--h1_typography-line-height);letter-spacing:var(--h1_typography-letter-spacing);text-transform:var(--h1_typography-text-transform);font-style:var(--h1_typography-font-style,normal)}.post-content h1,h1{font-size:var(--h1_typography-font-size)}.post-content h1,.title h1,h1{color:var(--h1_typography-color)}h1{margin-top:var(--h1_typography-margin-top);margin-bottom:var(--h1_typography-margin-bottom)}.post-content h2,h2{font-family:var(--h2_typography-font-family);font-weight:var(--h2_typography-font-weight);line-height:var(--h2_typography-line-height);letter-spacing:var(--h2_typography-letter-spacing);text-transform:var(--h2_typography-text-transform);font-style:var(--h2_typography-font-style,normal)}.post-content h2,h2{font-size:var(--h2_typography-font-size)}h2{color:var(--h2_typography-color)}.fusion-title-size-two,h2{margin-top:var(--h2_typography-margin-top);margin-bottom:var(--h2_typography-margin-bottom)}h3{font-family:var(--h3_typography-font-family);font-weight:var(--h3_typography-font-weight);line-height:var(--h3_typography-line-height);letter-spacing:var(--h3_typography-letter-spacing);text-transform:var(--h3_typography-text-transform);font-style:var(--h3_typography-font-style,normal)}h3{font-size:var(--h3_typography-font-size)}h3{color:var(--h3_typography-color)}h3{margin-top:var(--h3_typography-margin-top);margin-bottom:var(--h3_typography-margin-bottom)}.awb-off-canvas-wrap{--awb-horizontal-position:center;--awb-vertical-position:center;--awb-overlay-background-color:rgba(0,0,0,0.8);--awb-overlay-background-image:none;--awb-overlay-background-repeat:repeat;--awb-overlay-background-size:auto;--awb-overlay-background-position:left top;--awb-overlay-background-blend-mode:none;--awb-width:800px;--awb-height:auto;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;--awb-background-color:#fff;--awb-background-image:none;--awb-background-repeat:repeat;--awb-background-size:auto;--awb-background-position:left top;--awb-background-blend-mode:none;--awb-padding-top:0;--awb-padding-right:0;--awb-padding-bottom:0;--awb-padding-left:0;--awb-content-layout:column;--awb-align-content:flex-start;--awb-content-wrap:wrap;--awb-close-button-color:var(--body_typography-color);--awb-close-icon-size:var(--body_typography-font-size);--awb-border-top-width:0;--awb-border-right-width:0;--awb-border-bottom-width:0;--awb-border-left-width:0;--awb-border-color:inherit;--awb-border-top-left-radius:0;--awb-border-top-right-radius:0;--awb-border-bottom-right-radius:0;--awb-border-bottom-left-radius:0;--awb-box-shadow:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:var(--awb-overlay-background-color);display:flex;justify-content:var(--awb-horizontal-position);align-items:var(--awb-vertical-position);opacity:0;visibility:hidden;z-index:-1}.awb-off-canvas-wrap:not(.overlay-disabled){background-image:var(--awb-overlay-background-image);background-repeat:var(--awb-overlay-background-repeat);background-position:var(--awb-overlay-background-position);background-size:var(--awb-overlay-background-size);background-blend-mode:var(--awb-overlay-background-blend-mode)}.awb-off-canvas-wrap.type-sliding-bar{--awb-width:400px;--awb-vertical-position:flex-end}.awb-off-canvas-wrap .awb-off-canvas{position:relative;width:var(--awb-width);height:var(--awb-height);max-width:100vw;max-height:100vh;outline:0;margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left)}.awb-off-canvas-wrap .awb-off-canvas .off-canvas-close{margin:var(--awb-close-button-margin-top,20px) var(--awb-close-button-margin-right,0) var(--awb-close-button-margin-bottom,0) var(--awb-close-button-margin-left,0);color:var(--awb-close-button-color);font-size:var(--awb-close-icon-size);background-color:transparent;border:none;position:absolute;top:0;right:0;z-index:20}.awb-off-canvas-wrap .awb-off-canvas .off-canvas-close.close-position-right{margin-right:var(--awb-close-button-margin-right,20px)}.awb-off-canvas-wrap .awb-off-canvas-inner{background-color:var(--awb-background-color);background-image:var(--awb-background-image);background-repeat:var(--awb-background-repeat);background-position:var(--awb-background-position);background-size:var(--awb-background-size);background-blend-mode:var(--awb-background-blend-mode);border-style:solid;border-top-width:var(--awb-border-top-width);border-right-width:var(--awb-border-right-width);border-bottom-width:var(--awb-border-bottom-width);border-left-width:var(--awb-border-left-width);border-top-left-radius:var(--awb-border-top-left-radius);border-top-right-radius:var(--awb-border-top-right-radius);border-bottom-left-radius:var(--awb-border-bottom-left-radius);border-bottom-right-radius:var(--awb-border-bottom-right-radius);border-color:var(--awb-border-color);box-shadow:var(--awb-box-shadow);position:relative;width:100%;height:100%;max-height:100vh;max-width:100vw;display:flex;align-items:flex-start;overflow:hidden;z-index:10}.awb-off-canvas-wrap .awb-off-canvas-inner .off-canvas-content{width:100%;height:100%;max-width:100vw;max-height:100vh;padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);display:flex;flex-direction:var(--awb-content-layout);flex-wrap:var(--awb-content-wrap);justify-content:var(--awb-align-content);position:relative;overflow-x:hidden;overflow-y:auto}.awb-off-canvas-wrap .awb-off-canvas-inner.content-layout-column .off-canvas-content{flex-wrap:nowrap}.fusion-alert:not(.fusion-live-alert) .close{display:inline}.fontawesome-icon{color:var(--icon_color)}:root{--awb-color1:#ffffff;--awb-color1-h:0;--awb-color1-s:0%;--awb-color1-l:100%;--awb-color1-a:100%;--awb-color2:#f9f9fb;--awb-color2-h:240;--awb-color2-s:20%;--awb-color2-l:98%;--awb-color2-a:100%;--awb-color3:#e6e2f5;--awb-color3-h:253;--awb-color3-s:49%;--awb-color3-l:92%;--awb-color3-a:100%;--awb-color4:#65bd7d;--awb-color4-h:136;--awb-color4-s:40%;--awb-color4-l:57%;--awb-color4-a:100%;--awb-color5:#648ad6;--awb-color5-h:220;--awb-color5-s:58%;--awb-color5-l:62%;--awb-color5-a:100%;--awb-color6:#434549;--awb-color6-h:220;--awb-color6-s:4%;--awb-color6-l:27%;--awb-color6-a:100%;--awb-color7:#212326;--awb-color7-h:216;--awb-color7-s:7%;--awb-color7-l:14%;--awb-color7-a:100%;--awb-color8:#050505;--awb-color8-h:0;--awb-color8-s:0%;--awb-color8-l:2%;--awb-color8-a:100%;--awb-typography1-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography1-font-size:73px;--awb-typography1-font-weight:600;--awb-typography1-font-style:normal;--awb-typography1-line-height:1.2;--awb-typography1-letter-spacing:-2%;--awb-typography1-text-transform:capitalize;--awb-typography2-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography2-font-size:20px;--awb-typography2-font-weight:400;--awb-typography2-font-style:normal;--awb-typography2-line-height:26px;--awb-typography2-letter-spacing:-2%;--awb-typography2-text-transform:none;--awb-typography3-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography3-font-size:14px;--awb-typography3-font-weight:400;--awb-typography3-font-style:normal;--awb-typography3-line-height:18px;--awb-typography3-letter-spacing:0px;--awb-typography3-text-transform:none;--awb-typography4-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography4-font-size:15px;--awb-typography4-font-weight:400;--awb-typography4-font-style:normal;--awb-typography4-line-height:1.72;--awb-typography4-letter-spacing:0.015em;--awb-typography4-text-transform:none;--awb-typography5-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography5-font-size:13px;--awb-typography5-font-weight:400;--awb-typography5-font-style:normal;--awb-typography5-line-height:22px;--awb-typography5-letter-spacing:0px;--awb-typography5-text-transform:none;--site_width:1200px;--main_padding-top:0;--main_padding-bottom:-1px;--hundredp_padding:30px;--hundredp_padding-fallback_to_zero:30px;--hundredp_padding-hundred_percent_negative_margin:-30px;--bg_image:none;--bg_repeat:no-repeat;--bg_color:var(--awb-color3);--bg-color-overlay:normal;--content_bg_color:var(--awb-color1);--content_bg_image:none;--content_bg_repeat:no-repeat;--body_typography-font-family:var(--awb-typography4-font-family);--body_typography-font-size:var(--awb-typography4-font-size);--body_typography-font-weight:var(--awb-typography4-font-weight);--body_typography-font-style:var(--awb-typography4-font-style);--body_typography-line-height:var(--awb-typography4-line-height);--body_typography-letter-spacing:var(--awb-typography4-letter-spacing);--body_typography-color:var(--awb-color8);--link_color:var(--awb-color8);--h1_typography-font-family:var(--awb-typography1-font-family);--h1_typography-font-weight:var(--awb-typography1-font-weight);--h1_typography-line-height:var(--awb-typography1-line-height);--h1_typography-letter-spacing:var(--awb-typography1-letter-spacing);--h1_typography-font-style:var(--awb-typography1-font-style);--h1_typography-font-size:73px;--h1_typography-color:var(--awb-color8);--h1_typography-text-transform:var(--awb-typography1-text-transform);--h1_typography-margin-top:0.67em;--h1_typography-margin-bottom:0.67em;--h2_typography-font-family:var(--awb-typography1-font-family);--h2_typography-font-weight:var(--awb-typography1-font-weight);--h2_typography-line-height:var(--awb-typography1-line-height);--h2_typography-letter-spacing:var(--awb-typography1-letter-spacing);--h2_typography-font-style:var(--awb-typography1-font-style);--h2_typography-font-size:49px;--h2_typography-color:var(--awb-color8);--h2_typography-text-transform:var(--awb-typography1-text-transform);--h2_typography-margin-top:0em;--h2_typography-margin-bottom:1.1em;--h3_typography-font-family:var(--awb-typography1-font-family);--h3_typography-font-weight:var(--awb-typography1-font-weight);--h3_typography-line-height:var(--awb-typography1-line-height);--h3_typography-letter-spacing:var(--awb-typography1-letter-spacing);--h3_typography-font-style:var(--awb-typography1-font-style);--h3_typography-font-size:40px;--h3_typography-color:var(--awb-color8);--h3_typography-text-transform:var(--awb-typography1-text-transform);--h3_typography-margin-top:1em;--h3_typography-margin-bottom:1em;--form_input_height:50px;--form_text_size:15px;--form_bg_color:var(--awb-color1);--form_text_color:var(--awb-color8);--form_border_width-top:1px;--form_border_width-bottom:1px;--form_border_width-left:1px;--form_border_width-right:1px;--form_border_color:var(--awb-color3);--form_border_radius:6px;--danger_bg_color:rgba(219,75,104,0.1);--danger_accent_color:#db4b68;--success_bg_color:rgba(18,184,120,0.1);--success_accent_color:#12b878;--alert_border_size:1px;--button_padding-top:17px;--button_padding-bottom:17px;--button_padding-left:22px;--button_padding-right:22px;--button_typography-font-family:var(--awb-typography3-font-family);--button_typography-font-weight:var(--awb-typography3-font-weight);--button_typography-letter-spacing:var(--awb-typography3-letter-spacing);--button_typography-font-style:var(--awb-typography3-font-style);--button_font_size:var(--awb-typography3-font-size);--button_line_height:var(--awb-typography3-line-height);--button_text_transform:var(--awb-typography3-text-transform);--button_gradient_top_color:var(--awb-color1);--button_accent_color:var(--awb-color8);--button_border_width-top:0px;--button_border_width-right:0px;--button_border_width-bottom:0px;--button_border_width-left:0px;--button_border_color:var(--awb-color1);--col_margin-top:0px;--col_margin-bottom:20px;--col_spacing:4%;--container_padding_default_top:0px;--container_padding_default_bottom:0px;--container_padding_default_left:0px;--container_padding_default_right:0px;--container_padding_100_top:0px;--container_padding_100_bottom:0px;--container_padding_100_left:30px;--container_padding_100_right:30px;--full_width_bg_color:rgba(255,255,255,0);--full_width_border_sizes_top:0px;--full_width_border_sizes_bottom:0px;--full_width_border_sizes_left:0px;--full_width_border_sizes_right:0px;--full_width_border_color:var(--awb-color3);--icon_color:var(--awb-color1);--title_border_color:var(--awb-color3);--title_margin-top:10px;--title_margin-right:0px;--title_margin-bottom:15px;--title_margin-left:0px;--title_margin_mobile-top:10px;--title_margin_mobile-right:0px;--title_margin_mobile-bottom:10px;--title_margin_mobile-left:0px}#toTop{--totop_border_radius:0px;--totop_background:var(--awb-color7);--totop_icon_color:var(--awb-color1)}body{--awb-alert-border-top-left-radius-default:0px;--awb-alert-border-top-right-radius-default:0px;--awb-alert-border-bottom-right-radius-default:0px;--awb-alert-border-bottom-left-radius-default:0px;--button-border-radius-top-left:0;--button-border-radius-top-right:0;--button-border-radius-bottom-right:0;--button-border-radius-bottom-left:0}.fusion-social-links{--social_links_font_size:16}.fusion-tb-header{--awb_header_bg_color:var(--awb-color8)}@font-face{font-family:awb-icons;src:url(\"https://dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/icomoon/awb-icons.woff\") format(\'woff\'),url(\"https://dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/icomoon/awb-icons.ttf\") format(\'truetype\'),url(\"https://dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/icomoon/awb-icons.svg#awb-icons\") format(\'svg\');font-weight:400;font-style:normal;font-display:swap}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert-dismissable{padding-right:35px}.close{position:relative;top:-2px;opacity:.2;float:right;padding:0;background:0 0;border:0 none;font-size:21px;color:#000;font-weight:700;line-height:1}.fusion-alert{--awb-padding-top:25px;--awb-padding-right:25px;--awb-padding-bottom:25px;--awb-padding-left:25px;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:20px;--awb-margin-left:0;--awb-accent-color:inherit;--awb-background-color:transparent;--awb-border-size:var(--alert_border_size);--awb-border-top-left-radius:var(--awb-alert-border-top-left-radius-default,0);--awb-border-top-right-radius:var(--awb-alert-border-top-right-radius-default,0);--awb-border-bottom-right-radius:var(--awb-alert-border-bottom-right-radius-default,0);--awb-border-bottom-left-radius:var(--awb-alert-border-bottom-left-radius-default,0);display:flex;align-items:center;clear:both;position:relative;padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);margin:var(--awb-margin-top) var(--awb-margin-right) var(--awb-margin-bottom) var(--awb-margin-left);border-radius:0;text-shadow:none;color:var(--awb-accent-color);background:var(--awb-background-color);border-color:var(--awb-accent-color);border-width:var(--awb-border-size);border-top-left-radius:var(--awb-border-top-left-radius);border-top-right-radius:var(--awb-border-top-right-radius);border-bottom-right-radius:var(--awb-border-bottom-right-radius);border-bottom-left-radius:var(--awb-border-bottom-left-radius)}.fusion-alert .alert-icon,.fusion-alert .fusion-alert-content{color:var(--awb-accent-color)}.fusion-alert .fusion-alert-content-wrapper{flex:1;display:flex}.fusion-alert .alert-icon i{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fusion-alert.awb-alert-close-boxed .close{position:absolute;box-sizing:content-box;top:-1px;right:-1px;height:25px;width:25px;line-height:25px;opacity:1;border:1px solid;border-color:inherit;color:inherit;font-size:15px}.fusion-alert.fusion-alert-center{text-align:center}.fusion-alert.fusion-alert-center .fusion-alert-content-wrapper{justify-content:center}.fusion-alert.fusion-alert-center .close{border-top-width:0}.ltr .fusion-alert.fusion-alert-center .close{border-right-width:0}.fusion-alert.fusion-alert-center .alert-icon{margin-right:10px}.fusion-alert.alert-danger.error{--awb-background-color:var(--danger_bg_color);--awb-accent-color:var(--danger_accent_color)}.fusion-alert.alert-success.success{--awb-background-color:var(--success_bg_color);--awb-accent-color:var(--success_accent_color)}.button-default,.fusion-button,.fusion-button-default{--button_margin-top:0px;--button_margin-right:0px;--button_margin-bottom:0px;--button_margin-left:0px;display:inline-flex;justify-content:center;align-items:center;position:relative;text-decoration:none;box-sizing:border-box;font-family:var(--button_typography-font-family);font-weight:var(--button_typography-font-weight);font-style:var(--button_typography-font-style,normal);letter-spacing:var(--button_typography-letter-spacing);border-width:var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);border-style:solid;border-radius:var(--button-border-radius-top-left,0) var(--button-border-radius-top-right,0) var(--button-border-radius-bottom-right,0) var(--button-border-radius-bottom-left,0);text-transform:var(--button_text_transform);margin:var(--button_margin-top) var(--button_margin-right) var(--button_margin-bottom) var(--button_margin-left)}.fusion-body .fusion-button-default-size{padding-top:var(--button_padding-top,13px);padding-right:var(--button_padding-right,29px);padding-bottom:var(--button_padding-bottom,13px);padding-left:var(--button_padding-left,29px);line-height:var(--button_line_height,1);font-size:var(--button_font_size,14px)}.button-default,.fusion-button-default{background:var(--button_gradient_top_color);color:var(--button_accent_color);border-color:var(--button_border_color)}.button-default .fusion-button-text,.fusion-button-default .fusion-button-text{color:var(--button_accent_color)}.fusion-button.button-flat{box-shadow:none!important}.fusion-disable-outline .fusion-button{outline:0}.button-small{padding:9px 20px;line-height:14px;font-size:12px}.button-icon-left{margin-right:.7em}.button-icon-right{margin-left:.7em}.fusion-button-default-size{padding-top:var(--button_padding-top,13px);padding-right:var(--button_padding-right,29px);padding-bottom:var(--button_padding-bottom,13px);padding-left:var(--button_padding-left,29px);line-height:var(--button_line_height,1);font-size:var(--button_font_size,14px)}.fusion-button i{color:var(--button_accent_color)}.fontawesome-icon.fb-icon-element{--awb-iconcolor:var(--icon_color);--awb-font-size:inherit;--awb-height:auto;--awb-width:auto;--awb-line-height:inherit;--awb-margin-top:0;--awb-margin-right:10px;--awb-margin-bottom:0;--awb-margin-left:0;--awb-align-self:auto;color:var(--awb-iconcolor);font-size:var(--awb-font-size);margin:var(--awb-margin-top) var(--awb-margin-right) var(--awb-margin-bottom) var(--awb-margin-left);align-self:var(--awb-align-self)}.fontawesome-icon{display:inline-block;float:left;margin-right:10px}.fontawesome-icon.fusion-link:before{color:inherit}.fontawesome-icon.fusion-text-flow{float:none}.fusion-grid-4>.fusion-grid-column{width:25%}.fusion-gallery .fusion-gallery-column{padding:0;display:none}.fusion-gallery .fusion-gallery-column .fusion-gallery-image{overflow:hidden;opacity:1}.fusion-gallery .fusion-gallery-image{border:var(--awb-bordersize) solid var(--awb-bordercolor);border-radius:var(--awb-border-radius)}.fusion-gallery.has-aspect-ratio .fusion-gallery-image img{aspect-ratio:var(--awb-aspect-ratio);object-position:var(--awb-object-position);object-fit:cover;width:100%}.fusion-image-element{--awb-aspect-ratio:1/1;--awb-object-position:50% 50%;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;--awb-filter:none;--awb-max-width:100%;margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left);line-height:1}.fusion-imageframe{display:inline-block;z-index:1;overflow:hidden;position:relative;vertical-align:middle;max-width:var(--awb-max-width);line-height:1;filter:var(--awb-filter)}.fusion-imageframe img{vertical-align:top;box-shadow:none!important}.fusion-imageframe.has-aspect-ratio{position:relative}.fusion-imageframe.has-aspect-ratio img{aspect-ratio:var(--awb-aspect-ratio);object-position:var(--awb-object-position);object-fit:cover;width:100%}.awb-menu{--awb-font-size:16px;--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-justify-content:flex-start;--awb-fusion-font-family-typography:inherit;--awb-fusion-font-style-typography:inherit;--awb-fusion-font-weight-typography:400;--awb-text-transform:none;--awb-min-height:4em;--awb-gap:0px;--awb-bg:rgba(0,0,0,0);--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-left:0px;--awb-border-radius-bottom-right:0px;--awb-color:#212934;--awb-line-height:var(--body_typography-line-height);--awb-letter-spacing:var(--body_typography-letter-spacing);--awb-items-padding-top:0px;--awb-items-padding-right:0px;--awb-items-padding-bottom:0px;--awb-items-padding-left:0px;--awb-border-top:0px;--awb-border-right:0px;--awb-border-bottom:0px;--awb-border-left:0px;--awb-border-color:rgba(0,0,0,0);--awb-active-bg:rgba(0,0,0,0);--awb-active-border-top:0px;--awb-active-border-right:0px;--awb-active-border-bottom:0px;--awb-active-border-left:0px;--awb-active-border-color:rgba(0,0,0,0);--awb-active-color:#65bc7b;--awb-box-shadow:none}.awb-menu{margin-top:var(--awb-margin-top);margin-bottom:var(--awb-margin-bottom);width:100%;opacity:1;font-size:var(--awb-font-size)}.awb-menu .awb-menu__main-ul{font-size:var(--awb-font-size)}.awb-menu__main-ul{display:flex;flex-wrap:wrap;list-style:none;align-items:var(--awb-align-items);justify-content:var(--awb-justify-content);padding:0;font-family:var(--awb-fusion-font-family-typography);font-style:var(--awb-fusion-font-style-typography);font-weight:var(--awb-fusion-font-weight-typography);text-transform:var(--awb-text-transform);-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0;min-height:var(--awb-min-height);position:relative}.awb-menu__main-ul_row{flex-direction:row}.awb-menu__main-li{position:relative;display:flex;justify-content:center;margin-left:calc(var(--awb-gap)/ 2);margin-right:calc(var(--awb-gap)/ 2);line-height:var(--awb-line-height,inherit);letter-spacing:var(--awb-letter-spacing)}.awb-menu__main-li>*{z-index:10}.awb-menu__main-li:first-child{-webkit-margin-start:0;margin-inline-start:0}.awb-menu__main-li:last-child{-webkit-margin-end:0;margin-inline-end:0}.awb-menu__main-li_regular{background-color:var(--awb-bg);border-radius:var(--awb-border-radius-top-left) var(--awb-border-radius-top-right) var(--awb-border-radius-bottom-right) var(--awb-border-radius-bottom-left)}.awb-menu__main-a{color:var(--awb-color)!important;display:flex;align-items:center;justify-content:center;width:100%}.awb-menu__main-a_regular{padding-top:calc(var(--awb-items-padding-top) + var(--awb-border-top));padding-right:calc(var(--awb-items-padding-right) + var(--awb-border-right));padding-bottom:calc(var(--awb-items-padding-bottom) + var(--awb-border-bottom));padding-left:calc(var(--awb-items-padding-left) + var(--awb-border-left))}.awb-menu__main-background-active,.awb-menu__main-background-default{position:absolute;top:0;width:100%;height:100%;z-index:1;background-color:var(--awb-bg);border-top-width:var(--awb-border-top);border-right-width:var(--awb-border-right);border-bottom-width:var(--awb-border-bottom);border-left-width:var(--awb-border-left);border-color:var(--awb-border-color);border-radius:var(--awb-border-radius-top-left) var(--awb-border-radius-top-right) var(--awb-border-radius-bottom-right) var(--awb-border-radius-bottom-left);border-style:solid}.awb-menu__main-background-active_left,.awb-menu__main-background-default_left{left:0;opacity:1;width:100%}.awb-menu__main-background-active{background-color:var(--awb-active-bg);border-top-width:var(--awb-active-border-top);border-right-width:var(--awb-active-border-right);border-bottom-width:var(--awb-active-border-bottom);border-left-width:var(--awb-active-border-left);border-color:var(--awb-active-border-color)}.awb-menu__main-background-active_left{opacity:0}.awb-menu__main-background-active_left{width:0;left:0}.awb-menu__main-background-active_center-vertical{bottom:0;left:0;right:0;top:0;transform:scaleY(0)}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-a_regular{color:var(--awb-active-color)!important;padding-top:calc(var(--awb-items-padding-top) + var(--awb-active-border-top));padding-right:calc(var(--awb-items-padding-right) + var(--awb-active-border-right));padding-bottom:calc(var(--awb-items-padding-bottom) + var(--awb-active-border-bottom));padding-left:calc(var(--awb-items-padding-left) + var(--awb-active-border-left))}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-default_left{opacity:0}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-default_left{width:0}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-active_left{opacity:1}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-active_left{width:100%}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-active_center-vertical{transform:scaleY(1)}.awb-menu_row .menu-text{display:flex;align-items:center;text-align:center}.awb-menu_icons-left .awb-menu__main-a{flex-direction:row}.awb-menu{--awb-main-justify-content:flex-start}.awb-menu__main-ul_column{flex-direction:column}.awb-menu__main-ul_column .awb-menu__main-li{margin:0 0 var(--awb-gap) 0;width:100%}.awb-menu__main-ul_column .awb-menu__main-li:last-child{margin-bottom:0}.awb-menu__main-ul_column .awb-menu__main-a{justify-content:var(--awb-main-justify-content)}.awb-menu_v-stacked .menu-item-has-children .awb-menu__sub-a{grid-area:link}.awb-menu_v-stacked .menu-item-has-children .awb-menu__open-nav-submenu_click{grid-area:caret}.awb-menu_v-stacked .menu-item-has-children .awb-menu__sub-ul{grid-area:submenu}.awb-menu{--awb-mobile-text-transform:none;--awb-mobile-trigger-background-color:#fff;--awb-mobile-trigger-color:#4a4e57;--awb-trigger-padding-top:12px;--awb-trigger-padding-right:20px;--awb-trigger-padding-bottom:12px;--awb-trigger-padding-left:20px;--awb-mobile-trigger-font-size:1em;--awb-mobile-nav-button-align-hor:flex-start;--awb-fusion-font-family-mobile-typography:inherit;--awb-fusion-font-style-mobile-typography:inherit;--awb-fusion-font-weight-mobile-typography:400;--awb-mobile-nav-trigger-bottom-margin:0;--awb-mobile-bg:#fff;--awb-mobile-nav-items-height:65;--awb-mobile-color:#4a4e57;--awb-mobile-justify:flex-start;--awb-mobile-line-height:inherit;--awb-mobile-letter-spacing:inherit;--awb-mobile-active-bg:#f9f9fb;--awb-mobile-active-color:#4a4e57;--awb-mobile-sep-color:rgba(0,0,0,0.1)}.awb-menu__m-toggle{background-color:var(--awb-mobile-trigger-background-color);color:var(--awb-mobile-trigger-color);padding-top:var(--awb-trigger-padding-top);padding-right:var(--awb-trigger-padding-right);padding-bottom:var(--awb-trigger-padding-bottom);padding-left:var(--awb-trigger-padding-left);box-sizing:content-box;font-family:var(--awb-fusion-font-family-typography);font-style:var(--awb-fusion-font-style-typography);font-weight:var(--awb-fusion-font-weight-typography);font-size:var(--awb-mobile-trigger-font-size);border:none!important;box-shadow:none!important;display:none}.awb-menu__m-toggle-inner{display:flex;justify-content:flex-start;align-items:center}.awb-menu__m-collapse-icon{position:relative;width:1em;height:1em;-webkit-margin-start:0.5em;margin-inline-start:.5em}.awb-menu__m-collapse-icon-close,.awb-menu__m-collapse-icon-open{width:1em;position:absolute;left:0;opacity:0;transform:rotate(0)}.awb-menu__m-collapse-icon-open{opacity:1}.awb-menu__m-collapse-icon-close_no-text,.awb-menu__m-collapse-icon-open_no-text{left:0}.awb-menu__m-collapse-icon_no-text{margin-left:0;margin-right:0}.awb-menu.collapse-enabled{display:flex;justify-content:var(--awb-mobile-nav-button-align-hor);align-items:center;flex-wrap:wrap;position:relative;font-family:var(--awb-fusion-font-family-mobile-typography);font-style:var(--awb-fusion-font-style-mobile-typography);font-weight:var(--awb-fusion-font-weight-mobile-typography)}.awb-menu.collapse-enabled .awb-menu__main-ul{margin-top:var(--awb-mobile-nav-trigger-bottom-margin)}.awb-menu.collapse-enabled.mobile-mode-collapse-to-button .awb-menu__main-ul{display:block;max-height:0;min-height:0;overflow:hidden;opacity:0;z-index:-1}.awb-menu.collapse-enabled.mobile-mode-collapse-to-button .awb-menu__m-toggle{display:block;outline:0}.awb-menu.collapse-enabled.mobile-size-full-absolute .awb-menu__main-ul{position:absolute;left:0;top:100%;z-index:-1;max-width:100vw}.awb-menu.collapse-enabled.mobile-size-full-absolute .awb-menu__main-ul{width:100vw}.awb-menu.collapse-enabled ul{flex-direction:column!important;max-width:100%;width:100%;border-radius:0!important;background:var(--awb-mobile-bg);list-style:none;padding:0;margin:0}.awb-menu.collapse-enabled a{width:100%!important;border:none!important;min-height:calc(var(--awb-mobile-nav-items-height) * 1px);padding:0 1.5em!important;background:var(--awb-mobile-bg)!important;color:var(--awb-mobile-color)!important;font-family:var(--awb-fusion-font-family-mobile-typography);font-style:var(--awb-fusion-font-style-mobile-typography);font-weight:var(--awb-fusion-font-weight-mobile-typography);border-radius:0!important;justify-content:var(--awb-mobile-justify)}.awb-menu.collapse-enabled,.awb-menu.collapse-enabled li a{font-size:var(--awb-mobile-font-size,var(--awb-font-size));text-transform:var(--awb-mobile-text-transform,none);line-height:var(--awb-mobile-line-height,inherit);letter-spacing:var(--awb-mobile-letter-spacing,inherit)}.awb-menu.collapse-enabled .awb-menu__main-li{background:var(--awb-mobile-bg)}.awb-menu.collapse-enabled li{width:100%;margin:0!important;border-radius:0!important;box-shadow:none;flex-direction:column!important;position:relative}.awb-menu.collapse-enabled .awb-menu__main-background-active,.awb-menu.collapse-enabled .awb-menu__main-background-default,.awb-menu.collapse-enabled li:after{display:none!important}.awb-menu.collapse-enabled li.current-menu-item>a{background:var(--awb-mobile-active-bg)!important;color:var(--awb-mobile-active-color)!important}.awb-menu.collapse-enabled li{border-bottom:1px solid var(--awb-mobile-sep-color)}.fusion-separator{clear:both;position:relative;z-index:11}.fusion-absolute-separator{position:absolute;bottom:0}.fusion-absolute-separator.fusion-align-center{left:50%}.fusion-absolute-separator.fusion-align-center:not(.fusion-single-px){transform:translate(-50%,50%)}.fusion-body .fusion-separator{display:flex;align-items:center}.fusion-body .fusion-separator .fusion-separator-border{flex-grow:2;border:0 solid #e7e6e6}.fusion-body .fusion-separator,.fusion-body .fusion-separator-border{--awb-sep-color:transparent;--awb-height:20px}.fusion-body .fusion-separator-border.sep-single{height:auto;border-top-width:1px;border-bottom-width:0}.fusion-body .fusion-separator-border.sep-solid{border-bottom-style:solid;border-top-style:solid}.fusion-social-networks{overflow:hidden}.fusion-social-networks .fusion-social-networks-wrapper{margin:0 -10px}.fusion-social-networks .fusion-social-network-icon{display:inline-block;margin:0 10px 10px;font-size:16px;color:#46494a;text-decoration:none;box-shadow:none!important;line-height:1}.fusion-social-networks .fusion-social-network-icon:before{color:inherit}.fusion-social-links{--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;--awb-alignment:inherit;margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left);text-align:var(--awb-alignment)}.fusion-social-links .fusion-social-networks a{font-size:var(--social_links_font_size)}.fusion-social-links .fusion-social-networks .fusion-social-networks-wrapper{margin:-10px}.fusion-social-links .fusion-social-networks .fusion-social-networks-wrapper .fusion-social-network-icon{margin:10px}.fusion-text{--awb-content-alignment:initial;--awb-font-size:inherit;--awb-line-height:inherit;--awb-letter-spacing:inherit;--awb-text-transform:inherit;--awb-text-color:inherit;--awb-text-font-family:inherit;--awb-text-font-style:inherit;--awb-text-font-weight:inherit;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;text-align:var(--awb-content-alignment);font-size:var(--awb-font-size);line-height:var(--awb-line-height);letter-spacing:var(--awb-letter-spacing);text-transform:var(--awb-text-transform);color:var(--awb-text-color);font-family:var(--awb-text-font-family);font-weight:var(--awb-text-font-weight);font-style:var(--awb-text-font-style);margin:var(--awb-margin-top) var(--awb-margin-right) var(--awb-margin-bottom) var(--awb-margin-left)}.fusion-body .fusion-title{--awb-text-color:var(--body_typography-color);--awb-margin-top:var(--title_margin-top);--awb-margin-right:var(--title_margin-right);--awb-margin-bottom:var(--title_margin-bottom);--awb-margin-left:var(--title_margin-left);--awb-sep-color:var(--title_border_color);--awb-font-size:var(--body_typography-font-size);margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left);display:flex;flex-wrap:nowrap;align-items:center;border-bottom-color:var(--awb-sep-color);font-size:var(--awb-font-size)}.fusion-body .fusion-title.fusion-title-size-one{--awb-font-size:var(--h1_typography-font-size);--awb-text-color:var(--h1_typography-color)}.fusion-body .fusion-title.fusion-title-size-two{--awb-font-size:var(--h2_typography-font-size);--awb-text-color:var(--h2_typography-color)}.fusion-body .fusion-title.fusion-title-center{text-align:center}.fusion-body .fusion-title.fusion-title-center.fusion-sep-none .title-heading-center{padding:0;text-align:center}.fusion-body .fusion-title.fusion-sep-none{display:block}.fusion-body #wrapper .fusion-title h1,.fusion-body #wrapper .fusion-title h2{flex-grow:0;padding:0;font-size:1em;color:var(--awb-text-color)}.fusion-post-cards .fusion-grid>li:last-child>.fusion-absolute-separator{display:none}.fusion-body .fusion-meta-tb .fusion-meta-tb-sep{padding:0 5px}.fusion-body .fusion-meta-tb .fusion-meta-tb-sep:last-child{display:none}.fusion-body .fusion-meta-tb span{border:0 solid var(--awb-border-color)}.fss-wrapper-modal{z-index:1000000;position:fixed;right:0;top:0;padding:0;height:100vh;width:0}.fss-wrapper-modal .fss-toggle-buy,.fss-wrapper-modal .fss-toggle-colors,.fss-wrapper-modal .fss-toggle-demos{display:flex;flex-direction:column;align-items:center;justify-content:space-between;overflow:hidden;position:absolute;top:150px;right:15px;padding:8px 6px;width:66px;height:66px;background-color:#fff;border-radius:6px;box-shadow:0 0 25px 5px rgba(0,0,0,.2)}.fss-wrapper-modal .fss-toggle-colors{top:300px;height:28px}.fss-wrapper-modal .awb-color-select{display:none;position:fixed;z-index:999999999;overflow:scroll;top:32px;bottom:0;left:0;right:0;background:rgba(0,0,0,.8);color:#fff;padding:30px;-ms-overflow-style:none;scrollbar-width:none}.fss-wrapper-modal .awb-color-select::-webkit-scrollbar{display:none}.fss-wrapper-modal .awb-color-select .close-mixer{position:fixed;top:40px;right:40px;font-size:24px}.fss-wrapper-modal .awb-color-select ul{padding:0;margin:0;list-style:none;display:block;overflow:hidden}.fss-wrapper-modal .awb-color-select li{width:200px;float:left;margin:20px}.fss-wrapper-modal .awb-color-select li a strong{color:#fff!important;display:block}.fss-wrapper-modal .awb-color-select li a span{display:inline-flex;height:50px;width:calc(12.5%)}.fss-wrapper-modal .fss-toggle-colors,.fss-wrapper-modal .fss-toggle-demos{box-shadow:0 -5px 20px 5px rgba(0,0,0,.15)}.fss-wrapper-modal .fss-toggle-buy{box-shadow:0 10px 20px 5px rgba(0,0,0,.15)}.fss-wrapper-modal .fss-toggle-buy-icon,.fss-wrapper-modal .fss-toggle-demos-icon{position:relative;line-height:1;color:#33475b}.fss-wrapper-modal .fss-toggle-buy-text,.fss-wrapper-modal .fss-toggle-demos-text{font-size:12px;line-height:1;text-transform:none;color:#4a5259;font-weight:700;font-family:inherit;letter-spacing:normal}.fss-wrapper-modal .fss-toggle-demos svg{top:0;left:0;fill:#33475b}.fss-wrapper-modal .fss-toggle .fss-after{position:absolute;top:0;transform:translateX(60px)}.fss-wrapper-modal .fss-toggle-demos .fss-demos-close-icon{opacity:0;position:absolute;top:-2px;left:14px;font-size:0;line-height:32px;color:#33475b;transform:rotate(45deg)}.fss-wrapper-modal .fss-toggle-demos .fss-demos-close-icon.fss-after{position:absolute;transform:translateX(60px) rotate(45deg)}.fss-wrapper-modal .fss-toggle-buy{top:222px}.fss-wrapper-modal .fss-toggle-buy-icon{height:34px;font-size:1em;letter-spacing:normal;font-weight:700}.fss-wrapper-modal .fss-toggle-buy svg{left:0;fill:#33475b}.fss-wrapper-modal .fss-toggle-buy svg.fss-before{transform:translateX(0) scaleX(-1)}.fss-wrapper-modal .fss-toggle-buy svg.fss-after{transform:translateX(60px) scaleX(-1)}.fss-wrapper-modal .fss-content{opacity:0;overflow-y:auto;height:100%;scrollbar-color:#616970 #fff;scrollbar-width:thin}.fss-wrapper-modal .fss-content::-webkit-scrollbar{width:6px}.fss-wrapper{font-family:\'Open Sans\',Arial,Helvetica,sans-serif}.fss-wrapper a,.fss-wrapper button{outline:0}.fss-content{display:flex;font-weight:400;border-radius:3px}.fss-sidebar-content{top:0}.fss-wrapper .fss-main-logo{display:flex;justify-content:center;margin-bottom:1.6em}.fss-wrapper .fss-dot-com-link svg{width:50px;height:50px}.fss-wrapper .fss-social-icons{display:flex;justify-content:center;margin-top:1.6em}.fss-wrapper .fss-social-icon{display:inline-flex;align-items:center;justify-content:center;overflow:hidden;position:relative;margin:0 .4em;height:2.6em;width:2.6em;border-radius:50%;letter-spacing:normal}.fss-wrapper .fss-social-icon.fusion-icon-facebook{background-color:#3b5998}.fss-wrapper .fss-social-icon.fusion-icon-facebook:after,.fss-wrapper .fss-social-icon.fusion-icon-facebook:before{content:\"\\e604\"}.fss-wrapper .fss-social-icon.fusion-icon-twitter{background-color:#000}.fss-wrapper .fss-social-icon.fusion-icon-twitter:after,.fss-wrapper .fss-social-icon.fusion-icon-twitter:before{content:\"\\e90b\"}.fss-wrapper .fss-social-icon.fusion-icon-instagram{background-color:#3f729b}.fss-wrapper .fss-social-icon.fusion-icon-instagram:after,.fss-wrapper .fss-social-icon.fusion-icon-instagram:before{content:\"\\ea92\"}.fss-wrapper .fss-social-icon.fusion-icon-youtube{background-color:#cd201f}.fss-wrapper .fss-social-icon.fusion-icon-youtube:after,.fss-wrapper .fss-social-icon.fusion-icon-youtube:before{content:\"\\e622\"}.fss-wrapper .fss-social-icon:after,.fss-wrapper .fss-social-icon:before{font-family:awb-icons;color:#fff;font-size:1em}.fss-wrapper .fss-social-icon:before{transform:translateY(-35px)}.fss-wrapper .fss-social-icon:after{position:absolute}.fss-wrapper .fss-policies{margin-top:1.4em;line-height:1;text-align:center}.fss-wrapper .fss-policies a{color:inherit;font-weight:inherit;letter-spacing:normal}.fss-wrapper .fss-policy-sep{padding:0 .7em}.fss-filters-wrapper{top:30px}.fss-demo-tag-search-wrapper{display:flex;align-items:center;padding:0 17px;height:50px;background:#f9fafb;border-radius:10px;color:#93999f;border:none}.fss-demo-tag-search-wrapper .fss-demo-tag-search-icon{flex:1 0 1em;padding:0 .25em;box-sizing:content-box;fill:#93999f}.fss-demo-tag-search-wrapper .fss-demo-tag-search{margin:0;padding:0 .25em;width:100%;height:2em;font-size:1em;border:none;background-color:transparent;color:inherit;font-family:inherit;font-weight:inherit}.fss-filters-toggle{display:flex;align-items:center;justify-content:space-between;margin:1.6em 0 0 0;padding:0;width:100%;font-size:1.2em;color:inherit}.fss-toggle-icon{display:inline-block;position:relative;top:4px;margin:4px;padding:4px;border:solid #747474;border-width:0 2px 2px 0;transform:rotate(-135deg);-webkit-transform:rotate(-135deg)}.fss-filters-toggle{background-color:transparent;border:none;box-shadow:none}.fss-filters-cotainer{padding:0 0 1.6em 0;border-bottom:1px solid}.fss-filters{list-style:none;margin:1em 0 0 0;padding:0}.fss-filters>li{margin-bottom:.1em}.fss-filter{display:flex;align-items:center;justify-content:space-between;padding:1em;text-decoration:none;font-size:1em;line-height:1.2em;border-radius:.66em;font-family:inherit;color:inherit;font-weight:inherit;outline:0}.fss-filter .fss-filter-label{margin:0;line-height:1.3;color:inherit}.fss-filter .fss-count{opacity:.6;font-weight:700;color:inherit}.fss-filter{position:relative}.fss-filter input{position:absolute;opacity:0;margin:0;height:0;width:0}.fss-demo-grid{display:-ms-grid;display:grid;align-content:start;justify-content:start;flex:1}.fss-demo-grid .fss-demo{opacity:1}.fss-demo-grid .fss-demo-thumb{position:relative;background-color:rgba(101,188,123,.5)}.fss-demo-grid .fss-demo-thumb:before{z-index:0;content:\"\\e971\";position:absolute;top:50%;left:50%;font-family:awb-icons;font-size:3em;color:#fff;text-shadow:1px 0 5px rgba(0,0,0,.3);transform:translate(-50%,-50%)}.fss-demo-grid .fss-demo-thumb.fss-new-demo{position:relative}.fss-demo-grid .fss-demo-thumb.fss-new-demo:after{content:\"New\";z-index:1;position:absolute;top:0;left:0;margin-top:4%;padding:.2em .6em;color:#fff;font-size:.85em;letter-spacing:.25em;text-align:center;font-weight:700;text-transform:uppercase;font-family:inherit}.fss-demo-grid .fss-demo-thumb.fss-new-demo.fss-lazy-load:after{opacity:0;transform:translateY(40px)}.fss-demo-grid a,.fss-demo-grid img{display:inline-block}.fss-demo-grid img{position:relative;min-height:200px}@media only screen and (max-width:599px){.fss-wrapper.fss-wrapper-modal{display:none}}@media only screen and (max-width:799px){.fss-wrapper .fss-toggle-buy,.fss-wrapper .fss-toggle-demos{top:120px;width:50px;height:50px}.fss-wrapper .fss-toggle-buy{top:174px}.fss-wrapper .fss-toggle-buy svg{left:1.5px}.fss-wrapper .fss-toggle-buy-text,.fss-wrapper .fss-toggle-demos-text{display:none}}.fusion-tb-header{background-color:var(--awb_header_bg_color,transparent)}.clearfix{clear:both}.clearfix{clear:both}.clearfix:after,.clearfix:before{content:\" \";display:table}.clearfix:after{clear:both}.fusion-builder-row{width:100%;margin:0 auto}.fusion-builder-row:after{clear:both;content:\" \";display:table}.fusion-fullwidth{position:relative}.fusion-fullwidth .fusion-row{position:relative;z-index:10}.fusion-text-no-margin>p{margin-top:0}.fusion-text-no-margin>p:last-child{margin-bottom:0}.awb-background-pattern{position:absolute;top:0;left:0;z-index:6;min-height:100%;min-width:100%}.fusion-fullwidth{--awb-background-color:var(--full_width_bg_color);--awb-background-image:none;--awb-background-position:center center;--awb-background-size:auto;--awb-background-repeat:no-repeat;--awb-background-blend-mode:none;--awb-background-size:initial;--awb-box-shadow:none;--awb-border-sizes-top:var(--full_width_border_sizes_top);--awb-border-sizes-right:var(--full_width_border_sizes_right);--awb-border-sizes-bottom:var(--full_width_border_sizes_bottom);--awb-border-sizes-left:var(--full_width_border_sizes_left);--awb-border-color:var(--full_width_border_color);--awb-border-style:solid;--awb-border-radius-top-left:0;--awb-border-radius-top-right:0;--awb-border-radius-bottom-left:0;--awb-border-radius-bottom-right:0;--awb-padding-top:var(--container_padding_default_top,0px);--awb-padding-right:var(--container_padding_default_right,0px);--awb-padding-bottom:var(--container_padding_default_bottom,0px);--awb-padding-left:var(--container_padding_default_left,0px);--awb-margin-top:0;--awb-margin-bottom:0;--awb-min-height:0;--awb-overflow:visible;--awb-z-index:auto;--awb-filter:none;background-color:var(--awb-background-color);background-image:var(--awb-background-image);background-position:var(--awb-background-position);background-repeat:var(--awb-background-repeat);background-blend-mode:var(--awb-background-blend-mode);background-size:var(--awb-background-size);box-shadow:var(--awb-box-shadow);border-width:var(--awb-border-sizes-top) var(--awb-border-sizes-right) var(--awb-border-sizes-bottom) var(--awb-border-sizes-left);border-color:var(--awb-border-color);border-style:var(--awb-border-style);border-radius:var(--awb-border-radius-top-left) var(--awb-border-radius-top-right) var(--awb-border-radius-bottom-right) var(--awb-border-radius-bottom-left);padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);margin-top:var(--awb-margin-top);margin-bottom:var(--awb-margin-bottom);min-height:var(--awb-min-height);overflow:var(--awb-overflow);z-index:var(--awb-z-index);filter:var(--awb-filter)}.awb-off-canvas .fusion-fullwidth,.fusion-tb-header .fusion-fullwidth,.width-100 .fusion-fullwidth{--awb-padding-top:var(--container_padding_100_top,0px);--awb-padding-right:var(--container_padding_100_right,var(--hundredp_padding));--awb-padding-bottom:var(--container_padding_100_bottom,0px);--awb-padding-left:var(--container_padding_100_left,var(--hundredp_padding))}.fusion-fullwidth.fusion-animated{--awb-z-index:2000}.hundred-percent-fullwidth .fusion-row{max-width:none!important}#wrapper #main .fullwidth-box .fusion-row{padding-left:0;padding-right:0}.post-content:not(.fusion-post-content),body:not(.side-header) #wrapper{position:relative}.fusion-flex-container{--awb-content-wrap:var(--awb-flex-wrap,wrap);display:flex;justify-content:center}.fusion-flex-container .fusion-row{flex-wrap:wrap;display:flex;flex:1;width:100%}.fusion-flex-container .fusion-row:after,.fusion-flex-container .fusion-row:before{content:none}.fusion-flex-container .fusion-row.fusion-flex-content-wrap{flex-wrap:var(--awb-content-wrap)}.fusion-flex-container .fusion-row .fusion-flex-column{display:flex}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper{width:100%}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper:not(.fusion-flex-column-wrapper-legacy){display:flex}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper:not(.fusion-flex-column-wrapper-legacy).fusion-content-layout-column{flex-direction:column}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper:not(.fusion-flex-column-wrapper-legacy).fusion-content-layout-row{flex-direction:row;flex-wrap:wrap}.fusion-flex-container .fusion-flex-align-self-center{align-self:center}.fusion-flex-container .fusion-flex-align-items-flex-start{align-items:flex-start}.fusion-flex-container .fusion-flex-align-items-center{align-items:center}.fusion-flex-container .fusion-flex-justify-content-flex-start{justify-content:flex-start}.fusion-flex-container .fusion-flex-justify-content-center{justify-content:center}.fusion-flex-container .fusion-flex-justify-content-flex-end{justify-content:flex-end}.fusion-flex-container .fusion-flex-align-content-flex-start{align-content:flex-start}.fusion_builder_column{--awb-z-index:auto;--awb-absolute-top:auto;--awb-absolute-right:auto;--awb-absolute-bottom:auto;--awb-absolute-left:auto;--awb-container-position:relative;--awb-overflow:visible;--awb-bg-color:transparent;--awb-bg-position:left top;--awb-bg-image:none;--awb-bg-blend:none;--awb-bg-repeat:no-repeat;--awb-bg-size:auto auto;--awb-border-top:0;--awb-border-right:0;--awb-border-bottom:0;--awb-border-left:0;--awb-border-color:initial;--awb-border-style:solid;--awb-border-radius:0;--awb-box-shadow:none;--awb-padding-top:0;--awb-padding-right:0;--awb-padding-bottom:0;--awb-padding-left:0;--awb-transform:none;--awb-transform-origin:50% 50%;--awb-filter:none;--awb-col-width:var(--awb-width-large,33.3333%);--awb-col-order:var(--awb-order-large,0);--awb-margin-top-large:var(--col_margin-top,0);--awb-margin-bottom-large:var(--col_margin-bottom,20px);--awb-spacing-left-large:var(--col_spacing,4%);--awb-spacing-right-large:var(--col_spacing,4%);--awb-margin-top:var(--awb-margin-top-large);--awb-margin-bottom:var(--awb-margin-bottom-large);--awb-spacing-left:var(--awb-spacing-left-large);--awb-spacing-right:var(--awb-spacing-right-large);--awb-col-flex-grow:var(--awb-flex-grow,0);--awb-col-flex-shrink:var(--awb-flex-shrink,0)}.fusion_builder_column.fusion-animated{--awb-z-index:2000}.fusion-layout-column{position:var(--awb-container-position);float:left;margin-top:var(--awb-margin-top);margin-bottom:var(--awb-margin-bottom);z-index:var(--awb-z-index);top:var(--awb-absolute-top);right:var(--awb-absolute-right);bottom:var(--awb-absolute-bottom);left:var(--awb-absolute-left);filter:var(--awb-filter);width:var(--awb-col-width);order:var(--awb-col-order);flex-grow:var(--awb-col-flex-grow);flex-shrink:var(--awb-col-flex-shrink)}.fusion-layout-column .fusion-column-wrapper{background-image:var(--awb-bg-image);background-color:var(--awb-bg-color);background-position:var(--awb-bg-position);background-blend-mode:var(--awb-bg-blend);background-repeat:var(--awb-bg-repeat);background-size:var(--awb-bg-size);border-width:var(--awb-border-top) var(--awb-border-right) var(--awb-border-bottom) var(--awb-border-left);border-color:var(--awb-border-color);border-style:var(--awb-border-style);border-radius:var(--awb-border-radius);box-shadow:var(--awb-box-shadow);padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);overflow:var(--awb-overflow);transform:var(--awb-transform);transform-origin:var(--awb-transform-origin);min-height:1px;min-width:0;margin-left:var(--awb-spacing-left);margin-right:var(--awb-spacing-right)}.fusion-animated{visibility:hidden}.dont-animate .fusion-animated{visibility:visible}@media only screen and (max-width:1173px){.fusion-fullwidth{--awb-padding-top-medium:var(--awb-padding-top);--awb-padding-right-medium:var(--awb-padding-right);--awb-padding-bottom-medium:var(--awb-padding-bottom);--awb-padding-left-medium:var(--awb-padding-left);--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-min-height-medium:var(--awb-min-height);--awb-background-image-medium:var(--awb-background-image);--awb-background-color-medium:var(--awb-background-color);--awb-background-position-medium:var(--awb-background-position);--awb-background-repeat-medium:var(--awb-background-repeat);--awb-background-size-medium:var(--awb-background-size);--awb-background-blend-mode-medium:var(--awb-background-blend-mode);padding:var(--awb-padding-top-medium) var(--awb-padding-right-medium) var(--awb-padding-bottom-medium) var(--awb-padding-left-medium);margin-top:var(--awb-margin-top-medium);margin-bottom:var(--awb-margin-bottom-medium);min-height:var(--awb-min-height-medium);background-image:var(--awb-background-image-medium);background-color:var(--awb-background-color-medium);background-repeat:var(--awb-background-repeat-medium);background-position:var(--awb-background-position-medium);background-size:var(--awb-background-size-medium);background-blend-mode:var(--awb-background-blend-mode-medium)}.fusion-flex-container{--awb-content-wrap:var(--awb-flex-wrap-medium,var(--awb-flex-wrap))}.fusion-flex-container .fusion-flex-content-wrap{flex-wrap:var(--awb-content-wrap)}}@media only screen and (max-width:900px){.fusion-fullwidth{--awb-padding-top-small:var(--awb-padding-top-medium);--awb-padding-right-small:var(--awb-padding-right-medium);--awb-padding-bottom-small:var(--awb-padding-bottom-medium);--awb-padding-left-small:var(--awb-padding-left-medium);--awb-margin-top-small:var(--awb-margin-top-medium);--awb-margin-bottom-small:var(--awb-margin-bottom-medium);--awb-min-height-small:var(--awb-min-height-medium);--awb-background-image-small:var(--awb-background-image-medium);--awb-background-color-small:var(--awb-background-color-medium);--awb-background-repeat-small:var(--awb-background-repeat-medium);--awb-background-position-small:var(--awb-background-position-medium);--awb-background-size-small:var(--awb-background-size-medium);--awb-background-blend-mode-small:var(--awb-background-blend-mode-medium);padding:var(--awb-padding-top-small) var(--awb-padding-right-small) var(--awb-padding-bottom-small) var(--awb-padding-left-small);margin-top:var(--awb-margin-top-small);margin-bottom:var(--awb-margin-bottom-small);min-height:var(--awb-min-height-small);background-image:var(--awb-background-image-small);background-color:var(--awb-background-color-small);background-repeat:var(--awb-background-repeat-small);background-position:var(--awb-background-position-small);background-size:var(--awb-background-size-small);background-blend-mode:var(--awb-background-blend-mode-small)}.fusion-flex-container{--awb-content-wrap:var(--awb-flex-wrap-small,var(--awb-flex-wrap))}.fusion-flex-container .fusion-flex-content-wrap{flex-wrap:var(--awb-content-wrap)}}@media only screen and (max-width:1173px){.fontawesome-icon.fb-icon-element{--awb-md-align-self:var(--awb-align-self);align-self:var(--awb-md-align-self)}}@media only screen and (max-width:900px){.fontawesome-icon.fb-icon-element{--awb-sm-align-self:var(--awb-md-align-self);align-self:var(--awb-sm-align-self)}}@media only screen and (max-width:1173px){.fusion-gallery>.fusion-grid-column{width:var(--awb-columns-medium,50%)!important}}@media only screen and (max-width:900px){.fusion-gallery>.fusion-grid-column{width:var(--awb-columns-small,100%)!important}}@media only screen and (max-width:1173px){.fusion-image-element{--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-right-medium:var(--awb-margin-right);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-margin-left-medium:var(--awb-margin-left);margin-top:var(--awb-margin-top-medium);margin-right:var(--awb-margin-right-medium);margin-bottom:var(--awb-margin-bottom-medium);margin-left:var(--awb-margin-left-medium)}}@media only screen and (max-width:900px){.fusion-image-element{--awb-margin-top-small:var(--awb-margin-top-medium);--awb-margin-right-small:var(--awb-margin-right-medium);--awb-margin-bottom-small:var(--awb-margin-bottom-medium);--awb-margin-left-small:var(--awb-margin-left-medium);margin-top:var(--awb-margin-top-small);margin-right:var(--awb-margin-right-small);margin-bottom:var(--awb-margin-bottom-small);margin-left:var(--awb-margin-left-small)}}@media only screen and (max-width:1173px){.fusion-social-links{--awb-alignment-medium:var(--awb-alignment);--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-right-medium:var(--awb-margin-right);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-margin-left-medium:var(--awb-margin-left);margin-top:var(--awb-margin-top-medium);margin-right:var(--awb-margin-right-medium);margin-bottom:var(--awb-margin-bottom-medium);margin-left:var(--awb-margin-left-medium);text-align:var(--awb-alignment-medium)}}@media only screen and (max-width:900px){.fusion-social-links{--awb-alignment-small:var(--awb-alignment-medium);--awb-margin-top-small:var(--awb-margin-top);--awb-margin-right-small:var(--awb-margin-right);--awb-margin-bottom-small:var(--awb-margin-bottom);--awb-margin-left-small:var(--awb-margin-left);margin-top:var(--awb-margin-top-small);margin-right:var(--awb-margin-right-small);margin-bottom:var(--awb-margin-bottom-small);margin-left:var(--awb-margin-left-small);text-align:var(--awb-alignment-small)}}@media only screen and (max-width:1173px){.fusion-title{--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-right-medium:var(--awb-margin-right);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-margin-left-medium:var(--awb-margin-left);margin-top:var(--awb-margin-top-medium)!important;margin-right:var(--awb-margin-right-medium)!important;margin-bottom:var(--awb-margin-bottom-medium)!important;margin-left:var(--awb-margin-left-medium)!important}}@media only screen and (max-width:900px){.fusion-title{--awb-margin-top-small:var(--title_margin_mobile-top,var(--awb-margin-top-medium));--awb-margin-right-small:var(--title_margin_mobile-right,var(--awb-margin-right-medium));--awb-margin-bottom-small:var(--title_margin_mobile-bottom,var(--awb-margin-bottom-medium));--awb-margin-left-small:var(--title_margin_mobile-left,var(--awb-margin-left-medium));margin-top:var(--awb-margin-top-small)!important;margin-right:var(--awb-margin-right-small)!important;margin-bottom:var(--awb-margin-bottom-small)!important;margin-left:var(--awb-margin-left-small)!important}}@media only screen and (max-width:1173px){.fusion-gallery>.fusion-grid-column{width:var(--awb-columns-medium,50%)!important}}@media only screen and (max-width:900px){.fusion-gallery>.fusion-grid-column{width:var(--awb-columns-small,100%)!important}}@media only screen and (max-width:1173px){.fusion_builder_column{--awb-padding-top-medium:var(--awb-padding-top);--awb-padding-right-medium:var(--awb-padding-right);--awb-padding-bottom-medium:var(--awb-padding-bottom);--awb-padding-left-medium:var(--awb-padding-left);--awb-col-width:var(--awb-width-medium,var(--medium-col-default));--awb-col-order:var(--awb-order-medium,var(--awb-order-large));--awb-margin-top-medium:var(--awb-margin-top-large,var(--col_margin-top,0));--awb-margin-bottom-medium:var(--awb-margin-bottom-large,var(--col_margin-bottom,20px));--awb-spacing-left-medium:var(--awb-spacing-left-large,4%);--awb-spacing-right-medium:var(--awb-spacing-right-large,4%);--awb-col-flex-grow:var(--awb-flex-grow-medium,var(--awb-flex-grow,0));--awb-col-flex-shrink:var(--awb-flex-shrink-medium,var(--awb-flex-shrink,0));--awb-margin-top:var(--awb-margin-top-medium);--awb-margin-bottom:var(--awb-margin-bottom-medium);--awb-spacing-left:var(--awb-spacing-left-medium);--awb-spacing-right:var(--awb-spacing-right-medium);--awb-bg-image-medium:var(--awb-bg-image);--awb-bg-color-medium:var(--awb-bg-color);--awb-bg-repeat-medium:var(--awb-bg-repeat);--awb-bg-position-medium:var(--awb-bg-position);--awb-bg-size-medium:var(--awb-bg-size);--awb-bg-blend-medium:var(--awb-bg-blend)}.fusion_builder_column .fusion-column-wrapper{padding:var(--awb-padding-top-medium) var(--awb-padding-right-medium) var(--awb-padding-bottom-medium) var(--awb-padding-left-medium);background-image:var(--awb-bg-image-medium);background-color:var(--awb-bg-color-medium);background-repeat:var(--awb-bg-repeat-medium);background-position:var(--awb-bg-position-medium);background-size:var(--awb-bg-size-medium);background-blend-mode:var(--awb-bg-blend-medium)}}@media only screen and (max-width:900px){.fusion_builder_column{--awb-padding-top-small:var(--awb-padding-top-medium);--awb-padding-right-small:var(--awb-padding-right-medium);--awb-padding-bottom-small:var(--awb-padding-bottom-medium);--awb-padding-left-small:var(--awb-padding-left-medium);--awb-col-width:var(--awb-width-small,var(--small-col-default));--awb-col-order:var(--awb-order-small,var(--awb-order-medium));--awb-spacing-left-small:var(--awb-spacing-left-large,4%);--awb-spacing-right-small:var(--awb-spacing-right-large,4%);--awb-margin-top-small:var(--awb-margin-top-medium,var(--awb-margin-top-large,var(--col_margin-top,0)));--awb-margin-bottom-small:var(--awb-margin-bottom-medium,var(--awb-margin-bottom-large,var(--col_margin-bottom,20px)));--awb-spacing-left:var(--awb-spacing-left-small);--awb-spacing-right:var(--awb-spacing-right-small);--awb-margin-top:var(--awb-margin-top-small);--awb-margin-bottom:var(--awb-margin-bottom-small);--awb-bg-image-small:var(--awb-bg-image-medium);--awb-bg-color-small:var(--awb-bg-color-medium);--awb-bg-repeat-small:var(--awb-bg-repeat-medium);--awb-bg-position-small:var(--awb-bg-position-medium);--awb-bg-size-small:var(--awb-bg-size-medium);--awb-bg-blend-small:var(--awb-bg-blend-medium);--awb-col-flex-grow:var(--awb-flex-grow-small,var(--awb-flex-grow,0));--awb-col-flex-shrink:var(--awb-flex-shrink-small,var(--awb-flex-shrink,0))}.fusion_builder_column .fusion-column-wrapper{padding:var(--awb-padding-top-small) var(--awb-padding-right-small) var(--awb-padding-bottom-small) var(--awb-padding-left-small);background-image:var(--awb-bg-image-small);background-color:var(--awb-bg-color-small);background-repeat:var(--awb-bg-repeat-small);background-position:var(--awb-bg-position-small);background-size:var(--awb-bg-size-small);background-blend-mode:var(--awb-bg-blend-small)}}@media only screen and (max-width:712px){.fusion-grid-column{width:var(--awb-columns-small,100%)!important}}@media only screen and (min-width:712px) and (max-width:784px){.fusion-grid-4 .fusion-grid-column{width:50%!important}}@media only screen and (min-width:784px) and (max-width:856px){.fusion-grid-4 .fusion-grid-column{width:50%!important}}@media only screen and (min-width:856px) and (max-width:928px){.fusion-grid-4 .fusion-grid-column{width:33.33333333%!important}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait){.fusion-grid-4 .fusion-grid-column{width:var(--awb-columns-medium,50%)!important}#wrapper{width:auto!important}.fullwidth-box{background-attachment:scroll!important}#toTop{bottom:30px;border-radius:4px;height:40px}#toTop:before{line-height:38px}.no-mobile-totop .to-top-container{display:none}#main,.fullwidth-box,body{background-attachment:scroll!important}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){.fullwidth-box{background-attachment:scroll!important}#main,.fullwidth-box,body{background-attachment:scroll!important}}@media only screen and (max-width:800px){.fusion-layout-column{margin-left:0!important;margin-right:0!important}#wrapper{width:auto!important}.fusion-social-networks:after{content:\"\";display:block;clear:both}#content.full-width{margin-bottom:0}.fullwidth-box{background-attachment:scroll!important}#toTop{bottom:30px;border-radius:4px;height:44px;width:44px}#toTop:before{line-height:42px}.to-top-container #toTop{border-radius:var(--totop_border_radius)}.no-mobile-totop .to-top-container{display:none}}@media only screen and (max-width:800px){#content{width:100%!important;margin-left:0!important}#main>.fusion-row{display:flex;flex-wrap:wrap}}@media only screen and (max-width:640px){#main,body{background-attachment:scroll!important}#content{width:100%!important;margin-left:0!important}}@media only screen and (max-device-width:640px){#wrapper{width:auto!important}.fullwidth-box{background-attachment:scroll!important}.title{margin-top:0;margin-bottom:20px}#content{width:100%!important;float:none!important;margin-left:0!important;margin-bottom:50px}#content.full-width{margin-bottom:0}}@media only screen and (max-width:1173px){.awb-off-canvas-wrap{--awb-width-medium:var(--awb-width);--awb-height-medium:var(--awb-height)}.awb-off-canvas-wrap .awb-off-canvas{width:var(--awb-width-medium);height:var(--awb-height-medium)}}@media only screen and (max-width:900px){.awb-off-canvas-wrap{--awb-width-small:var(--awb-width-medium);--awb-height-small:var(--awb-height-medium)}.awb-off-canvas-wrap .awb-off-canvas{width:var(--awb-width-small);height:var(--awb-height-small)}}.fusion-builder-row.fusion-row{max-width:var(--site_width)}}","@media all{@font-face{font-family:Dance;src:url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.eot?8aad4q\');src:url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.eot?8aad4q#iefix\') format(\'embedded-opentype\'),url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.ttf?8aad4q\') format(\'truetype\'),url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.woff?8aad4q\') format(\'woff\'),url(\'https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.svg?8aad4q#Dance\') format(\'svg\');font-weight:400;font-style:normal;font-display:swap}[class*=\" icon-dance-\"],[class^=icon-dance-]{font-family:Dance!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-dance-times:before{content:\"\\e908\"}.icon-dance-bars:before{content:\"\\e909\"}.icon-dance-menu:before{content:\"\\e906\"}.icon-dance-adress:before{content:\"\\e900\"}.icon-dance-arrow:before{content:\"\\e901\"}.icon-dance-phone:before{content:\"\\e902\"}.icon-dance-time:before{content:\"\\e904\"}[class*=\" awb-icon-\"],[class^=awb-icon-]{font-family:awb-icons!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.awb-icon-twitter:before{content:\"\\e90b\"}.awb-icon-facebook:before{content:\"\\e604\"}.awb-icon-youtube:before{content:\"\\e622\"}.awb-icon-instagram:before{content:\"\\ea92\"}.awb-icon-close:before{content:\"\\e904\"}.awb-icon-exclamation-triangle:before{content:\"\\f071\"}.awb-icon-check-circle:before{content:\"\\f058\"}.fusion-form .form-submission-notices .fusion-form-response{display:none}*{box-sizing:border-box}input[type=text]{-webkit-appearance:none;-webkit-border-radius:0}body{margin:0;min-width:320px;-webkit-text-size-adjust:100%;overflow-x:hidden;overflow-y:scroll;color:var(--body_typography-color);font-size:var(--body_typography-font-size,16px);font-family:var(--body_typography-font-family,inherit)}#boxed-wrapper{overflow-x:hidden;overflow-x:clip}#wrapper{overflow:visible}img{border-style:none;vertical-align:top;max-width:100%;height:auto}a{text-decoration:none}input{font-family:var(--body_typography-font-family,inherit);vertical-align:middle;color:var(--body_typography-color)}#main{padding:55px 10px 45px;clear:both}#content{width:71.1702128%;float:left;min-height:1px}#content.full-width{width:100%}input[type=text]{border:1px solid #d2d2d2;font-size:13px;color:#747474;padding:8px 15px;width:100%;box-sizing:border-box}.post-content p{margin:0 0 20px}.fontawesome-icon{display:inline-block;float:left}.fontawesome-icon{margin-right:10px}.fusion-animated{position:relative;z-index:2000}.layout-wide-mode #wrapper{width:100%;max-width:none}#sliders-container{position:relative}.fusion-row{margin:0 auto}.fusion-row:after,.fusion-row:before{content:\" \";display:table}.fusion-row:after{clear:both}strong{font-weight:bolder}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.post-content p{margin-top:0;margin-bottom:20px}.rich-snippet-hidden{display:none}.fusion-page-load-link{display:none}.fusion-disable-outline input{outline:0}html:not(.avada-html-layout-boxed):not(.avada-html-layout-framed),html:not(.avada-html-layout-boxed):not(.avada-html-layout-framed) body{background-color:var(--bg_color);background-blend-mode:var(--bg-color-overlay)}body{background-image:var(--bg_image);background-repeat:var(--bg_repeat)}#main,.layout-wide-mode #main,.layout-wide-mode #wrapper,body,html{background-color:var(--content_bg_color)}#main{background-image:var(--content_bg_image);background-repeat:var(--content_bg_repeat)}#toTop{background-color:var(--totop_background);border-radius:4px 4px 0 0;bottom:0;height:35px;position:fixed;text-align:center;width:48px;opacity:0;z-index:100000;line-height:1}#toTop:before{line-height:35px;content:\"\\f106\";-webkit-font-smoothing:antialiased;font-family:awb-icons;font-size:22px;color:var(--totop_icon_color)}.to-top-container #toTop{border-radius:var(--totop_border_radius) var(--totop_border_radius) 0 0}.to-top-floating #toTop{bottom:30px;height:44px;width:44px;border-radius:var(--totop_border_radius) var(--totop_border_radius) var(--totop_border_radius) var(--totop_border_radius)}.to-top-floating #toTop:before{line-height:42px}.to-top-right #toTop{right:75px}input[type=text]{height:var(--form_input_height);padding-top:0;padding-bottom:0}input[type=text]{background-color:var(--form_bg_color);font-size:var(--form_text_size);color:var(--form_text_color)}input::-moz-placeholder{color:var(--form_text_color)}input::-webkit-input-placeholder{color:var(--form_text_color)}input[type=text]{border-width:var(--form_border_width-top) var(--form_border_width-right) var(--form_border_width-bottom) var(--form_border_width-left);border-color:var(--form_border_color);border-radius:var(--form_border_radius)}#main .fusion-row{max-width:var(--site_width)}html:not(.avada-has-site-width-percent) #main{padding-left:30px;padding-right:30px}html:not(.avada-has-site-width-percent) #main.width-100{padding-left:var(--hundredp_padding-fallback_to_zero);padding-right:var(--hundredp_padding-fallback_to_zero)}.width-100 .fusion-fullwidth,.width-100 .nonhundred-percent-fullwidth{margin-left:var(--hundredp_padding-hundred_percent_negative_margin);margin-right:var(--hundredp_padding-hundred_percent_negative_margin)}body.awb-no-sidebars #content{width:100%;float:none}#main{padding-left:30px;padding-right:30px;padding-top:var(--main_padding-top);padding-bottom:var(--main_padding-bottom)}#main.width-100{padding-left:var(--hundredp_padding-fallback_to_zero);padding-right:var(--hundredp_padding-fallback_to_zero)}html.avada-is-100-percent-template #main{padding-left:0;padding-right:0}html.avada-is-100-percent-template #main.width-100{padding-left:var(--hundredp_padding-fallback_to_zero);padding-right:var(--hundredp_padding-fallback_to_zero)}.layout-wide-mode #wrapper{width:100%;max-width:none}body{font-family:var(--body_typography-font-family);font-weight:var(--body_typography-font-weight);letter-spacing:var(--body_typography-letter-spacing);font-style:var(--body_typography-font-style,normal)}.fusion-alert,body{font-size:var(--body_typography-font-size)}body{line-height:var(--body_typography-line-height)}body{color:var(--body_typography-color)}body a,body a:after,body a:before{color:var(--link_color)}.fusion-title h1,.post-content h1,h1{font-family:var(--h1_typography-font-family);font-weight:var(--h1_typography-font-weight);line-height:var(--h1_typography-line-height);letter-spacing:var(--h1_typography-letter-spacing);text-transform:var(--h1_typography-text-transform);font-style:var(--h1_typography-font-style,normal)}.post-content h1,h1{font-size:var(--h1_typography-font-size)}.post-content h1,.title h1,h1{color:var(--h1_typography-color)}h1{margin-top:var(--h1_typography-margin-top);margin-bottom:var(--h1_typography-margin-bottom)}.post-content h2,h2{font-family:var(--h2_typography-font-family);font-weight:var(--h2_typography-font-weight);line-height:var(--h2_typography-line-height);letter-spacing:var(--h2_typography-letter-spacing);text-transform:var(--h2_typography-text-transform);font-style:var(--h2_typography-font-style,normal)}.post-content h2,h2{font-size:var(--h2_typography-font-size)}h2{color:var(--h2_typography-color)}.fusion-title-size-two,h2{margin-top:var(--h2_typography-margin-top);margin-bottom:var(--h2_typography-margin-bottom)}h3{font-family:var(--h3_typography-font-family);font-weight:var(--h3_typography-font-weight);line-height:var(--h3_typography-line-height);letter-spacing:var(--h3_typography-letter-spacing);text-transform:var(--h3_typography-text-transform);font-style:var(--h3_typography-font-style,normal)}h3{font-size:var(--h3_typography-font-size)}h3{color:var(--h3_typography-color)}h3{margin-top:var(--h3_typography-margin-top);margin-bottom:var(--h3_typography-margin-bottom)}.awb-off-canvas-wrap{--awb-horizontal-position:center;--awb-vertical-position:center;--awb-overlay-background-color:rgba(0,0,0,0.8);--awb-overlay-background-image:none;--awb-overlay-background-repeat:repeat;--awb-overlay-background-size:auto;--awb-overlay-background-position:left top;--awb-overlay-background-blend-mode:none;--awb-width:800px;--awb-height:auto;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;--awb-background-color:#fff;--awb-background-image:none;--awb-background-repeat:repeat;--awb-background-size:auto;--awb-background-position:left top;--awb-background-blend-mode:none;--awb-padding-top:0;--awb-padding-right:0;--awb-padding-bottom:0;--awb-padding-left:0;--awb-content-layout:column;--awb-align-content:flex-start;--awb-content-wrap:wrap;--awb-close-button-color:var(--body_typography-color);--awb-close-icon-size:var(--body_typography-font-size);--awb-border-top-width:0;--awb-border-right-width:0;--awb-border-bottom-width:0;--awb-border-left-width:0;--awb-border-color:inherit;--awb-border-top-left-radius:0;--awb-border-top-right-radius:0;--awb-border-bottom-right-radius:0;--awb-border-bottom-left-radius:0;--awb-box-shadow:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:var(--awb-overlay-background-color);display:flex;justify-content:var(--awb-horizontal-position);align-items:var(--awb-vertical-position);opacity:0;visibility:hidden;z-index:-1}.awb-off-canvas-wrap:not(.overlay-disabled){background-image:var(--awb-overlay-background-image);background-repeat:var(--awb-overlay-background-repeat);background-position:var(--awb-overlay-background-position);background-size:var(--awb-overlay-background-size);background-blend-mode:var(--awb-overlay-background-blend-mode)}.awb-off-canvas-wrap.type-sliding-bar{--awb-width:400px;--awb-vertical-position:flex-end}.awb-off-canvas-wrap .awb-off-canvas{position:relative;width:var(--awb-width);height:var(--awb-height);max-width:100vw;max-height:100vh;outline:0;margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left)}.awb-off-canvas-wrap .awb-off-canvas .off-canvas-close{margin:var(--awb-close-button-margin-top,20px) var(--awb-close-button-margin-right,0) var(--awb-close-button-margin-bottom,0) var(--awb-close-button-margin-left,0);color:var(--awb-close-button-color);font-size:var(--awb-close-icon-size);background-color:transparent;border:none;position:absolute;top:0;right:0;z-index:20}.awb-off-canvas-wrap .awb-off-canvas .off-canvas-close.close-position-right{margin-right:var(--awb-close-button-margin-right,20px)}.awb-off-canvas-wrap .awb-off-canvas-inner{background-color:var(--awb-background-color);background-image:var(--awb-background-image);background-repeat:var(--awb-background-repeat);background-position:var(--awb-background-position);background-size:var(--awb-background-size);background-blend-mode:var(--awb-background-blend-mode);border-style:solid;border-top-width:var(--awb-border-top-width);border-right-width:var(--awb-border-right-width);border-bottom-width:var(--awb-border-bottom-width);border-left-width:var(--awb-border-left-width);border-top-left-radius:var(--awb-border-top-left-radius);border-top-right-radius:var(--awb-border-top-right-radius);border-bottom-left-radius:var(--awb-border-bottom-left-radius);border-bottom-right-radius:var(--awb-border-bottom-right-radius);border-color:var(--awb-border-color);box-shadow:var(--awb-box-shadow);position:relative;width:100%;height:100%;max-height:100vh;max-width:100vw;display:flex;align-items:flex-start;overflow:hidden;z-index:10}.awb-off-canvas-wrap .awb-off-canvas-inner .off-canvas-content{width:100%;height:100%;max-width:100vw;max-height:100vh;padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);display:flex;flex-direction:var(--awb-content-layout);flex-wrap:var(--awb-content-wrap);justify-content:var(--awb-align-content);position:relative;overflow-x:hidden;overflow-y:auto}.awb-off-canvas-wrap .awb-off-canvas-inner.content-layout-column .off-canvas-content{flex-wrap:nowrap}.fusion-alert:not(.fusion-live-alert) .close{display:inline}.fontawesome-icon{color:var(--icon_color)}:root{--awb-color1:#ffffff;--awb-color1-h:0;--awb-color1-s:0%;--awb-color1-l:100%;--awb-color1-a:100%;--awb-color2:#f9f9fb;--awb-color2-h:240;--awb-color2-s:20%;--awb-color2-l:98%;--awb-color2-a:100%;--awb-color3:#e6e2f5;--awb-color3-h:253;--awb-color3-s:49%;--awb-color3-l:92%;--awb-color3-a:100%;--awb-color4:#65bd7d;--awb-color4-h:136;--awb-color4-s:40%;--awb-color4-l:57%;--awb-color4-a:100%;--awb-color5:#648ad6;--awb-color5-h:220;--awb-color5-s:58%;--awb-color5-l:62%;--awb-color5-a:100%;--awb-color6:#434549;--awb-color6-h:220;--awb-color6-s:4%;--awb-color6-l:27%;--awb-color6-a:100%;--awb-color7:#212326;--awb-color7-h:216;--awb-color7-s:7%;--awb-color7-l:14%;--awb-color7-a:100%;--awb-color8:#050505;--awb-color8-h:0;--awb-color8-s:0%;--awb-color8-l:2%;--awb-color8-a:100%;--awb-typography1-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography1-font-size:73px;--awb-typography1-font-weight:600;--awb-typography1-font-style:normal;--awb-typography1-line-height:1.2;--awb-typography1-letter-spacing:-2%;--awb-typography1-text-transform:capitalize;--awb-typography2-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography2-font-size:20px;--awb-typography2-font-weight:400;--awb-typography2-font-style:normal;--awb-typography2-line-height:26px;--awb-typography2-letter-spacing:-2%;--awb-typography2-text-transform:none;--awb-typography3-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography3-font-size:14px;--awb-typography3-font-weight:400;--awb-typography3-font-style:normal;--awb-typography3-line-height:18px;--awb-typography3-letter-spacing:0px;--awb-typography3-text-transform:none;--awb-typography4-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography4-font-size:15px;--awb-typography4-font-weight:400;--awb-typography4-font-style:normal;--awb-typography4-line-height:1.72;--awb-typography4-letter-spacing:0.015em;--awb-typography4-text-transform:none;--awb-typography5-font-family:Sora,Arial,Helvetica,sans-serif;--awb-typography5-font-size:13px;--awb-typography5-font-weight:400;--awb-typography5-font-style:normal;--awb-typography5-line-height:22px;--awb-typography5-letter-spacing:0px;--awb-typography5-text-transform:none;--site_width:1200px;--main_padding-top:0;--main_padding-bottom:-1px;--hundredp_padding:30px;--hundredp_padding-fallback_to_zero:30px;--hundredp_padding-hundred_percent_negative_margin:-30px;--bg_image:none;--bg_repeat:no-repeat;--bg_color:var(--awb-color3);--bg-color-overlay:normal;--content_bg_color:var(--awb-color1);--content_bg_image:none;--content_bg_repeat:no-repeat;--body_typography-font-family:var(--awb-typography4-font-family);--body_typography-font-size:var(--awb-typography4-font-size);--body_typography-font-weight:var(--awb-typography4-font-weight);--body_typography-font-style:var(--awb-typography4-font-style);--body_typography-line-height:var(--awb-typography4-line-height);--body_typography-letter-spacing:var(--awb-typography4-letter-spacing);--body_typography-color:var(--awb-color8);--link_color:var(--awb-color8);--h1_typography-font-family:var(--awb-typography1-font-family);--h1_typography-font-weight:var(--awb-typography1-font-weight);--h1_typography-line-height:var(--awb-typography1-line-height);--h1_typography-letter-spacing:var(--awb-typography1-letter-spacing);--h1_typography-font-style:var(--awb-typography1-font-style);--h1_typography-font-size:73px;--h1_typography-color:var(--awb-color8);--h1_typography-text-transform:var(--awb-typography1-text-transform);--h1_typography-margin-top:0.67em;--h1_typography-margin-bottom:0.67em;--h2_typography-font-family:var(--awb-typography1-font-family);--h2_typography-font-weight:var(--awb-typography1-font-weight);--h2_typography-line-height:var(--awb-typography1-line-height);--h2_typography-letter-spacing:var(--awb-typography1-letter-spacing);--h2_typography-font-style:var(--awb-typography1-font-style);--h2_typography-font-size:49px;--h2_typography-color:var(--awb-color8);--h2_typography-text-transform:var(--awb-typography1-text-transform);--h2_typography-margin-top:0em;--h2_typography-margin-bottom:1.1em;--h3_typography-font-family:var(--awb-typography1-font-family);--h3_typography-font-weight:var(--awb-typography1-font-weight);--h3_typography-line-height:var(--awb-typography1-line-height);--h3_typography-letter-spacing:var(--awb-typography1-letter-spacing);--h3_typography-font-style:var(--awb-typography1-font-style);--h3_typography-font-size:40px;--h3_typography-color:var(--awb-color8);--h3_typography-text-transform:var(--awb-typography1-text-transform);--h3_typography-margin-top:1em;--h3_typography-margin-bottom:1em;--form_input_height:50px;--form_text_size:15px;--form_bg_color:var(--awb-color1);--form_text_color:var(--awb-color8);--form_border_width-top:1px;--form_border_width-bottom:1px;--form_border_width-left:1px;--form_border_width-right:1px;--form_border_color:var(--awb-color3);--form_border_radius:6px;--danger_bg_color:rgba(219,75,104,0.1);--danger_accent_color:#db4b68;--success_bg_color:rgba(18,184,120,0.1);--success_accent_color:#12b878;--alert_border_size:1px;--button_padding-top:17px;--button_padding-bottom:17px;--button_padding-left:22px;--button_padding-right:22px;--button_typography-font-family:var(--awb-typography3-font-family);--button_typography-font-weight:var(--awb-typography3-font-weight);--button_typography-letter-spacing:var(--awb-typography3-letter-spacing);--button_typography-font-style:var(--awb-typography3-font-style);--button_font_size:var(--awb-typography3-font-size);--button_line_height:var(--awb-typography3-line-height);--button_text_transform:var(--awb-typography3-text-transform);--button_gradient_top_color:var(--awb-color1);--button_accent_color:var(--awb-color8);--button_border_width-top:0px;--button_border_width-right:0px;--button_border_width-bottom:0px;--button_border_width-left:0px;--button_border_color:var(--awb-color1);--col_margin-top:0px;--col_margin-bottom:20px;--col_spacing:4%;--container_padding_default_top:0px;--container_padding_default_bottom:0px;--container_padding_default_left:0px;--container_padding_default_right:0px;--container_padding_100_top:0px;--container_padding_100_bottom:0px;--container_padding_100_left:30px;--container_padding_100_right:30px;--full_width_bg_color:rgba(255,255,255,0);--full_width_border_sizes_top:0px;--full_width_border_sizes_bottom:0px;--full_width_border_sizes_left:0px;--full_width_border_sizes_right:0px;--full_width_border_color:var(--awb-color3);--icon_color:var(--awb-color1);--text_column_spacing:2em;--title_border_color:var(--awb-color3);--title_margin-top:10px;--title_margin-right:0px;--title_margin-bottom:15px;--title_margin-left:0px;--title_margin_mobile-top:10px;--title_margin_mobile-right:0px;--title_margin_mobile-bottom:10px;--title_margin_mobile-left:0px}#toTop{--totop_border_radius:0px;--totop_background:var(--awb-color7);--totop_icon_color:var(--awb-color1)}body{--awb-alert-border-top-left-radius-default:0px;--awb-alert-border-top-right-radius-default:0px;--awb-alert-border-bottom-right-radius-default:0px;--awb-alert-border-bottom-left-radius-default:0px;--button-border-radius-top-left:0;--button-border-radius-top-right:0;--button-border-radius-bottom-right:0;--button-border-radius-bottom-left:0}.fusion-social-links{--social_links_font_size:16}.fusion-tb-header{--awb_header_bg_color:var(--awb-color8)}@font-face{font-family:awb-icons;src:url(\"https://dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/icomoon/awb-icons.woff\") format(\'woff\'),url(\"https://dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/icomoon/awb-icons.ttf\") format(\'truetype\'),url(\"https://dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/icomoon/awb-icons.svg#awb-icons\") format(\'svg\');font-weight:400;font-style:normal;font-display:swap}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert-dismissable{padding-right:35px}.close{position:relative;top:-2px;opacity:.2;float:right;padding:0;background:0 0;border:0 none;font-size:21px;color:#000;font-weight:700;line-height:1}.fusion-alert{--awb-padding-top:25px;--awb-padding-right:25px;--awb-padding-bottom:25px;--awb-padding-left:25px;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:20px;--awb-margin-left:0;--awb-accent-color:inherit;--awb-background-color:transparent;--awb-border-size:var(--alert_border_size);--awb-border-top-left-radius:var(--awb-alert-border-top-left-radius-default,0);--awb-border-top-right-radius:var(--awb-alert-border-top-right-radius-default,0);--awb-border-bottom-right-radius:var(--awb-alert-border-bottom-right-radius-default,0);--awb-border-bottom-left-radius:var(--awb-alert-border-bottom-left-radius-default,0);display:flex;align-items:center;clear:both;position:relative;padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);margin:var(--awb-margin-top) var(--awb-margin-right) var(--awb-margin-bottom) var(--awb-margin-left);border-radius:0;text-shadow:none;color:var(--awb-accent-color);background:var(--awb-background-color);border-color:var(--awb-accent-color);border-width:var(--awb-border-size);border-top-left-radius:var(--awb-border-top-left-radius);border-top-right-radius:var(--awb-border-top-right-radius);border-bottom-right-radius:var(--awb-border-bottom-right-radius);border-bottom-left-radius:var(--awb-border-bottom-left-radius)}.fusion-alert .alert-icon,.fusion-alert .fusion-alert-content{color:var(--awb-accent-color)}.fusion-alert .fusion-alert-content-wrapper{flex:1;display:flex}.fusion-alert .alert-icon i{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fusion-alert.awb-alert-close-boxed .close{position:absolute;box-sizing:content-box;top:-1px;right:-1px;height:25px;width:25px;line-height:25px;opacity:1;border:1px solid;border-color:inherit;color:inherit;font-size:15px}.fusion-alert.fusion-alert-center{text-align:center}.fusion-alert.fusion-alert-center .fusion-alert-content-wrapper{justify-content:center}.fusion-alert.fusion-alert-center .close{border-top-width:0}.ltr .fusion-alert.fusion-alert-center .close{border-right-width:0}.fusion-alert.fusion-alert-center .alert-icon{margin-right:10px}.fusion-alert.alert-danger.error{--awb-background-color:var(--danger_bg_color);--awb-accent-color:var(--danger_accent_color)}.fusion-alert.alert-success.success{--awb-background-color:var(--success_bg_color);--awb-accent-color:var(--success_accent_color)}.button-default,.fusion-button,.fusion-button-default{--button_margin-top:0px;--button_margin-right:0px;--button_margin-bottom:0px;--button_margin-left:0px;display:inline-flex;justify-content:center;align-items:center;position:relative;text-decoration:none;box-sizing:border-box;font-family:var(--button_typography-font-family);font-weight:var(--button_typography-font-weight);font-style:var(--button_typography-font-style,normal);letter-spacing:var(--button_typography-letter-spacing);border-width:var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);border-style:solid;border-radius:var(--button-border-radius-top-left,0) var(--button-border-radius-top-right,0) var(--button-border-radius-bottom-right,0) var(--button-border-radius-bottom-left,0);text-transform:var(--button_text_transform);margin:var(--button_margin-top) var(--button_margin-right) var(--button_margin-bottom) var(--button_margin-left)}.fusion-body .fusion-button-default-size{padding-top:var(--button_padding-top,13px);padding-right:var(--button_padding-right,29px);padding-bottom:var(--button_padding-bottom,13px);padding-left:var(--button_padding-left,29px);line-height:var(--button_line_height,1);font-size:var(--button_font_size,14px)}.button-default,.fusion-button-default{background:var(--button_gradient_top_color);color:var(--button_accent_color);border-color:var(--button_border_color)}.button-default .fusion-button-text,.fusion-button-default .fusion-button-text{color:var(--button_accent_color)}.fusion-button.button-flat{box-shadow:none!important}.fusion-disable-outline .fusion-button{outline:0}.button-small{padding:9px 20px;line-height:14px;font-size:12px}.button-icon-left{margin-right:.7em}.button-icon-right{margin-left:.7em}.fusion-button-default-size{padding-top:var(--button_padding-top,13px);padding-right:var(--button_padding-right,29px);padding-bottom:var(--button_padding-bottom,13px);padding-left:var(--button_padding-left,29px);line-height:var(--button_line_height,1);font-size:var(--button_font_size,14px)}.fusion-button i{color:var(--button_accent_color)}.fusion-button-span-yes{width:calc(100% - var(--button_margin-left,0) - var(--button_margin-right,0))}.fontawesome-icon.fb-icon-element{--awb-iconcolor:var(--icon_color);--awb-font-size:inherit;--awb-height:auto;--awb-width:auto;--awb-line-height:inherit;--awb-margin-top:0;--awb-margin-right:10px;--awb-margin-bottom:0;--awb-margin-left:0;--awb-align-self:auto;color:var(--awb-iconcolor);font-size:var(--awb-font-size);margin:var(--awb-margin-top) var(--awb-margin-right) var(--awb-margin-bottom) var(--awb-margin-left);align-self:var(--awb-align-self)}.fontawesome-icon{display:inline-block;float:left;margin-right:10px}.fontawesome-icon.fusion-link:before{color:inherit}.fontawesome-icon.fusion-text-flow{float:none}.fusion-grid-3>.fusion-grid-column{width:calc(100% / 3)}.fusion-grid-4>.fusion-grid-column{width:25%}.fusion-gallery .fusion-gallery-column{padding:0;display:none}.fusion-gallery .fusion-gallery-column .fusion-gallery-image{overflow:hidden;opacity:1}.fusion-gallery .fusion-gallery-image{border:var(--awb-bordersize) solid var(--awb-bordercolor);border-radius:var(--awb-border-radius)}.fusion-gallery.has-aspect-ratio .fusion-gallery-image img{aspect-ratio:var(--awb-aspect-ratio);object-position:var(--awb-object-position);object-fit:cover;width:100%}.fusion-image-element{--awb-aspect-ratio:1/1;--awb-object-position:50% 50%;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;--awb-filter:none;--awb-max-width:100%;margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left);line-height:1}.fusion-imageframe{display:inline-block;z-index:1;overflow:hidden;position:relative;vertical-align:middle;max-width:var(--awb-max-width);line-height:1;filter:var(--awb-filter)}.fusion-imageframe img{vertical-align:top;box-shadow:none!important}.fusion-imageframe.has-aspect-ratio{position:relative}.fusion-imageframe.has-aspect-ratio img{aspect-ratio:var(--awb-aspect-ratio);object-position:var(--awb-object-position);object-fit:cover;width:100%}.awb-menu{--awb-font-size:16px;--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-justify-content:flex-start;--awb-fusion-font-family-typography:inherit;--awb-fusion-font-style-typography:inherit;--awb-fusion-font-weight-typography:400;--awb-text-transform:none;--awb-min-height:4em;--awb-gap:0px;--awb-bg:rgba(0,0,0,0);--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-left:0px;--awb-border-radius-bottom-right:0px;--awb-color:#212934;--awb-line-height:var(--body_typography-line-height);--awb-letter-spacing:var(--body_typography-letter-spacing);--awb-items-padding-top:0px;--awb-items-padding-right:0px;--awb-items-padding-bottom:0px;--awb-items-padding-left:0px;--awb-border-top:0px;--awb-border-right:0px;--awb-border-bottom:0px;--awb-border-left:0px;--awb-border-color:rgba(0,0,0,0);--awb-active-bg:rgba(0,0,0,0);--awb-active-border-top:0px;--awb-active-border-right:0px;--awb-active-border-bottom:0px;--awb-active-border-left:0px;--awb-active-border-color:rgba(0,0,0,0);--awb-active-color:#65bc7b;--awb-box-shadow:none}.awb-menu{margin-top:var(--awb-margin-top);margin-bottom:var(--awb-margin-bottom);width:100%;opacity:1;font-size:var(--awb-font-size)}.awb-menu .awb-menu__main-ul{font-size:var(--awb-font-size)}.awb-menu__main-ul{display:flex;flex-wrap:wrap;list-style:none;align-items:var(--awb-align-items);justify-content:var(--awb-justify-content);padding:0;font-family:var(--awb-fusion-font-family-typography);font-style:var(--awb-fusion-font-style-typography);font-weight:var(--awb-fusion-font-weight-typography);text-transform:var(--awb-text-transform);-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0;min-height:var(--awb-min-height);position:relative}.awb-menu__main-ul_row{flex-direction:row}.awb-menu__main-li{position:relative;display:flex;justify-content:center;margin-left:calc(var(--awb-gap)/ 2);margin-right:calc(var(--awb-gap)/ 2);line-height:var(--awb-line-height,inherit);letter-spacing:var(--awb-letter-spacing)}.awb-menu__main-li>*{z-index:10}.awb-menu__main-li:first-child{-webkit-margin-start:0;margin-inline-start:0}.awb-menu__main-li:last-child{-webkit-margin-end:0;margin-inline-end:0}.awb-menu__main-li_regular{background-color:var(--awb-bg);border-radius:var(--awb-border-radius-top-left) var(--awb-border-radius-top-right) var(--awb-border-radius-bottom-right) var(--awb-border-radius-bottom-left)}.awb-menu__main-a{color:var(--awb-color)!important;display:flex;align-items:center;justify-content:center;width:100%}.awb-menu__main-a_regular{padding-top:calc(var(--awb-items-padding-top) + var(--awb-border-top));padding-right:calc(var(--awb-items-padding-right) + var(--awb-border-right));padding-bottom:calc(var(--awb-items-padding-bottom) + var(--awb-border-bottom));padding-left:calc(var(--awb-items-padding-left) + var(--awb-border-left))}.awb-menu__main-background-active,.awb-menu__main-background-default{position:absolute;top:0;width:100%;height:100%;z-index:1;background-color:var(--awb-bg);border-top-width:var(--awb-border-top);border-right-width:var(--awb-border-right);border-bottom-width:var(--awb-border-bottom);border-left-width:var(--awb-border-left);border-color:var(--awb-border-color);border-radius:var(--awb-border-radius-top-left) var(--awb-border-radius-top-right) var(--awb-border-radius-bottom-right) var(--awb-border-radius-bottom-left);border-style:solid}.awb-menu__main-background-active_left,.awb-menu__main-background-default_left{left:0;opacity:1;width:100%}.awb-menu__main-background-active{background-color:var(--awb-active-bg);border-top-width:var(--awb-active-border-top);border-right-width:var(--awb-active-border-right);border-bottom-width:var(--awb-active-border-bottom);border-left-width:var(--awb-active-border-left);border-color:var(--awb-active-border-color)}.awb-menu__main-background-active_left{opacity:0}.awb-menu__main-background-active_left{width:0;left:0}.awb-menu__main-background-active_center-vertical{bottom:0;left:0;right:0;top:0;transform:scaleY(0)}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-a_regular{color:var(--awb-active-color)!important;padding-top:calc(var(--awb-items-padding-top) + var(--awb-active-border-top));padding-right:calc(var(--awb-items-padding-right) + var(--awb-active-border-right));padding-bottom:calc(var(--awb-items-padding-bottom) + var(--awb-active-border-bottom));padding-left:calc(var(--awb-items-padding-left) + var(--awb-active-border-left))}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-default_left{opacity:0}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-default_left{width:0}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-active_left{opacity:1}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-active_left{width:100%}.awb-menu__main-li_regular.current-menu-item .awb-menu__main-background-active_center-vertical{transform:scaleY(1)}.awb-menu_row .menu-text{display:flex;align-items:center;text-align:center}.awb-menu_icons-left .awb-menu__main-a{flex-direction:row}.awb-menu{--awb-main-justify-content:flex-start}.awb-menu__main-ul_column{flex-direction:column}.awb-menu__main-ul_column .awb-menu__main-li{margin:0 0 var(--awb-gap) 0;width:100%}.awb-menu__main-ul_column .awb-menu__main-li:last-child{margin-bottom:0}.awb-menu__main-ul_column .awb-menu__main-a{justify-content:var(--awb-main-justify-content)}.awb-menu_v-stacked .menu-item-has-children .awb-menu__sub-a{grid-area:link}.awb-menu_v-stacked .menu-item-has-children .awb-menu__open-nav-submenu_click{grid-area:caret}.awb-menu_v-stacked .menu-item-has-children .awb-menu__sub-ul{grid-area:submenu}.awb-menu{--awb-mobile-trigger-background-color:#fff;--awb-mobile-trigger-color:#4a4e57;--awb-trigger-padding-top:12px;--awb-trigger-padding-right:20px;--awb-trigger-padding-bottom:12px;--awb-trigger-padding-left:20px;--awb-mobile-trigger-font-size:1em}.awb-menu__m-toggle{background-color:var(--awb-mobile-trigger-background-color);color:var(--awb-mobile-trigger-color);padding-top:var(--awb-trigger-padding-top);padding-right:var(--awb-trigger-padding-right);padding-bottom:var(--awb-trigger-padding-bottom);padding-left:var(--awb-trigger-padding-left);box-sizing:content-box;font-family:var(--awb-fusion-font-family-typography);font-style:var(--awb-fusion-font-style-typography);font-weight:var(--awb-fusion-font-weight-typography);font-size:var(--awb-mobile-trigger-font-size);border:none!important;box-shadow:none!important;display:none}.awb-menu__m-toggle-inner{display:flex;justify-content:flex-start;align-items:center}.awb-menu__m-collapse-icon{position:relative;width:1em;height:1em;-webkit-margin-start:0.5em;margin-inline-start:.5em}.awb-menu__m-collapse-icon-close,.awb-menu__m-collapse-icon-open{width:1em;position:absolute;left:0;opacity:0;transform:rotate(0)}.awb-menu__m-collapse-icon-open{opacity:1}.awb-menu__m-collapse-icon-close_no-text,.awb-menu__m-collapse-icon-open_no-text{left:0}.awb-menu__m-collapse-icon_no-text{margin-left:0;margin-right:0}.fusion-separator{clear:both;position:relative;z-index:11}.fusion-absolute-separator{position:absolute;bottom:0}.fusion-absolute-separator.fusion-align-center{left:50%}.fusion-absolute-separator.fusion-align-center:not(.fusion-single-px){transform:translate(-50%,50%)}.fusion-body .fusion-separator{display:flex;align-items:center}.fusion-body .fusion-separator .fusion-separator-border{flex-grow:2;border:0 solid #e7e6e6}.fusion-body .fusion-separator,.fusion-body .fusion-separator-border{--awb-sep-color:transparent;--awb-height:20px}.fusion-body .fusion-separator-border.sep-single{height:auto;border-top-width:1px;border-bottom-width:0}.fusion-body .fusion-separator-border.sep-solid{border-bottom-style:solid;border-top-style:solid}.fusion-social-networks{overflow:hidden}.fusion-social-networks .fusion-social-networks-wrapper{margin:0 -10px}.fusion-social-networks .fusion-social-network-icon{display:inline-block;margin:0 10px 10px;font-size:16px;color:#46494a;text-decoration:none;box-shadow:none!important;line-height:1}.fusion-social-networks .fusion-social-network-icon:before{color:inherit}.fusion-social-links{--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;--awb-alignment:inherit;margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left);text-align:var(--awb-alignment)}.fusion-social-links .fusion-social-networks a{font-size:var(--social_links_font_size)}.fusion-social-links .fusion-social-networks .fusion-social-networks-wrapper{margin:-10px}.fusion-social-links .fusion-social-networks .fusion-social-networks-wrapper .fusion-social-network-icon{margin:10px}.fusion-text{--awb-content-alignment:initial;--awb-font-size:inherit;--awb-line-height:inherit;--awb-letter-spacing:inherit;--awb-text-transform:inherit;--awb-text-color:inherit;--awb-text-font-family:inherit;--awb-text-font-style:inherit;--awb-text-font-weight:inherit;--awb-column-spacing:var(--text_column_spacing,normal);--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;text-align:var(--awb-content-alignment);font-size:var(--awb-font-size);line-height:var(--awb-line-height);letter-spacing:var(--awb-letter-spacing);text-transform:var(--awb-text-transform);color:var(--awb-text-color);font-family:var(--awb-text-font-family);font-weight:var(--awb-text-font-weight);font-style:var(--awb-text-font-style);margin:var(--awb-margin-top) var(--awb-margin-right) var(--awb-margin-bottom) var(--awb-margin-left)}.fusion-body .fusion-title{--awb-text-color:var(--body_typography-color);--awb-margin-top:var(--title_margin-top);--awb-margin-right:var(--title_margin-right);--awb-margin-bottom:var(--title_margin-bottom);--awb-margin-left:var(--title_margin-left);--awb-sep-color:var(--title_border_color);--awb-font-size:var(--body_typography-font-size);margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left);display:flex;flex-wrap:nowrap;align-items:center;border-bottom-color:var(--awb-sep-color);font-size:var(--awb-font-size)}.fusion-body .fusion-title.fusion-title-size-one{--awb-font-size:var(--h1_typography-font-size);--awb-text-color:var(--h1_typography-color)}.fusion-body .fusion-title.fusion-title-size-two{--awb-font-size:var(--h2_typography-font-size);--awb-text-color:var(--h2_typography-color)}.fusion-body .fusion-title.fusion-title-center{text-align:center}.fusion-body .fusion-title.fusion-title-center.fusion-sep-none .title-heading-center{padding:0;text-align:center}.fusion-body .fusion-title.fusion-sep-none{display:block}.fusion-body #wrapper .fusion-title h1,.fusion-body #wrapper .fusion-title h2{flex-grow:0;padding:0;font-size:1em;color:var(--awb-text-color)}.fusion-post-cards{--awb-column-spacing:40px;--awb-row-spacing:40px;--awb-margin-top:0;--awb-margin-right:0;--awb-margin-bottom:0;--awb-margin-left:0;margin-top:var(--awb-margin-top);margin-right:var(--awb-margin-right);margin-bottom:var(--awb-margin-bottom);margin-left:var(--awb-margin-left)}.fusion-post-cards .fusion-grid{display:flex;flex-wrap:wrap;list-style:none;margin-bottom:0;padding:0;margin-right:calc(var(--awb-column-spacing)/ -2);margin-left:calc(var(--awb-column-spacing)/ -2);margin-top:calc(var(--awb-row-spacing)/ -2)}.fusion-post-cards .fusion-grid>li:last-child>.fusion-absolute-separator{display:none}.fusion-post-cards .fusion-grid>.fusion-grid-column{padding-right:calc(var(--awb-column-spacing)/ 2);padding-left:calc(var(--awb-column-spacing)/ 2);padding-top:calc(var(--awb-row-spacing)/ 2);padding-bottom:calc(var(--awb-row-spacing)/ 2)}.fusion-post-cards .fusion-grid-column{margin-bottom:0!important;margin-top:0}.fusion-body .fusion-meta-tb .fusion-meta-tb-sep{padding:0 5px}.fusion-body .fusion-meta-tb .fusion-meta-tb-sep:last-child{display:none}.fusion-body .fusion-meta-tb span{border:0 solid var(--awb-border-color)}.fss-wrapper-modal{z-index:1000000;position:fixed;right:0;top:0;padding:0;height:100vh;width:0}.fss-wrapper-modal .fss-toggle-buy,.fss-wrapper-modal .fss-toggle-colors,.fss-wrapper-modal .fss-toggle-demos{display:flex;flex-direction:column;align-items:center;justify-content:space-between;overflow:hidden;position:absolute;top:150px;right:15px;padding:8px 6px;width:66px;height:66px;background-color:#fff;border-radius:6px;box-shadow:0 0 25px 5px rgba(0,0,0,.2)}.fss-wrapper-modal .fss-toggle-colors{top:300px;height:28px}.fss-wrapper-modal .awb-color-select{display:none;position:fixed;z-index:999999999;overflow:scroll;top:32px;bottom:0;left:0;right:0;background:rgba(0,0,0,.8);color:#fff;padding:30px;-ms-overflow-style:none;scrollbar-width:none}.fss-wrapper-modal .awb-color-select::-webkit-scrollbar{display:none}.fss-wrapper-modal .awb-color-select .close-mixer{position:fixed;top:40px;right:40px;font-size:24px}.fss-wrapper-modal .awb-color-select ul{padding:0;margin:0;list-style:none;display:block;overflow:hidden}.fss-wrapper-modal .awb-color-select li{width:200px;float:left;margin:20px}.fss-wrapper-modal .awb-color-select li a strong{color:#fff!important;display:block}.fss-wrapper-modal .awb-color-select li a span{display:inline-flex;height:50px;width:calc(12.5%)}.fss-wrapper-modal .fss-toggle-colors,.fss-wrapper-modal .fss-toggle-demos{box-shadow:0 -5px 20px 5px rgba(0,0,0,.15)}.fss-wrapper-modal .fss-toggle-buy{box-shadow:0 10px 20px 5px rgba(0,0,0,.15)}.fss-wrapper-modal .fss-toggle-buy-icon,.fss-wrapper-modal .fss-toggle-demos-icon{position:relative;line-height:1;color:#33475b}.fss-wrapper-modal .fss-toggle-buy-text,.fss-wrapper-modal .fss-toggle-demos-text{font-size:12px;line-height:1;text-transform:none;color:#4a5259;font-weight:700;font-family:inherit;letter-spacing:normal}.fss-wrapper-modal .fss-toggle-demos svg{top:0;left:0;fill:#33475b}.fss-wrapper-modal .fss-toggle .fss-after{position:absolute;top:0;transform:translateX(60px)}.fss-wrapper-modal .fss-toggle-demos .fss-demos-close-icon{opacity:0;position:absolute;top:-2px;left:14px;font-size:0;line-height:32px;color:#33475b;transform:rotate(45deg)}.fss-wrapper-modal .fss-toggle-demos .fss-demos-close-icon.fss-after{position:absolute;transform:translateX(60px) rotate(45deg)}.fss-wrapper-modal .fss-toggle-buy{top:222px}.fss-wrapper-modal .fss-toggle-buy-icon{height:34px;font-size:1em;letter-spacing:normal;font-weight:700}.fss-wrapper-modal .fss-toggle-buy svg{left:0;fill:#33475b}.fss-wrapper-modal .fss-toggle-buy svg.fss-before{transform:translateX(0) scaleX(-1)}.fss-wrapper-modal .fss-toggle-buy svg.fss-after{transform:translateX(60px) scaleX(-1)}.fss-wrapper-modal .fss-content{opacity:0;overflow-y:auto;height:100%;scrollbar-color:#616970 #fff;scrollbar-width:thin}.fss-wrapper-modal .fss-content::-webkit-scrollbar{width:6px}.fss-wrapper{font-family:\'Open Sans\',Arial,Helvetica,sans-serif}.fss-wrapper a,.fss-wrapper button{outline:0}.fss-content{display:flex;font-weight:400;border-radius:3px}.fss-sidebar-content{top:0}.fss-wrapper .fss-main-logo{display:flex;justify-content:center;margin-bottom:1.6em}.fss-wrapper .fss-dot-com-link svg{width:50px;height:50px}.fss-filters-wrapper{top:30px}.fss-demo-tag-search-wrapper{display:flex;align-items:center;padding:0 17px;height:50px;background:#f9fafb;border-radius:10px;color:#93999f;border:none}.fss-demo-tag-search-wrapper .fss-demo-tag-search-icon{flex:1 0 1em;padding:0 .25em;box-sizing:content-box;fill:#93999f}.fss-demo-tag-search-wrapper .fss-demo-tag-search{margin:0;padding:0 .25em;width:100%;height:2em;font-size:1em;border:none;background-color:transparent;color:inherit;font-family:inherit;font-weight:inherit}.fss-filters-toggle{display:flex;align-items:center;justify-content:space-between;margin:1.6em 0 0 0;padding:0;width:100%;font-size:1.2em;color:inherit}.fss-toggle-icon{display:inline-block;position:relative;top:4px;margin:4px;padding:4px;border:solid #747474;border-width:0 2px 2px 0;transform:rotate(-135deg);-webkit-transform:rotate(-135deg)}.fss-filters-toggle{background-color:transparent;border:none;box-shadow:none}.fss-filters-cotainer{padding:0 0 1.6em 0;border-bottom:1px solid}.fss-filters{list-style:none;margin:1em 0 0 0;padding:0}.fss-filters>li{margin-bottom:.1em}.fss-filter{display:flex;align-items:center;justify-content:space-between;padding:1em;text-decoration:none;font-size:1em;line-height:1.2em;border-radius:.66em;font-family:inherit;color:inherit;font-weight:inherit;outline:0}.fss-filter .fss-filter-label{margin:0;line-height:1.3;color:inherit}.fss-filter .fss-count{opacity:.6;font-weight:700;color:inherit}.fss-filter{position:relative}.fss-filter input{position:absolute;opacity:0;margin:0;height:0;width:0}.fss-demo-grid{display:-ms-grid;display:grid;align-content:start;justify-content:start;flex:1}.fss-demo-grid .fss-demo{opacity:1}.fss-demo-grid .fss-demo-thumb{position:relative;background-color:rgba(101,188,123,.5)}.fss-demo-grid .fss-demo-thumb:before{z-index:0;content:\"\\e971\";position:absolute;top:50%;left:50%;font-family:awb-icons;font-size:3em;color:#fff;text-shadow:1px 0 5px rgba(0,0,0,.3);transform:translate(-50%,-50%)}.fss-demo-grid .fss-demo-thumb.fss-new-demo{position:relative}.fss-demo-grid .fss-demo-thumb.fss-new-demo:after{content:\"New\";z-index:1;position:absolute;top:0;left:0;margin-top:4%;padding:.2em .6em;color:#fff;font-size:.85em;letter-spacing:.25em;text-align:center;font-weight:700;text-transform:uppercase;font-family:inherit}.fss-demo-grid .fss-demo-thumb.fss-new-demo.fss-lazy-load:after{opacity:0;transform:translateY(40px)}.fss-demo-grid a,.fss-demo-grid img{display:inline-block}.fss-demo-grid img{position:relative;min-height:200px}@media only screen and (max-width:599px){.fss-wrapper.fss-wrapper-modal{display:none}}@media only screen and (max-width:799px){.fss-wrapper .fss-toggle-buy,.fss-wrapper .fss-toggle-demos{top:120px;width:50px;height:50px}.fss-wrapper .fss-toggle-buy{top:174px}.fss-wrapper .fss-toggle-buy svg{left:1.5px}.fss-wrapper .fss-toggle-buy-text,.fss-wrapper .fss-toggle-demos-text{display:none}}.fusion-tb-header{background-color:var(--awb_header_bg_color,transparent)}.clearfix{clear:both}.clearfix{clear:both}.clearfix:after,.clearfix:before{content:\" \";display:table}.clearfix:after{clear:both}.fusion-builder-row{width:100%;margin:0 auto}.fusion-builder-row:after{clear:both;content:\" \";display:table}.fusion-fullwidth{position:relative}.fusion-fullwidth .fusion-row{position:relative;z-index:10}.fusion-text-no-margin>p{margin-top:0}.fusion-text-no-margin>p:last-child{margin-bottom:0}.awb-background-pattern{position:absolute;top:0;left:0;z-index:6;min-height:100%;min-width:100%}.awb-background-slider{--awb-image-position:center;position:absolute;top:0;left:0;z-index:6;height:100%;width:100%;overflow:hidden}.awb-background-slider img{display:block;width:100%;height:100%;object-fit:cover;object-position:var(--awb-image-position)}.fusion-fullwidth{--awb-background-color:var(--full_width_bg_color);--awb-background-image:none;--awb-background-position:center center;--awb-background-size:auto;--awb-background-repeat:no-repeat;--awb-background-blend-mode:none;--awb-background-size:initial;--awb-box-shadow:none;--awb-border-sizes-top:var(--full_width_border_sizes_top);--awb-border-sizes-right:var(--full_width_border_sizes_right);--awb-border-sizes-bottom:var(--full_width_border_sizes_bottom);--awb-border-sizes-left:var(--full_width_border_sizes_left);--awb-border-color:var(--full_width_border_color);--awb-border-style:solid;--awb-border-radius-top-left:0;--awb-border-radius-top-right:0;--awb-border-radius-bottom-left:0;--awb-border-radius-bottom-right:0;--awb-padding-top:var(--container_padding_default_top,0px);--awb-padding-right:var(--container_padding_default_right,0px);--awb-padding-bottom:var(--container_padding_default_bottom,0px);--awb-padding-left:var(--container_padding_default_left,0px);--awb-margin-top:0;--awb-margin-bottom:0;--awb-min-height:0;--awb-overflow:visible;--awb-z-index:auto;--awb-filter:none;background-color:var(--awb-background-color);background-image:var(--awb-background-image);background-position:var(--awb-background-position);background-repeat:var(--awb-background-repeat);background-blend-mode:var(--awb-background-blend-mode);background-size:var(--awb-background-size);box-shadow:var(--awb-box-shadow);border-width:var(--awb-border-sizes-top) var(--awb-border-sizes-right) var(--awb-border-sizes-bottom) var(--awb-border-sizes-left);border-color:var(--awb-border-color);border-style:var(--awb-border-style);border-radius:var(--awb-border-radius-top-left) var(--awb-border-radius-top-right) var(--awb-border-radius-bottom-right) var(--awb-border-radius-bottom-left);padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);margin-top:var(--awb-margin-top);margin-bottom:var(--awb-margin-bottom);min-height:var(--awb-min-height);overflow:var(--awb-overflow);z-index:var(--awb-z-index);filter:var(--awb-filter)}.awb-off-canvas .fusion-fullwidth,.fusion-tb-header .fusion-fullwidth,.width-100 .fusion-fullwidth{--awb-padding-top:var(--container_padding_100_top,0px);--awb-padding-right:var(--container_padding_100_right,var(--hundredp_padding));--awb-padding-bottom:var(--container_padding_100_bottom,0px);--awb-padding-left:var(--container_padding_100_left,var(--hundredp_padding))}.fusion-fullwidth.fusion-animated{--awb-z-index:2000}.hundred-percent-fullwidth .fusion-row{max-width:none!important}#wrapper #main .fullwidth-box .fusion-row{padding-left:0;padding-right:0}.post-content:not(.fusion-post-content),body:not(.side-header) #wrapper{position:relative}.fusion-flex-container{--awb-content-wrap:var(--awb-flex-wrap,wrap);display:flex;justify-content:center}.fusion-flex-container .fusion-row{flex-wrap:wrap;display:flex;flex:1;width:100%}.fusion-flex-container .fusion-row:after,.fusion-flex-container .fusion-row:before{content:none}.fusion-flex-container .fusion-row.fusion-flex-content-wrap{flex-wrap:var(--awb-content-wrap)}.fusion-flex-container .fusion-row .fusion-flex-column{display:flex}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper{width:100%}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper:not(.fusion-flex-column-wrapper-legacy){display:flex}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper:not(.fusion-flex-column-wrapper-legacy).fusion-content-layout-column{flex-direction:column}.fusion-flex-container .fusion-row .fusion-flex-column .fusion-column-wrapper:not(.fusion-flex-column-wrapper-legacy).fusion-content-layout-row{flex-direction:row;flex-wrap:wrap}.fusion-flex-container .fusion-flex-align-self-center{align-self:center}.fusion-flex-container .fusion-flex-align-items-flex-start{align-items:flex-start}.fusion-flex-container .fusion-flex-align-items-center{align-items:center}.fusion-flex-container .fusion-flex-justify-content-flex-start{justify-content:flex-start}.fusion-flex-container .fusion-flex-justify-content-center{justify-content:center}.fusion-flex-container .fusion-flex-justify-content-flex-end{justify-content:flex-end}.fusion-flex-container .fusion-flex-align-content-flex-start{align-content:flex-start}.fusion_builder_column{--awb-z-index:auto;--awb-absolute-top:auto;--awb-absolute-right:auto;--awb-absolute-bottom:auto;--awb-absolute-left:auto;--awb-container-position:relative;--awb-overflow:visible;--awb-bg-color:transparent;--awb-bg-position:left top;--awb-bg-image:none;--awb-bg-blend:none;--awb-bg-repeat:no-repeat;--awb-bg-size:auto auto;--awb-border-top:0;--awb-border-right:0;--awb-border-bottom:0;--awb-border-left:0;--awb-border-color:initial;--awb-border-style:solid;--awb-border-radius:0;--awb-box-shadow:none;--awb-padding-top:0;--awb-padding-right:0;--awb-padding-bottom:0;--awb-padding-left:0;--awb-transform:none;--awb-transform-origin:50% 50%;--awb-filter:none;--awb-col-width:var(--awb-width-large,33.3333%);--awb-col-order:var(--awb-order-large,0);--awb-margin-top-large:var(--col_margin-top,0);--awb-margin-bottom-large:var(--col_margin-bottom,20px);--awb-spacing-left-large:var(--col_spacing,4%);--awb-spacing-right-large:var(--col_spacing,4%);--awb-margin-top:var(--awb-margin-top-large);--awb-margin-bottom:var(--awb-margin-bottom-large);--awb-spacing-left:var(--awb-spacing-left-large);--awb-spacing-right:var(--awb-spacing-right-large);--awb-col-flex-grow:var(--awb-flex-grow,0);--awb-col-flex-shrink:var(--awb-flex-shrink,0)}.fusion_builder_column.fusion-animated{--awb-z-index:2000}.fusion-post-cards .fusion_builder_column.post-card,.fusion-post-cards-grid-column.fusion_builder_column{--awb-spacing-left:0;--awb-spacing-right:0}.fusion-layout-column{position:var(--awb-container-position);float:left;margin-top:var(--awb-margin-top);margin-bottom:var(--awb-margin-bottom);z-index:var(--awb-z-index);top:var(--awb-absolute-top);right:var(--awb-absolute-right);bottom:var(--awb-absolute-bottom);left:var(--awb-absolute-left);filter:var(--awb-filter);width:var(--awb-col-width);order:var(--awb-col-order);flex-grow:var(--awb-col-flex-grow);flex-shrink:var(--awb-col-flex-shrink)}.fusion-layout-column .fusion-column-wrapper{background-image:var(--awb-bg-image);background-color:var(--awb-bg-color);background-position:var(--awb-bg-position);background-blend-mode:var(--awb-bg-blend);background-repeat:var(--awb-bg-repeat);background-size:var(--awb-bg-size);border-width:var(--awb-border-top) var(--awb-border-right) var(--awb-border-bottom) var(--awb-border-left);border-color:var(--awb-border-color);border-style:var(--awb-border-style);border-radius:var(--awb-border-radius);box-shadow:var(--awb-box-shadow);padding:var(--awb-padding-top) var(--awb-padding-right) var(--awb-padding-bottom) var(--awb-padding-left);overflow:var(--awb-overflow);transform:var(--awb-transform);transform-origin:var(--awb-transform-origin);min-height:1px;min-width:0;margin-left:var(--awb-spacing-left);margin-right:var(--awb-spacing-right)}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;box-sizing:content-box}.swiper-wrapper{transform:translate3d(0,0,0)}.swiper-slide{flex-shrink:0;width:100%;position:relative}.fusion-animated{visibility:hidden}@media only screen and (max-width:1173px){.fusion-fullwidth{--awb-padding-top-medium:var(--awb-padding-top);--awb-padding-right-medium:var(--awb-padding-right);--awb-padding-bottom-medium:var(--awb-padding-bottom);--awb-padding-left-medium:var(--awb-padding-left);--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-min-height-medium:var(--awb-min-height);--awb-background-image-medium:var(--awb-background-image);--awb-background-color-medium:var(--awb-background-color);--awb-background-position-medium:var(--awb-background-position);--awb-background-repeat-medium:var(--awb-background-repeat);--awb-background-size-medium:var(--awb-background-size);--awb-background-blend-mode-medium:var(--awb-background-blend-mode);padding:var(--awb-padding-top-medium) var(--awb-padding-right-medium) var(--awb-padding-bottom-medium) var(--awb-padding-left-medium);margin-top:var(--awb-margin-top-medium);margin-bottom:var(--awb-margin-bottom-medium);min-height:var(--awb-min-height-medium);background-image:var(--awb-background-image-medium);background-color:var(--awb-background-color-medium);background-repeat:var(--awb-background-repeat-medium);background-position:var(--awb-background-position-medium);background-size:var(--awb-background-size-medium);background-blend-mode:var(--awb-background-blend-mode-medium)}.fusion-flex-container{--awb-content-wrap:var(--awb-flex-wrap-medium,var(--awb-flex-wrap))}.fusion-flex-container .fusion-flex-content-wrap{flex-wrap:var(--awb-content-wrap)}}@media only screen and (max-width:900px){.fusion-fullwidth{--awb-padding-top-small:var(--awb-padding-top-medium);--awb-padding-right-small:var(--awb-padding-right-medium);--awb-padding-bottom-small:var(--awb-padding-bottom-medium);--awb-padding-left-small:var(--awb-padding-left-medium);--awb-margin-top-small:var(--awb-margin-top-medium);--awb-margin-bottom-small:var(--awb-margin-bottom-medium);--awb-min-height-small:var(--awb-min-height-medium);--awb-background-image-small:var(--awb-background-image-medium);--awb-background-color-small:var(--awb-background-color-medium);--awb-background-repeat-small:var(--awb-background-repeat-medium);--awb-background-position-small:var(--awb-background-position-medium);--awb-background-size-small:var(--awb-background-size-medium);--awb-background-blend-mode-small:var(--awb-background-blend-mode-medium);padding:var(--awb-padding-top-small) var(--awb-padding-right-small) var(--awb-padding-bottom-small) var(--awb-padding-left-small);margin-top:var(--awb-margin-top-small);margin-bottom:var(--awb-margin-bottom-small);min-height:var(--awb-min-height-small);background-image:var(--awb-background-image-small);background-color:var(--awb-background-color-small);background-repeat:var(--awb-background-repeat-small);background-position:var(--awb-background-position-small);background-size:var(--awb-background-size-small);background-blend-mode:var(--awb-background-blend-mode-small)}.fusion-flex-container{--awb-content-wrap:var(--awb-flex-wrap-small,var(--awb-flex-wrap))}.fusion-flex-container .fusion-flex-content-wrap{flex-wrap:var(--awb-content-wrap)}}@media only screen and (max-width:1173px){.fontawesome-icon.fb-icon-element{--awb-md-align-self:var(--awb-align-self);align-self:var(--awb-md-align-self)}}@media only screen and (max-width:900px){.fontawesome-icon.fb-icon-element{--awb-sm-align-self:var(--awb-md-align-self);align-self:var(--awb-sm-align-self)}}@media only screen and (max-width:1173px){.fusion-post-cards>.fusion-grid>.fusion-grid-column{width:var(--awb-columns-medium,50%)!important}.fusion-gallery>.fusion-grid-column{width:var(--awb-columns-medium,50%)!important}}@media only screen and (max-width:900px){.fusion-gallery>.fusion-grid-column,.fusion-post-cards>.fusion-grid>.fusion-grid-column{width:var(--awb-columns-small,100%)!important}}@media only screen and (max-width:1173px){.fusion-image-element{--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-right-medium:var(--awb-margin-right);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-margin-left-medium:var(--awb-margin-left);margin-top:var(--awb-margin-top-medium);margin-right:var(--awb-margin-right-medium);margin-bottom:var(--awb-margin-bottom-medium);margin-left:var(--awb-margin-left-medium)}}@media only screen and (max-width:900px){.fusion-image-element{--awb-margin-top-small:var(--awb-margin-top-medium);--awb-margin-right-small:var(--awb-margin-right-medium);--awb-margin-bottom-small:var(--awb-margin-bottom-medium);--awb-margin-left-small:var(--awb-margin-left-medium);margin-top:var(--awb-margin-top-small);margin-right:var(--awb-margin-right-small);margin-bottom:var(--awb-margin-bottom-small);margin-left:var(--awb-margin-left-small)}}@media only screen and (max-width:1173px){.fusion-social-links{--awb-alignment-medium:var(--awb-alignment);--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-right-medium:var(--awb-margin-right);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-margin-left-medium:var(--awb-margin-left);margin-top:var(--awb-margin-top-medium);margin-right:var(--awb-margin-right-medium);margin-bottom:var(--awb-margin-bottom-medium);margin-left:var(--awb-margin-left-medium);text-align:var(--awb-alignment-medium)}}@media only screen and (max-width:900px){.fusion-social-links{--awb-alignment-small:var(--awb-alignment-medium);--awb-margin-top-small:var(--awb-margin-top);--awb-margin-right-small:var(--awb-margin-right);--awb-margin-bottom-small:var(--awb-margin-bottom);--awb-margin-left-small:var(--awb-margin-left);margin-top:var(--awb-margin-top-small);margin-right:var(--awb-margin-right-small);margin-bottom:var(--awb-margin-bottom-small);margin-left:var(--awb-margin-left-small);text-align:var(--awb-alignment-small)}}@media only screen and (max-width:1173px){.fusion-title{--awb-margin-top-medium:var(--awb-margin-top);--awb-margin-right-medium:var(--awb-margin-right);--awb-margin-bottom-medium:var(--awb-margin-bottom);--awb-margin-left-medium:var(--awb-margin-left);margin-top:var(--awb-margin-top-medium)!important;margin-right:var(--awb-margin-right-medium)!important;margin-bottom:var(--awb-margin-bottom-medium)!important;margin-left:var(--awb-margin-left-medium)!important}}@media only screen and (max-width:900px){.fusion-title{--awb-margin-top-small:var(--title_margin_mobile-top,var(--awb-margin-top-medium));--awb-margin-right-small:var(--title_margin_mobile-right,var(--awb-margin-right-medium));--awb-margin-bottom-small:var(--title_margin_mobile-bottom,var(--awb-margin-bottom-medium));--awb-margin-left-small:var(--title_margin_mobile-left,var(--awb-margin-left-medium));margin-top:var(--awb-margin-top-small)!important;margin-right:var(--awb-margin-right-small)!important;margin-bottom:var(--awb-margin-bottom-small)!important;margin-left:var(--awb-margin-left-small)!important}}@media only screen and (max-width:1173px){.fusion-post-cards>.fusion-grid>.fusion-grid-column{width:var(--awb-columns-medium,50%)!important}.fusion-gallery>.fusion-grid-column{width:var(--awb-columns-medium,50%)!important}}@media only screen and (max-width:900px){.fusion-gallery>.fusion-grid-column,.fusion-post-cards>.fusion-grid>.fusion-grid-column{width:var(--awb-columns-small,100%)!important}}@media only screen and (max-width:1173px){.fusion_builder_column{--awb-padding-top-medium:var(--awb-padding-top);--awb-padding-right-medium:var(--awb-padding-right);--awb-padding-bottom-medium:var(--awb-padding-bottom);--awb-padding-left-medium:var(--awb-padding-left);--awb-col-width:var(--awb-width-medium,var(--medium-col-default));--awb-col-order:var(--awb-order-medium,var(--awb-order-large));--awb-margin-top-medium:var(--awb-margin-top-large,var(--col_margin-top,0));--awb-margin-bottom-medium:var(--awb-margin-bottom-large,var(--col_margin-bottom,20px));--awb-spacing-left-medium:var(--awb-spacing-left-large,4%);--awb-spacing-right-medium:var(--awb-spacing-right-large,4%);--awb-col-flex-grow:var(--awb-flex-grow-medium,var(--awb-flex-grow,0));--awb-col-flex-shrink:var(--awb-flex-shrink-medium,var(--awb-flex-shrink,0));--awb-margin-top:var(--awb-margin-top-medium);--awb-margin-bottom:var(--awb-margin-bottom-medium);--awb-spacing-left:var(--awb-spacing-left-medium);--awb-spacing-right:var(--awb-spacing-right-medium);--awb-bg-image-medium:var(--awb-bg-image);--awb-bg-color-medium:var(--awb-bg-color);--awb-bg-repeat-medium:var(--awb-bg-repeat);--awb-bg-position-medium:var(--awb-bg-position);--awb-bg-size-medium:var(--awb-bg-size);--awb-bg-blend-medium:var(--awb-bg-blend)}.fusion_builder_column .fusion-column-wrapper{padding:var(--awb-padding-top-medium) var(--awb-padding-right-medium) var(--awb-padding-bottom-medium) var(--awb-padding-left-medium);background-image:var(--awb-bg-image-medium);background-color:var(--awb-bg-color-medium);background-repeat:var(--awb-bg-repeat-medium);background-position:var(--awb-bg-position-medium);background-size:var(--awb-bg-size-medium);background-blend-mode:var(--awb-bg-blend-medium)}}@media only screen and (max-width:900px){.fusion_builder_column{--awb-padding-top-small:var(--awb-padding-top-medium);--awb-padding-right-small:var(--awb-padding-right-medium);--awb-padding-bottom-small:var(--awb-padding-bottom-medium);--awb-padding-left-small:var(--awb-padding-left-medium);--awb-col-width:var(--awb-width-small,var(--small-col-default));--awb-col-order:var(--awb-order-small,var(--awb-order-medium));--awb-spacing-left-small:var(--awb-spacing-left-large,4%);--awb-spacing-right-small:var(--awb-spacing-right-large,4%);--awb-margin-top-small:var(--awb-margin-top-medium,var(--awb-margin-top-large,var(--col_margin-top,0)));--awb-margin-bottom-small:var(--awb-margin-bottom-medium,var(--awb-margin-bottom-large,var(--col_margin-bottom,20px)));--awb-spacing-left:var(--awb-spacing-left-small);--awb-spacing-right:var(--awb-spacing-right-small);--awb-margin-top:var(--awb-margin-top-small);--awb-margin-bottom:var(--awb-margin-bottom-small);--awb-bg-image-small:var(--awb-bg-image-medium);--awb-bg-color-small:var(--awb-bg-color-medium);--awb-bg-repeat-small:var(--awb-bg-repeat-medium);--awb-bg-position-small:var(--awb-bg-position-medium);--awb-bg-size-small:var(--awb-bg-size-medium);--awb-bg-blend-small:var(--awb-bg-blend-medium);--awb-col-flex-grow:var(--awb-flex-grow-small,var(--awb-flex-grow,0));--awb-col-flex-shrink:var(--awb-flex-shrink-small,var(--awb-flex-shrink,0))}.fusion_builder_column .fusion-column-wrapper{padding:var(--awb-padding-top-small) var(--awb-padding-right-small) var(--awb-padding-bottom-small) var(--awb-padding-left-small);background-image:var(--awb-bg-image-small);background-color:var(--awb-bg-color-small);background-repeat:var(--awb-bg-repeat-small);background-position:var(--awb-bg-position-small);background-size:var(--awb-bg-size-small);background-blend-mode:var(--awb-bg-blend-small)}}@media only screen and (max-width:712px){.fusion-grid-column{width:var(--awb-columns-small,100%)!important}}@media only screen and (min-width:712px) and (max-width:784px){.fusion-grid-3 .fusion-grid-column,.fusion-grid-4 .fusion-grid-column{width:50%!important}}@media only screen and (min-width:784px) and (max-width:856px){.fusion-grid-3 .fusion-grid-column,.fusion-grid-4 .fusion-grid-column{width:50%!important}}@media only screen and (min-width:856px) and (max-width:928px){.fusion-grid-4 .fusion-grid-column{width:33.33333333%!important}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait){.fusion-grid-3 .fusion-grid-column,.fusion-grid-4 .fusion-grid-column{width:var(--awb-columns-medium,50%)!important}#wrapper{width:auto!important}.fullwidth-box{background-attachment:scroll!important}#toTop{bottom:30px;border-radius:4px;height:40px}#toTop:before{line-height:38px}#main,.fullwidth-box,body{background-attachment:scroll!important}}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){.fullwidth-box{background-attachment:scroll!important}#main,.fullwidth-box,body{background-attachment:scroll!important}}@media only screen and (max-width:800px){.fusion-layout-column{margin-left:0!important;margin-right:0!important}#wrapper{width:auto!important}.fusion-social-networks:after{content:\"\";display:block;clear:both}#content.full-width{margin-bottom:0}.fullwidth-box{background-attachment:scroll!important}#toTop{bottom:30px;border-radius:4px;height:44px;width:44px}#toTop:before{line-height:42px}.to-top-container #toTop{border-radius:var(--totop_border_radius)}}@media only screen and (max-width:800px){#content{width:100%!important;margin-left:0!important}#main>.fusion-row{display:flex;flex-wrap:wrap}}@media only screen and (max-width:640px){#main,body{background-attachment:scroll!important}#content{width:100%!important;margin-left:0!important}}@media only screen and (max-device-width:640px){#wrapper{width:auto!important}.fullwidth-box{background-attachment:scroll!important}.title{margin-top:0;margin-bottom:20px}#content{width:100%!important;float:none!important;margin-left:0!important;margin-bottom:50px}#content.full-width{margin-bottom:0}}@media only screen and (max-width:1173px){.awb-off-canvas-wrap{--awb-width-medium:var(--awb-width);--awb-height-medium:var(--awb-height)}.awb-off-canvas-wrap .awb-off-canvas{width:var(--awb-width-medium);height:var(--awb-height-medium)}}@media only screen and (max-width:900px){.awb-off-canvas-wrap{--awb-width-small:var(--awb-width-medium);--awb-height-small:var(--awb-height-medium)}.awb-off-canvas-wrap .awb-off-canvas{width:var(--awb-width-small);height:var(--awb-height-small)}}.fusion-builder-row.fusion-row{max-width:var(--site_width)}}","<link rel=\"preload\" as=\"image\" href=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\">","","1706807373");

INSERT IGNORE INTO `wp_comments` VALUES 
("2","200","danyduchaine","danyduchaine.help@gmail.com","","24.230.244.243","2023-07-14 19:16:37","2023-07-14 19:16:37","Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Praesent congue erat at massa. Phasellus tempus. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Integer tincidunt.","0","1","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36","comment","0","7496");

INSERT IGNORE INTO `wp_duplicator_entities` VALUES 
("1","DUP_PRO_Global_Entity","","","","","","{\n    \"email_summary_frequency\": \"weekly\",\n    \"email_summary_recipients\": [\n        \"noreply@youremail.com\"\n    ],\n    \"usageTracking\": true,\n    \"amNotices\": true,\n    \"package_mysqldump\": false,\n    \"package_mysqldump_path\": \"\",\n    \"package_phpdump_mode\": 0,\n    \"package_mysqldump_qrylimit\": 131072,\n    \"packageMysqldumpOptions\": [\n        {\n            \"option\": \"quick\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"extended-insert\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"routines\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": true,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"disable-keys\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"compact\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        }\n    ],\n    \"archive_build_mode\": 2,\n    \"archive_compression\": true,\n    \"ziparchive_validation\": false,\n    \"ziparchive_mode\": 0,\n    \"ziparchive_chunk_size_in_mb\": 32,\n    \"homepath_as_abspath\": false,\n    \"server_load_reduction\": 0,\n    \"max_package_runtime_in_min\": 90,\n    \"max_package_transfer_time_in_min\": 90,\n    \"php_max_worker_time_in_sec\": 20,\n    \"cleanup_mode\": 0,\n    \"cleanup_email\": \"noreply@youremail.com\",\n    \"auto_cleanup_hours\": 24,\n    \"lock_mode\": 0,\n    \"ajax_protocol\": \"admin\",\n    \"custom_ajax_url\": \"https:\\/\\/dr.frex.digital\\/wp-admin\\/admin-ajax.php\",\n    \"clientside_kickoff\": false,\n    \"basic_auth_enabled\": false,\n    \"basic_auth_user\": \"\",\n    \"installer_name_mode\": \"simple\",\n    \"installer_base_name\": \"installer.php\",\n    \"skip_archive_scan\": false,\n    \"send_email_on_build_mode\": 1,\n    \"notification_email_address\": \"\",\n    \"storage_htaccess_off\": false,\n    \"max_storage_retries\": 10,\n    \"purgeBackupRecords\": 0,\n    \"manual_mode_storage_ids\": [\n        3\n    ],\n    \"license_key_visible\": 1,\n    \"last_system_check_timestamp\": 0,\n    \"initial_activation_timestamp\": 1780326108,\n    \"ssl_useservercerts\": true,\n    \"ssl_disableverify\": true,\n    \"import_chunk_size\": 1024,\n    \"import_custom_path\": \"\",\n    \"ipv4_only\": false,\n    \"unhook_third_party_js\": false,\n    \"unhook_third_party_css\": false,\n    \"recoveryCustomPath\": \"\",\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 1,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"2026-06-01 15:01:48\",\n    \"updated\": \"2026-06-01 16:14:16\"\n}","4.5.24.2","2026-06-01 15:01:48","2026-06-01 16:14:16"),
("2","Dynamic_Entity","","","","","","{\n    \"data\": \"fInPcOH3xvbLQPMD0bMzWZPcXUdfADzsjBogMh5O9+VplEBRB1Pn2u0Lppn2KG3XgTbhQBMc2g2cworQ2Hokv2Kf\\/iGrEi4i\",\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 2,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"2026-06-01 15:01:48\",\n    \"updated\": \"2026-06-01 16:14:16\",\n    \"dataIsEncrypted\": true\n}","4.5.24.2","2026-06-01 15:01:48","2026-06-01 16:14:16"),
("3","DUP_PRO_Storage_Entity","","","","","","{\n    \"name\": \"Default\",\n    \"notes\": \"The default location for storage on this server.\",\n    \"storage_type\": -2,\n    \"config\": \"WYZ7uh5llP8D5smVZXmlsct4q0xreUbDBTmw3XGwFIhHtmV45w2V6t87BgHdk\\/cTXgFvXeqFxdpKjvzXyyvvPxvJttlq6xhELaHhJTMpP+R8qxmcJY4cV0vFBajFSJdtruCAS62dnda38wr2mYxS3\\/tfJYM9m02bq6Ia7Igf9jF+20IooTiq4IFdJrDUzETAI8q4RzyX96MxvjT8uP+6yRi5vmfGnAulgFdc51O84D9q2BiG5boHDRDcBT6YTwQC\",\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 3,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"2026-06-01 15:01:48\",\n    \"updated\": \"2026-06-01 16:14:16\"\n}","4.5.24.2","2026-06-01 15:01:48","2026-06-01 16:14:16"),
("4","EmailSummary","","","","","","{\n    \"manualPackageIds\": [],\n    \"scheduledPackageIds\": [],\n    \"failedPackageIds\": [],\n    \"failedUploads\": [],\n    \"cancelledUploads\": [],\n    \"successfulUploads\": [],\n    \"scheduleIds\": [],\n    \"storageIds\": [],\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 4,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"\",\n    \"updated\": \"2026-06-01 16:14:16\"\n}","4.5.24.2","2026-06-01 15:01:48","2026-06-01 16:14:16"),
("5","DUP_PRO_Package_Template_Entity","","","","","","{\n    \"name\": \"Default\",\n    \"package_name_format\": \"%year%%month%%day%_%sitetitle%\",\n    \"notes\": \"The default template.\",\n    \"filter_sites\": [],\n    \"archive_export_onlydb\": false,\n    \"archive_filter_on\": false,\n    \"archive_filter_dirs\": \"\",\n    \"archive_filter_exts\": \"\",\n    \"archive_filter_files\": \"\",\n    \"archive_filter_names\": false,\n    \"components\": [\n        \"package_component_db\",\n        \"package_component_core\",\n        \"package_component_plugins\",\n        \"package_component_themes\",\n        \"package_component_uploads\",\n        \"package_component_other\"\n    ],\n    \"database_filter_on\": false,\n    \"databasePrefixFilter\": false,\n    \"databasePrefixSubFilter\": false,\n    \"database_filter_tables\": \"\",\n    \"database_compatibility_modes\": \"\",\n    \"installer_opts_secure_on\": 0,\n    \"installerPassowrd\": \"nct5u9QuRyHLQE\\/MsHu3xO9+DQMVVSIbYpwLuFnqk0weu4EmtFKERLd0f+d2dMsexjqsGB24nDqngXG8oAJLbQ==\",\n    \"installer_opts_skip_scan\": false,\n    \"installer_opts_db_host\": \"\",\n    \"installer_opts_db_name\": \"\",\n    \"installer_opts_db_user\": \"\",\n    \"installer_opts_cpnl_enable\": false,\n    \"installer_opts_cpnl_host\": \"\",\n    \"installer_opts_cpnl_user\": \"\",\n    \"installer_opts_cpnl_pass\": \"\",\n    \"installer_opts_cpnl_db_action\": \"create\",\n    \"installer_opts_cpnl_db_host\": \"\",\n    \"installer_opts_cpnl_db_name\": \"\",\n    \"installer_opts_cpnl_db_user\": \"\",\n    \"installer_opts_brand\": -2,\n    \"is_default\": true,\n    \"is_manual\": false,\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 5,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"2026-06-01 15:01:48\",\n    \"updated\": \"2026-06-01 15:01:48\"\n}","4.5.24.2","2026-06-01 15:01:48","2026-06-01 15:01:48"),
("6","DUP_PRO_Package_Template_Entity","","","","","","{\n    \"name\": \"[Manual Mode]\",\n    \"package_name_format\": \"%year%%month%%day%_%sitetitle%\",\n    \"notes\": \"\",\n    \"filter_sites\": \"\",\n    \"archive_export_onlydb\": false,\n    \"archive_filter_on\": false,\n    \"archive_filter_dirs\": \"\",\n    \"archive_filter_exts\": \"\",\n    \"archive_filter_files\": \"\",\n    \"archive_filter_names\": false,\n    \"components\": [\n        \"package_component_db\",\n        \"package_component_core\",\n        \"package_component_plugins\",\n        \"package_component_themes\",\n        \"package_component_uploads\",\n        \"package_component_other\"\n    ],\n    \"database_filter_on\": false,\n    \"databasePrefixFilter\": false,\n    \"databasePrefixSubFilter\": false,\n    \"database_filter_tables\": \"\",\n    \"database_compatibility_modes\": \"\",\n    \"installer_opts_secure_on\": 0,\n    \"installerPassowrd\": \"exlUPLENxowco3eC6ijJBcaPP9CCL3gWaOu2SQOEQdmESuILWXB+GrsbeUdZt\\/lcQ4zFZ0FnoOAipnaW3ob\\/Bg==\",\n    \"installer_opts_skip_scan\": false,\n    \"installer_opts_db_host\": \"\",\n    \"installer_opts_db_name\": \"\",\n    \"installer_opts_db_user\": \"\",\n    \"installer_opts_cpnl_enable\": false,\n    \"installer_opts_cpnl_host\": \"\",\n    \"installer_opts_cpnl_user\": \"\",\n    \"installer_opts_cpnl_pass\": \"\",\n    \"installer_opts_cpnl_db_action\": \"create\",\n    \"installer_opts_cpnl_db_host\": \"\",\n    \"installer_opts_cpnl_db_name\": \"\",\n    \"installer_opts_cpnl_db_user\": \"\",\n    \"installer_opts_brand\": -1,\n    \"is_default\": false,\n    \"is_manual\": true,\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 6,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"2026-06-01 15:01:48\",\n    \"updated\": \"2026-06-01 15:02:38\"\n}","4.5.24.2","2026-06-01 15:01:48","2026-06-01 15:02:38"),
("7","LicenseDataEntity","","","","","","{\n    \"licenseKey\": \"8cSQNNKDtyf33WU3AqB2LG5ZLgsL8fio2VBBgvy422s2+dqODOJu7cuka+jJQkklTE1YIa0cEL9dl+XLKkaLkg==\",\n    \"status\": \"wO8pf4GJwYjuaGzLS4uHE0IgTGjX4NHtmWR3BHUSwiht+kq\\/Z\\/jJ8S0RUYpvfMEIXpnAdzZ7nIukwO49+mwbpLTa3ukHJtzT\",\n    \"type\": \"awx7M17nJfF7ObI9BqKCXykDjjVfxK5D17iNdHtJRkBkEgg9VDap\\/qnmwjGVpbexYbkq7NMoFZ913eDG2LCrtESru95eKAE6\",\n    \"data\": \"pYvzpKOkYWBJK7MOxt9Rb7nLWoVtA\\/\\/8AnS\\/rGBi9xpz2Mac+eMkBrR2cYhvYOm\\/llVZBafp3DSFodi\\/Os5bpyi0O4zglaCdzsdJ+GRZPVAFUXwVZzLIdzAfoyFHIlryyZ+GYvsKQXalmTCjHWHj\\/GIQu6j3CBLhTs504ThbOVXStESM5KnmWwJlLcPcidJiixYQWRjR4LVlEBsvAAx0Lh4X1uYY6zP1oq8tm6R2\\/zQyZZ9qYGY0nZZVWQWn6dw0QvwrGOtpwjtKIb79\\/5\\/uY3mUO4MbBgHcnRgSlhrErwwCgaoJNycAmjv7ITbEgdc\\/Usr8wPlbPEj6PIWwIwQ29B\\/R5vBTx9tXIb\\/Nc6pGOBBLrJnmzcij2TytIlb1Vl0QEbm5d3L7CsDjB4i70I7+VCg6uFfq1nkajf8x10IwYj8=\",\n    \"lastRemoteUpdate\": \"\",\n    \"lastFailureTime\": \"\",\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 7,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"2026-06-01 15:01:48\",\n    \"updated\": \"2026-06-07 15:54:25\"\n}","4.5.24.2","2026-06-01 15:01:48","2026-06-07 15:54:25"),
("8","DUP_PRO_System_Global_Entity","","","","","","{\n    \"recommended_fixes\": [],\n    \"schedule_failed\": false,\n    \"package_check_ts\": 1780847665,\n    \"value1\": \"\",\n    \"value2\": \"\",\n    \"value3\": \"\",\n    \"value4\": \"\",\n    \"value5\": \"\",\n    \"id\": 8,\n    \"version\": \"4.5.24.2\",\n    \"created\": \"2026-06-01 15:01:49\",\n    \"updated\": \"2026-06-07 15:54:25\"\n}","4.5.24.2","2026-06-01 15:01:49","2026-06-07 15:54:25");

INSERT IGNORE INTO `wp_duplicator_pro_entities` VALUES 
("1","DUP_PRO_Global_Entity","{\n    \"uninstall_settings\": false,\n    \"uninstall_packages\": false,\n    \"crypt\": true,\n    \"wpfront_integrate\": false,\n    \"package_ui_created\": 1,\n    \"package_mysqldump\": false,\n    \"package_mysqldump_path\": \"\",\n    \"package_phpdump_mode\": 0,\n    \"package_mysqldump_qrylimit\": 131072,\n    \"packageMysqldumpOptions\": [\n        {\n            \"option\": \"quick\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"extended-insert\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"routines\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": true,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"disable-keys\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        },\n        {\n            \"option\": \"compact\",\n            \"inputGroupPrefix\": \"package_mysqldump_\",\n            \"possibleArguments\": [],\n            \"enabled\": false,\n            \"arguments\": []\n        }\n    ],\n    \"archive_build_mode\": 1,\n    \"archive_compression\": true,\n    \"ziparchive_validation\": false,\n    \"ziparchive_mode\": 0,\n    \"ziparchive_chunk_size_in_mb\": 32,\n    \"homepath_as_abspath\": false,\n    \"archive_build_mode_schedule\": -1,\n    \"archive_compression_schedule\": true,\n    \"server_load_reduction\": 0,\n    \"max_package_runtime_in_min\": 90,\n    \"php_max_worker_time_in_sec\": 20,\n    \"cleanup_mode\": 0,\n    \"cleanup_email\": \"tahoora.av27@gmail.com\",\n    \"auto_cleanup_hours\": 24,\n    \"lock_mode\": 1,\n    \"json_mode\": 0,\n    \"ajax_protocol\": \"https\",\n    \"custom_ajax_url\": \"https:\\/\\/dr.frex.digital\\/wp-admin\\/admin-ajax.php\",\n    \"clientside_kickoff\": false,\n    \"basic_auth_enabled\": false,\n    \"basic_auth_user\": \"\",\n    \"basic_auth_password\": \"\",\n    \"installer_name_mode\": \"simple\",\n    \"installer_base_name\": \"installer.php\",\n    \"chunk_size\": 2048,\n    \"skip_archive_scan\": false,\n    \"send_email_on_build_mode\": 1,\n    \"notification_email_address\": \"\",\n    \"storage_htaccess_off\": false,\n    \"max_storage_retries\": 10,\n    \"max_default_store_files\": 20,\n    \"purge_default_package_record\": false,\n    \"dropbox_upload_chunksize_in_kb\": 2000,\n    \"dropbox_transfer_mode\": 1,\n    \"gdrive_upload_chunksize_in_kb\": 1024,\n    \"gdrive_transfer_mode\": 0,\n    \"s3_upload_part_size_in_kb\": 6000,\n    \"onedrive_upload_chunksize_in_kb\": 3200,\n    \"local_upload_chunksize_in_MB\": 16,\n    \"manual_mode_storage_ids\": [\n        \"-2\"\n    ],\n    \"license_status\": 0,\n    \"license_expiration_time\": -1,\n    \"license_no_activations_left\": false,\n    \"license_key_visible\": 1,\n    \"lkp\": \"\",\n    \"license_type\": -1,\n    \"license_limit\": -1,\n    \"last_edd_api_response\": null,\n    \"last_edd_api_timestamp\": 0,\n    \"last_system_check_timestamp\": 1783017425,\n    \"initial_activation_timestamp\": 1783017425,\n    \"ssl_useservercerts\": true,\n    \"ssl_disableverify\": true,\n    \"import_chunk_size\": 1024,\n    \"import_custom_path\": \"\",\n    \"ipv4_only\": false,\n    \"debug_on\": false,\n    \"unhook_third_party_js\": false,\n    \"unhook_third_party_css\": false,\n    \"profile_idea\": false,\n    \"profile_beta\": false,\n    \"dupHidePackagesGiftFeatures\": true,\n    \"recoveryCustomPath\": \"\",\n    \"id\": 1\n}"),
("2","DUP_PRO_Secure_Global_Entity","{\n    \"basic_auth_password\": \"\",\n    \"lkp\": \"\",\n    \"id\": 2\n}"),
("3","DUP_PRO_Package_Template_Entity","{\n    \"name\": \"Default\",\n    \"notes\": \"The default template.\",\n    \"filter_sites\": [],\n    \"archive_export_onlydb\": 0,\n    \"archive_filter_on\": 0,\n    \"archive_filter_dirs\": \"\",\n    \"archive_filter_exts\": \"\",\n    \"archive_filter_files\": \"\",\n    \"archive_filter_names\": false,\n    \"database_filter_on\": 0,\n    \"databasePrefixFilter\": false,\n    \"databasePrefixSubFilter\": false,\n    \"database_filter_tables\": \"\",\n    \"database_compatibility_modes\": [],\n    \"installer_opts_secure_on\": 0,\n    \"installer_opts_secure_pass\": \"\",\n    \"installerPassowrd\": \"YbJWq5tthBk6TrQyuFTCsBOvslfe+oRbtN9fulhF0N9SOpH7\\/FfQn1FupHt18Ru4j3V\\/M96Dp+oNewjHsrfpNg==\",\n    \"installer_opts_skip_scan\": 0,\n    \"installer_opts_db_host\": \"\",\n    \"installer_opts_db_name\": \"\",\n    \"installer_opts_db_user\": \"\",\n    \"installer_opts_cpnl_enable\": false,\n    \"installer_opts_cpnl_host\": \"\",\n    \"installer_opts_cpnl_user\": \"\",\n    \"installer_opts_cpnl_pass\": \"\",\n    \"installer_opts_cpnl_db_action\": \"create\",\n    \"installer_opts_cpnl_db_host\": \"\",\n    \"installer_opts_cpnl_db_name\": \"\",\n    \"installer_opts_cpnl_db_user\": \"\",\n    \"installer_opts_brand\": -2,\n    \"is_default\": true,\n    \"is_manual\": false,\n    \"id\": 3\n}"),
("4","DUP_PRO_Package_Template_Entity","{\n    \"name\": \"[Manual Mode]\",\n    \"notes\": \"\",\n    \"filter_sites\": \"\",\n    \"archive_export_onlydb\": 0,\n    \"archive_filter_on\": 0,\n    \"archive_filter_dirs\": \"\",\n    \"archive_filter_exts\": \"\",\n    \"archive_filter_files\": \"\",\n    \"archive_filter_names\": false,\n    \"database_filter_on\": 0,\n    \"databasePrefixFilter\": false,\n    \"databasePrefixSubFilter\": false,\n    \"database_filter_tables\": \"\",\n    \"database_compatibility_modes\": \"\",\n    \"installer_opts_secure_on\": 0,\n    \"installer_opts_secure_pass\": \"\",\n    \"installerPassowrd\": \"B36kyQ50MCHGTpdZQWNwohjaRlLol+3liwQe7+YNP0wkckYjvcZyovEj2KlEORzQqNkwCcZSeBtVd4OFChJZCw==\",\n    \"installer_opts_skip_scan\": 0,\n    \"installer_opts_db_host\": \"\",\n    \"installer_opts_db_name\": \"\",\n    \"installer_opts_db_user\": \"\",\n    \"installer_opts_cpnl_enable\": 0,\n    \"installer_opts_cpnl_host\": \"\",\n    \"installer_opts_cpnl_user\": \"\",\n    \"installer_opts_cpnl_pass\": \"\",\n    \"installer_opts_cpnl_db_action\": \"create\",\n    \"installer_opts_cpnl_db_host\": \"\",\n    \"installer_opts_cpnl_db_name\": \"\",\n    \"installer_opts_cpnl_db_user\": \"\",\n    \"installer_opts_brand\": -2,\n    \"is_default\": false,\n    \"is_manual\": true,\n    \"id\": 4\n}"),
("5","DUP_PRO_System_Global_Entity","{\n    \"recommended_fixes\": [],\n    \"schedule_failed\": false,\n    \"package_check_ts\": 1783017460,\n    \"id\": 5\n}");

INSERT IGNORE INTO `wp_duplicator_pro_packages` VALUES 
("1","20260702_drsoheila","54857d0346c0eb4d8153_20260702183722","20","2026-07-02 18:37:28","Tahoora","{\n    \"ID\": 1,\n    \"Created\": \"2026-07-02 18:37:22\",\n    \"Version\": \"4.5.10\",\n    \"VersionWP\": \"7.0\",\n    \"VersionDB\": \"10.11.18\",\n    \"VersionPHP\": \"8.2.31\",\n    \"VersionOS\": \"Linux\",\n    \"Name\": \"20260702_drsoheila\",\n    \"Hash\": \"54857d0346c0eb4d8153_20260702183722\",\n    \"NameHash\": \"20260702_drsoheila_54857d0346c0eb4d8153_20260702183722\",\n    \"Type\": 0,\n    \"notes\": \"\",\n    \"StorePath\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\\/tmp\",\n    \"StoreURL\": \"https:\\/\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\\/\",\n    \"ScanFile\": \"20260702_drsoheila_54857d0346c0eb4d8153_20260702183722_scan.json\",\n    \"timer_start\": 1783017460.5180809497833251953125,\n    \"Runtime\": \"\",\n    \"ExeSize\": \"0\",\n    \"ZipSize\": \"0\",\n    \"Brand\": \"Default\",\n    \"Brand_ID\": -1,\n    \"ziparchive_mode\": 0,\n    \"Archive\": {\n        \"ExportOnlyDB\": 0,\n        \"FilterDirs\": \"\",\n        \"FilterExts\": \"\",\n        \"FilterFiles\": \"\",\n        \"FilterDirsAll\": [\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.opcache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.tmb\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/ai1wm-backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-lite\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backupwordpress\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/bps-backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/content\\/cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/contents\\/cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/infinitewp\\/backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/managewp\\/backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/old-cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/plugins\\/wordfence\\/tmp\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/updraft\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/aiowps_backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/backup-guard\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/backupbuddy_backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/backupbuddy_temp\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/mainwp\\/backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/pb_backupbuddy\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/snapshots\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/sucuri\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/wp-clone\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/wp_all_backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/wpbackitup_backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/wfcache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/wishlist-backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/wpvividbackups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-snapshots\"\n        ],\n        \"FilterExtsAll\": [],\n        \"FilterFilesAll\": [\n            \".DS_Store\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.htaccess\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.user.ini\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/php.ini\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/web.config\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-config.php\",\n            \"dbcache\",\n            \"debug_log\",\n            \"error_log\",\n            \"objectcache\",\n            \"pgcache\",\n            \"ws_ftp.log\"\n        ],\n        \"FilterOn\": 0,\n        \"FilterNames\": false,\n        \"File\": \"20260702_drsoheila_54857d0346c0eb4d8153_20260702183722_archive.zip\",\n        \"Format\": \"ZIP\",\n        \"PackDir\": \"\\/home\\/cugzileb\\/dr.frex.digital\",\n        \"Size\": 825413918,\n        \"Dirs\": null,\n        \"DirCount\": 2441,\n        \"RecursiveLinks\": [],\n        \"Files\": null,\n        \"FileCount\": 21878,\n        \"file_count\": -1,\n        \"FilterInfo\": {\n            \"Dirs\": {\n                \"AddonSites\": [],\n                \"Size\": [],\n                \"Core\": [],\n                \"Global\": [],\n                \"Instance\": [],\n                \"Unreadable\": []\n            },\n            \"Files\": {\n                \"Size\": [],\n                \"Core\": [],\n                \"Global\": [],\n                \"Instance\": [],\n                \"Unreadable\": []\n            },\n            \"Exts\": {\n                \"Core\": [],\n                \"Global\": [],\n                \"Instance\": [],\n                \"Unreadable\": []\n            },\n            \"TreeSize\": null\n        },\n        \"ListDelimiter\": \"\\n\"\n    },\n    \"Multisite\": {\n        \"FilterSites\": \"\"\n    },\n    \"Installer\": {\n        \"File\": \"20260702_drsoheila_54857d0346c0eb4d8153_20260702183722_installer.php\",\n        \"Size\": 0,\n        \"OptsSecureOn\": 0,\n        \"passowrd\": \"Tu39RAbKORO86AnMyim0vXIiPVr+6OmzB+LphkjPziUYTUphk4hNNK7Kcf6YSmJcH0szCbbZ1xxK0gMjw4fVog==\",\n        \"OptsSecurePass\": \"\",\n        \"OptsSkipScan\": 0,\n        \"OptsDBHost\": \"\",\n        \"OptsDBName\": \"\",\n        \"OptsDBUser\": \"\",\n        \"OptsCPNLHost\": \"\",\n        \"OptsCPNLUser\": \"\",\n        \"OptsCPNLPass\": \"\",\n        \"OptsCPNLEnable\": 0,\n        \"OptsCPNLConnect\": false,\n        \"OptsCPNLDBAction\": \"create\",\n        \"OptsCPNLDBHost\": \"\",\n        \"OptsCPNLDBName\": \"\",\n        \"OptsCPNLDBUser\": \"\",\n        \"numFilesAdded\": 0,\n        \"numDirsAdded\": 0\n    },\n    \"Database\": {\n        \"info\": {\n            \"buildMode\": \"PHPCHUNKING\",\n            \"charSetList\": [\n                \"utf8mb4\",\n                \"ascii\",\n                \"latin1\"\n            ],\n            \"collationList\": [\n                \"ascii_general_ci\",\n                \"latin1_swedish_ci\",\n                \"utf8mb4_unicode_520_ci\"\n            ],\n            \"engineList\": [\n                \"InnoDB\",\n                \"MyISAM\",\n                \"MEMORY\"\n            ],\n            \"isTablesUpperCase\": false,\n            \"isNameUpperCase\": false,\n            \"name\": \"cugzileb_drsohdb\",\n            \"tablesBaseCount\": 50,\n            \"tablesFinalCount\": 50,\n            \"muFilteredTableCount\": 0,\n            \"tablesRowCount\": 7305,\n            \"tablesSizeOnDisk\": 141767364,\n            \"tablesList\": {\n                \"wp_actionscheduler_actions\": {\n                    \"inaccurateRows\": 133,\n                    \"insertedRows\": false,\n                    \"size\": 180224\n                },\n                \"wp_actionscheduler_claims\": {\n                    \"inaccurateRows\": 3,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_actionscheduler_groups\": {\n                    \"inaccurateRows\": 4,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_actionscheduler_logs\": {\n                    \"inaccurateRows\": 397,\n                    \"insertedRows\": false,\n                    \"size\": 98304\n                },\n                \"wp_awb_critical_css\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_commentmeta\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_comments\": {\n                    \"inaccurateRows\": 1,\n                    \"insertedRows\": false,\n                    \"size\": 98304\n                },\n                \"wp_duplicator_activity_logs\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 14948\n                },\n                \"wp_duplicator_backups\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 81204\n                },\n                \"wp_duplicator_entities\": {\n                    \"inaccurateRows\": 8,\n                    \"insertedRows\": false,\n                    \"size\": 40276\n                },\n                \"wp_duplicator_packages\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_duplicator_pro_entities\": {\n                    \"inaccurateRows\": 5,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_duplicator_pro_packages\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_fusion_forms\": {\n                    \"inaccurateRows\": 4,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_fusion_form_entries\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_fusion_form_fields\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_fusion_form_submissions\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_gf_draft_submissions\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_gf_entry\": {\n                    \"inaccurateRows\": 12,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_gf_entry_meta\": {\n                    \"inaccurateRows\": 81,\n                    \"insertedRows\": false,\n                    \"size\": 65536\n                },\n                \"wp_gf_entry_notes\": {\n                    \"inaccurateRows\": 11,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_gf_form\": {\n                    \"inaccurateRows\": 2,\n                    \"insertedRows\": false,\n                    \"size\": 16384\n                },\n                \"wp_gf_form_meta\": {\n                    \"inaccurateRows\": 2,\n                    \"insertedRows\": false,\n                    \"size\": 16384\n                },\n                \"wp_gf_form_revisions\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_gf_form_view\": {\n                    \"inaccurateRows\": 35,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_imunify_bot_rl\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 0\n                },\n                \"wp_links\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_options\": {\n                    \"inaccurateRows\": 394,\n                    \"insertedRows\": false,\n                    \"size\": 6438912\n                },\n                \"wp_postmeta\": {\n                    \"inaccurateRows\": 3838,\n                    \"insertedRows\": false,\n                    \"size\": 2965504\n                },\n                \"wp_posts\": {\n                    \"inaccurateRows\": 1800,\n                    \"insertedRows\": false,\n                    \"size\": 128581632\n                },\n                \"wp_sbi_feeds\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_sbi_feed_caches\": {\n                    \"inaccurateRows\": 13,\n                    \"insertedRows\": false,\n                    \"size\": 1081344\n                },\n                \"wp_sbi_instagram_feeds_posts\": {\n                    \"inaccurateRows\": 39,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_sbi_instagram_feed_locator\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_sbi_instagram_posts\": {\n                    \"inaccurateRows\": 32,\n                    \"insertedRows\": false,\n                    \"size\": 409600\n                },\n                \"wp_sbi_sources\": {\n                    \"inaccurateRows\": 2,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_termmeta\": {\n                    \"inaccurateRows\": 138,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_terms\": {\n                    \"inaccurateRows\": 28,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_term_relationships\": {\n                    \"inaccurateRows\": 105,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_term_taxonomy\": {\n                    \"inaccurateRows\": 31,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_usermeta\": {\n                    \"inaccurateRows\": 35,\n                    \"insertedRows\": false,\n                    \"size\": 15668\n                },\n                \"wp_users\": {\n                    \"inaccurateRows\": 1,\n                    \"insertedRows\": false,\n                    \"size\": 8356\n                },\n                \"wp_wow_fmp\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 16384\n                },\n                \"wp_wpr_above_the_fold\": {\n                    \"inaccurateRows\": 16,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_lazy_render_content\": {\n                    \"inaccurateRows\": 16,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_performance_monitoring\": {\n                    \"inaccurateRows\": 1,\n                    \"insertedRows\": false,\n                    \"size\": 114688\n                },\n                \"wp_wpr_preconnect_external_domains\": {\n                    \"inaccurateRows\": 16,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_preload_fonts\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_rocket_cache\": {\n                    \"inaccurateRows\": 102,\n                    \"insertedRows\": false,\n                    \"size\": 65536\n                },\n                \"wp_wpr_rucss_used_css\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 114688\n                }\n            },\n            \"dbEngine\": \"MariaDB\",\n            \"version\": \"10.11.18\",\n            \"versionComment\": \"MariaDB Server\",\n            \"viewCount\": 0,\n            \"procCount\": 0,\n            \"funcCount\": 0,\n            \"triggerList\": []\n        },\n        \"Type\": \"MySQL\",\n        \"Size\": 0,\n        \"File\": \"20260702_drsoheila_54857d0346c0eb4d8153_20260702183722_database.sql\",\n        \"FilterTables\": \"\",\n        \"FilterOn\": 0,\n        \"prefixFilter\": false,\n        \"prefixSubFilter\": false,\n        \"DBMode\": \"PHPCHUNKING\",\n        \"Compatible\": \"\",\n        \"Comments\": \"MariaDB Server\",\n        \"dbStorePathPublic\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\\/tmp\\/20260702_drsoheila_54857d0346c0eb4d8153_20260702183722_database.sql\"\n    },\n    \"Status\": 20,\n    \"schedule_id\": -1,\n    \"build_progress\": {\n        \"thread_start_time\": 1783017461,\n        \"initialized\": true,\n        \"installer_built\": false,\n        \"archive_started\": false,\n        \"archive_start_time\": 0,\n        \"archive_has_database\": false,\n        \"archive_built\": false,\n        \"database_script_built\": false,\n        \"failed\": false,\n        \"next_archive_file_index\": 0,\n        \"next_archive_dir_index\": 0,\n        \"retries\": 0,\n        \"current_build_mode\": 1,\n        \"current_build_compression\": true,\n        \"dupCreate\": null,\n        \"dupExpand\": null,\n        \"warnings\": []\n    },\n    \"db_build_progress\": {\n        \"tablesToProcess\": [\n            \"wp_users\",\n            \"wp_usermeta\",\n            \"wp_actionscheduler_actions\",\n            \"wp_actionscheduler_claims\",\n            \"wp_actionscheduler_groups\",\n            \"wp_actionscheduler_logs\",\n            \"wp_awb_critical_css\",\n            \"wp_commentmeta\",\n            \"wp_comments\",\n            \"wp_duplicator_activity_logs\",\n            \"wp_duplicator_backups\",\n            \"wp_duplicator_entities\",\n            \"wp_duplicator_packages\",\n            \"wp_duplicator_pro_entities\",\n            \"wp_duplicator_pro_packages\",\n            \"wp_fusion_forms\",\n            \"wp_fusion_form_entries\",\n            \"wp_fusion_form_fields\",\n            \"wp_fusion_form_submissions\",\n            \"wp_gf_draft_submissions\",\n            \"wp_gf_entry\",\n            \"wp_gf_entry_meta\",\n            \"wp_gf_entry_notes\",\n            \"wp_gf_form\",\n            \"wp_gf_form_meta\",\n            \"wp_gf_form_revisions\",\n            \"wp_gf_form_view\",\n            \"wp_imunify_bot_rl\",\n            \"wp_links\",\n            \"wp_options\",\n            \"wp_postmeta\",\n            \"wp_posts\",\n            \"wp_sbi_feeds\",\n            \"wp_sbi_feed_caches\",\n            \"wp_sbi_instagram_feeds_posts\",\n            \"wp_sbi_instagram_feed_locator\",\n            \"wp_sbi_instagram_posts\",\n            \"wp_sbi_sources\",\n            \"wp_termmeta\",\n            \"wp_terms\",\n            \"wp_term_relationships\",\n            \"wp_term_taxonomy\",\n            \"wp_wow_fmp\",\n            \"wp_wpr_above_the_fold\",\n            \"wp_wpr_lazy_render_content\",\n            \"wp_wpr_performance_monitoring\",\n            \"wp_wpr_preconnect_external_domains\",\n            \"wp_wpr_preload_fonts\",\n            \"wp_wpr_rocket_cache\",\n            \"wp_wpr_rucss_used_css\"\n        ],\n        \"validationStage1\": false,\n        \"doneInit\": true,\n        \"doneFiltering\": true,\n        \"doneCreates\": true,\n        \"completed\": false,\n        \"startTime\": 1783017460.5291869640350341796875,\n        \"wasInterrupted\": true,\n        \"errorOut\": false,\n        \"failureCount\": 0,\n        \"countCheckData\": {\n            \"countTotal\": 0,\n            \"impreciseTotalRows\": 7306,\n            \"tables\": {\n                \"wp_users\": {\n                    \"start\": \"1\",\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_usermeta\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_actionscheduler_actions\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_actionscheduler_claims\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_actionscheduler_groups\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_actionscheduler_logs\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_awb_critical_css\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_commentmeta\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_comments\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_duplicator_activity_logs\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_duplicator_backups\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_duplicator_entities\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_duplicator_packages\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_duplicator_pro_entities\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_duplicator_pro_packages\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_fusion_forms\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_fusion_form_entries\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_fusion_form_fields\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_fusion_form_submissions\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_draft_submissions\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_entry\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_entry_meta\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_entry_notes\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_form\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_form_meta\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_form_revisions\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_gf_form_view\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_imunify_bot_rl\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_links\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_options\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_postmeta\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_posts\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_sbi_feeds\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_sbi_feed_caches\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_sbi_instagram_feeds_posts\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_sbi_instagram_feed_locator\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_sbi_instagram_posts\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_sbi_sources\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_termmeta\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_terms\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_term_relationships\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_term_taxonomy\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wow_fmp\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wpr_above_the_fold\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wpr_lazy_render_content\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wpr_performance_monitoring\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wpr_preconnect_external_domains\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wpr_preload_fonts\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wpr_rocket_cache\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                },\n                \"wp_wpr_rucss_used_css\": {\n                    \"start\": 0,\n                    \"end\": 0,\n                    \"count\": 0,\n                    \"create\": true\n                }\n            }\n        }\n    },\n    \"upload_infos\": [\n        {\n            \"storage_id\": \"-2\",\n            \"archive_offset\": 0,\n            \"copied_installer\": false,\n            \"copied_archive\": false,\n            \"progress\": 0,\n            \"num_failures\": 0,\n            \"failed\": false,\n            \"cancelled\": false,\n            \"upload_id\": null,\n            \"failure_count\": 0,\n            \"data\": \"\",\n            \"data2\": \"\",\n            \"has_started\": false,\n            \"status_message_details\": \"\",\n            \"started_timestamp\": null,\n            \"stopped_timestamp\": null,\n            \"chunkPosition\": []\n        }\n    ],\n    \"active_storage_id\": -1,\n    \"template_id\": 4\n}");

INSERT IGNORE INTO `wp_fusion_forms` VALUES 
("1","167","1217","0",NULL),
("2","224","977","0",NULL),
("3","704","3","0",NULL),
("4","707","211","0",NULL);

INSERT IGNORE INTO `wp_gf_entry` VALUES 
("1","2",NULL,"2026-06-09 12:28:30","2026-06-09 12:28:30","0","0","45.74.244.226","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"trash","1353"),
("2","2",NULL,"2026-06-09 12:29:17","2026-06-09 12:29:17","0","0","45.74.244.226","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"trash","1353"),
("3","2",NULL,"2026-06-09 12:41:20","2026-06-09 12:41:20","0","0","45.74.244.226","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"trash","1353"),
("4","2",NULL,"2026-06-09 12:41:49","2026-06-09 12:41:49","0","0","45.74.244.226","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"trash","1353"),
("5","2",NULL,"2026-06-09 12:45:51","2026-06-09 12:45:51","0","0","45.74.244.226","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"active","1353"),
("6","2",NULL,"2026-06-09 12:46:34","2026-06-09 12:46:34","0","0","45.74.244.226","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"trash","1353"),
("7","2",NULL,"2026-06-09 12:50:51","2026-06-09 12:50:51","0","0","45.74.244.226","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"active","1353"),
("8","2",NULL,"2026-06-10 11:55:52","2026-06-10 11:55:52","0","0","216.147.121.56","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"active","1353"),
("9","2",NULL,"2026-06-10 11:59:22","2026-06-10 11:59:22","0","0","104.28.243.186","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"active","1353"),
("10","2",NULL,"2026-06-12 09:20:16","2026-06-12 09:20:16","0","0","151.245.195.172","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,"active","1353"),
("11","2",NULL,"2026-06-12 09:59:57","2026-06-12 09:59:57","0","0","172.239.2.177","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"active","1353"),
("12","2",NULL,"2026-06-12 10:06:35","2026-06-12 10:06:35","0","0","172.239.2.177","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"active","1353"),
("13","2",NULL,"2026-06-12 10:10:22","2026-06-12 10:10:22","0","0","172.239.2.177","https://dr.frex.digital/consultation/","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36","USD",NULL,NULL,NULL,NULL,NULL,NULL,"1",NULL,"active","1353");

INSERT IGNORE INTO `wp_gf_entry_meta` VALUES 
("1","2","1","1","test",""),
("3","2","1","4","+989123456789",""),
("4","2","1","6","27",""),
("7","2","1","18","2026-06-09",""),
("8","2","1","21","15:00",""),
("9","2","1","submission_speeds","{\"3\":[25645]}",NULL),
("10","2","2","1","test 2",""),
("12","2","2","4","09123456789",""),
("13","2","2","6","27",""),
("16","2","2","18","2026-06-09",""),
("17","2","2","21","15:00",""),
("18","2","2","submission_speeds","{\"3\":[13131]}",NULL),
("19","2","2","previous_status","active",NULL),
("20","2","3","1","test 3",""),
("22","2","3","4","09123445787654",""),
("23","2","3","6","27",""),
("26","2","3","18","2026-06-09",""),
("27","2","3","21","17:30",""),
("28","2","3","submission_speeds","{\"3\":[25450]}",NULL),
("29","2","4","1","test 4",""),
("31","2","4","4","0923456723",""),
("32","2","4","6","27",""),
("35","2","4","18","2026-06-09",""),
("36","2","4","21","17:30",""),
("37","2","4","submission_speeds","{\"3\":[8494]}",NULL),
("38","2","4","previous_status","active",NULL),
("39","2","3","previous_status","active",NULL),
("40","2","1","previous_status","active",NULL),
("41","2","5","1","test",""),
("43","2","5","4","09123456789",""),
("44","2","5","6","27",""),
("47","2","5","18","2026-06-09",""),
("48","2","5","21","17:30",""),
("49","2","5","submission_speeds","{\"3\":[20927]}",NULL),
("50","2","6","1","test 2",""),
("52","2","6","4","09123456789",""),
("53","2","6","6","27",""),
("56","2","6","18","2026-06-09",""),
("57","2","6","21","17:30",""),
("58","2","6","submission_speeds","{\"3\":[5822]}",NULL),
("59","2","6","previous_status","active",NULL),
("60","2","7","1","test 2",""),
("62","2","7","4","09123456789",""),
("63","2","7","6","27",""),
("66","2","7","18","2026-06-09",""),
("67","2","7","21","18:00",""),
("68","2","7","submission_speeds","{\"3\":[2265]}",NULL),
("69","2","8","1","wawwad",""),
("70","2","8","4","wadaw",""),
("71","2","8","6","234",""),
("72","2","8","22","Female",""),
("73","2","8","18","2026-09-06",""),
("74","2","8","21","18:00",""),
("75","2","8","submission_speeds","{\"1\":[81797]}",NULL),
("76","2","9","1","32423",""),
("77","2","9","4","32423",""),
("78","2","9","6","234324",""),
("79","2","9","22","Female",""),
("80","2","9","18","2026-06-30",""),
("81","2","9","21","09:00",""),
("82","2","9","submission_speeds","{\"1\":[138123]}",NULL),
("83","2","10","1","test",""),
("84","2","10","4","84894",""),
("85","2","10","6","5415",""),
("86","2","10","22","Female",""),
("87","2","10","18","2026-06-19",""),
("88","2","10","21","17:00",""),
("89","2","10","submission_speeds","{\"1\":[81803]}",NULL),
("90","2","11","1","test",""),
("91","2","11","4","12345",""),
("92","2","11","6","12",""),
("93","2","11","22","Female",""),
("94","2","11","18","2026-06-23",""),
("95","2","11","21","09:00",""),
("96","2","11","submission_speeds","{\"1\":[21323]}",NULL),
("97","2","12","1","dgfcv",""),
("98","2","12","4","1234",""),
("99","2","12","6","12",""),
("100","2","12","22","Female",""),
("101","2","12","18","2026-06-23",""),
("102","2","12","21","09:30",""),
("103","2","12","submission_speeds","{\"1\":[136512]}",NULL),
("104","2","13","1","tesgf",""),
("105","2","13","4","1234",""),
("106","2","13","6","23",""),
("107","2","13","22","Female",""),
("108","2","13","18","2026-06-23",""),
("109","2","13","21","10:00",""),
("110","2","13","submission_speeds","{\"1\":[73131]}",NULL);

INSERT IGNORE INTO `wp_gf_entry_notes` VALUES 
("1","1","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-09 12:28:31","WordPress successfully passed the notification email to the sending server.","notification","success"),
("2","2","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-09 12:29:18","WordPress successfully passed the notification email to the sending server.","notification","success"),
("3","3","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-09 12:41:20","WordPress successfully passed the notification email to the sending server.","notification","success"),
("4","4","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-09 12:41:50","WordPress successfully passed the notification email to the sending server.","notification","success"),
("5","5","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-09 12:45:51","WordPress successfully passed the notification email to the sending server.","notification","success"),
("6","6","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-09 12:46:34","WordPress successfully passed the notification email to the sending server.","notification","success"),
("7","7","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-09 12:50:52","WordPress successfully passed the notification email to the sending server.","notification","success"),
("8","8","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-10 11:55:52","WordPress successfully passed the notification email to the sending server.","notification","success"),
("9","9","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-10 11:59:22","WordPress successfully passed the notification email to the sending server.","notification","success"),
("10","10","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-12 09:20:17","WordPress successfully passed the notification email to the sending server.","notification","success"),
("11","11","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-12 09:59:58","WordPress successfully passed the notification email to the sending server.","notification","success"),
("12","12","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-12 10:06:36","WordPress successfully passed the notification email to the sending server.","notification","success"),
("13","13","Admin Notification (ID: 6a27f9f6b09cd)","0","2026-06-12 10:10:22","WordPress successfully passed the notification email to the sending server.","notification","success");

INSERT IGNORE INTO `wp_gf_form` VALUES 
("1","Contac Us","2026-06-07 16:41:20",NULL,"1","0"),
("2","Booking","2026-06-09 11:33:10",NULL,"1","0");

INSERT IGNORE INTO `wp_gf_form_meta` VALUES 
("1","{\"fields\":[{\"is_payment\":false,\"type\":\"text\",\"id\":1,\"formId\":1,\"label\":\"\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"text\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Your Name\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableDisplayInColumns\":\"\",\"enablePasswordInput\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"e4116b04\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"email\",\"id\":3,\"formId\":1,\"label\":\"\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"autocompleteAttribute\":\"email\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"email\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Email Address\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableDisplayInColumns\":\"\",\"emailConfirmEnabled\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"dc645558\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"phone\",\"id\":4,\"formId\":1,\"label\":\"\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"phone\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Phone Number\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableDisplayInColumns\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"6817d8f0\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"select\",\"id\":6,\"formId\":1,\"label\":\"\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Botox &amp; Anti-Wrinkle\",\"value\":\"Botox & Anti-Wrinkle\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dermal Fillers\",\"value\":\"Dermal Fillers\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Skin Boosters\",\"value\":\"Skin Boosters\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"PDRN \\/ Salmon DNA\",\"value\":\"PDRN \\/ Salmon DNA\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Biostimulators\",\"value\":\"Biostimulators\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Microneedling\",\"value\":\"Microneedling\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"PRP\",\"value\":\"PRP\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"IV Therapy &amp; Wellness\",\"value\":\"IV Therapy & Wellness\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"select\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"Preferred Treatment\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"enableEnhancedUI\":false,\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableDisplayInColumns\":\"\",\"enablePrice\":\"\",\"layoutGroupId\":\"0330c917\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"}],\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12,\"id\":\"submit\"},\"title\":\"Contac Us\",\"description\":\"\",\"version\":\"2.10.2\",\"id\":1,\"markupVersion\":2,\"nextFieldId\":8,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"validationPlacement\":\"below\",\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"\",\"saveButtonText\":\"Save & Continue\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"honeypotAction\":\"spam\",\"submitSpeedCheckThreshold\":2000,\"submitSpeedCheckMode\":\"normal\",\"validationSummary\":false,\"deprecated\":\"\",\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableSpamConfirmation\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save & Continue\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"enableSubmitSpeedCheck\":false}",NULL,"{\"6a259f30d9f2f\":{\"id\":\"6a259f30d9f2f\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"Thanks for contacting us! We will get in touch with you shortly.\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\"}}","{\"6a259f30d9db9\":{\"id\":\"6a259f30d9db9\",\"isActive\":true,\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}"),
("2","{\"fields\":[{\"is_payment\":false,\"type\":\"text\",\"id\":1,\"formId\":2,\"label\":\"Full Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"text\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableDisplayInColumns\":\"\",\"enablePasswordInput\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"6709faa3\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"phone\",\"id\":4,\"formId\":2,\"label\":\"Phone Number\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"phone\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableDisplayInColumns\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"6709faa3\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"number\",\"id\":6,\"formId\":2,\"label\":\"Age\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"number\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableDisplayInColumns\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"d72e2fcf\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"select\",\"id\":22,\"formId\":2,\"label\":\"Gender\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Female\",\"value\":\"Female\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Male\",\"value\":\"Male\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"select\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"enableEnhancedUI\":false,\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableDisplayInColumns\":\"\",\"enablePrice\":\"\",\"layoutGroupId\":\"d72e2fcf\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"date\",\"id\":18,\"formId\":2,\"label\":\"Select date\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"dateType\":\"datepicker\",\"dateFormat\":\"dmy\",\"dateFormatPlacement\":\"below\",\"calendarIconType\":\"calendar\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"date\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"calendarIconUrl\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableDisplayInColumns\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"55624418\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"is_payment\":false,\"type\":\"select\",\"id\":21,\"formId\":2,\"label\":\"Select time\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"09:00\",\"value\":\"09:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"09:30\",\"value\":\"09:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"10:00\",\"value\":\"10:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"10:30\",\"value\":\"10:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"11:00\",\"value\":\"11:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"11:30\",\"value\":\"11:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"12:00\",\"value\":\"12:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"12:30\",\"value\":\"12:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"13:00\",\"value\":\"13:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"13:30\",\"value\":\"13:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"14:00\",\"value\":\"14:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"14:30\",\"value\":\"14:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"15:00\",\"value\":\"15:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"15:30\",\"value\":\"15:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"16:00\",\"value\":\"16:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"16:30\",\"value\":\"16:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"17:00\",\"value\":\"17:00\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"17:30\",\"value\":\"17:30\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"18:00\",\"value\":\"18:00\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"select\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"enableEnhancedUI\":false,\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableDisplayInColumns\":\"\",\"enablePrice\":\"\",\"layoutGroupId\":\"55624418\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"}],\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12,\"id\":\"submit\"},\"title\":\"Booking\",\"description\":\"\",\"version\":\"2.10.2\",\"id\":2,\"markupVersion\":2,\"nextFieldId\":23,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"validationPlacement\":\"below\",\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"\",\"saveButtonText\":\"Save & Continue\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"honeypotAction\":\"spam\",\"submitSpeedCheckThreshold\":2000,\"submitSpeedCheckMode\":\"normal\",\"validationSummary\":false,\"deprecated\":\"\",\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableSpamConfirmation\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save & Continue\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"enableSubmitSpeedCheck\":false}","a:4:{i:0;s:1:\"1\";i:2;s:1:\"4\";i:4;s:2:\"18\";i:5;s:2:\"21\";}","{\"6a27f9f6b0c6b\":{\"id\":\"6a27f9f6b0c6b\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"<blockquote class=\\\"\\\" data-path-to-node=\\\"4\\\">\\r\\n<p data-path-to-node=\\\"4,0\\\"><b data-path-to-node=\\\"4,0\\\" data-index-in-node=\\\"0\\\">Thank You!<\\/b> Your consultation request has been successfully submitted. Our team will contact you shortly to confirm your appointment.<\\/p>\\r\\n<\\/blockquote>\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\",\"event\":\"\",\"disableAutoformat\":false,\"page\":\"\",\"conditionalLogic\":[]}}","{\"6a27f9f6b09cd\":{\"id\":\"6a27f9f6b09cd\",\"isActive\":true,\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}");

INSERT IGNORE INTO `wp_gf_form_view` VALUES 
("1","1","2026-06-08 13:05:27","","4"),
("2","2","2026-06-09 13:04:59","","10"),
("3","2","2026-06-11 14:16:21","","43"),
("4","1","2026-06-12 09:35:27","","7"),
("5","2","2026-06-13 07:09:18","","26"),
("6","1","2026-06-13 17:15:15","","28"),
("7","2","2026-06-14 09:49:09","","382"),
("8","1","2026-06-14 17:45:30","","12"),
("9","2","2026-06-15 20:02:36","","233"),
("10","1","2026-06-15 20:03:42","","12"),
("11","2","2026-06-16 21:01:02","","461"),
("12","1","2026-06-16 22:26:55","","20"),
("13","2","2026-06-18 06:38:10","","162"),
("14","1","2026-06-18 06:43:21","","4"),
("15","2","2026-06-19 11:20:08","","414"),
("16","1","2026-06-19 14:50:22","","36"),
("17","2","2026-06-20 21:23:41","","222"),
("18","1","2026-06-20 21:30:46","","20"),
("19","1","2026-06-22 19:46:36","","12"),
("20","2","2026-06-22 19:46:40","","182"),
("21","2","2026-06-23 21:27:59","","783"),
("22","1","2026-06-24 07:39:13","","2"),
("23","2","2026-06-25 09:52:40","","338"),
("24","1","2026-06-25 09:53:05","","3"),
("25","1","2026-06-26 10:01:07","","5"),
("26","2","2026-06-26 10:01:23","","492"),
("27","2","2026-06-27 17:12:57","","354"),
("28","1","2026-06-27 17:15:31","","6"),
("29","2","2026-06-29 04:19:38","","342"),
("30","1","2026-06-29 04:24:01","","4"),
("31","2","2026-06-30 04:39:42","","428"),
("32","1","2026-06-30 13:19:40","","8"),
("33","2","2026-07-01 10:06:10","","328"),
("34","1","2026-07-02 09:23:12","","8"),
("35","2","2026-07-02 10:15:14","","1061");

INSERT IGNORE INTO `wp_options` VALUES 
("1","siteurl","https://dr.frex.digital","yes"),
("2","home","https://dr.frex.digital","yes"),
("3","blogname","Dr Soheila","yes"),
("4","blogdescription","Beauty, refined by a doctor","yes"),
("5","users_can_register","0","yes"),
("6","admin_email","tahoora.av27@gmail.com","yes"),
("7","start_of_week","1","yes"),
("8","use_balanceTags","0","yes"),
("9","use_smilies","0","yes"),
("10","require_name_email","1","yes"),
("11","comments_notify","1","yes"),
("12","posts_per_rss","10","yes"),
("13","rss_use_excerpt","0","yes"),
("14","mailserver_url","mail.example.com","yes"),
("15","mailserver_login","login@example.com","yes"),
("16","mailserver_pass","password","yes"),
("17","mailserver_port","110","yes"),
("18","default_category","1","yes"),
("19","default_comment_status","open","yes"),
("20","default_ping_status","open","yes"),
("21","default_pingback_flag","1","yes"),
("22","posts_per_page","10","yes"),
("23","date_format","F j, Y","yes"),
("24","time_format","g:i a","yes"),
("25","links_updated_date_format","F j, Y g:i a","yes"),
("26","comment_moderation","0","yes"),
("27","moderation_notify","1","yes"),
("28","permalink_structure","/%postname%/","yes"),
("29","rewrite_rules","a:234:{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: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:55:\"class_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?class_category=$matches[1]&feed=$matches[2]\";s:50:\"class_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?class_category=$matches[1]&feed=$matches[2]\";s:31:\"class_category/([^/]+)/embed/?$\";s:47:\"index.php?class_category=$matches[1]&embed=true\";s:43:\"class_category/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?class_category=$matches[1]&paged=$matches[2]\";s:25:\"class_category/([^/]+)/?$\";s:36:\"index.php?class_category=$matches[1]\";s:33:\"class/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"class/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"class/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"class/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"class/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"class/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"class/([^/]+)/embed/?$\";s:38:\"index.php?class=$matches[1]&embed=true\";s:26:\"class/([^/]+)/trackback/?$\";s:32:\"index.php?class=$matches[1]&tb=1\";s:34:\"class/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?class=$matches[1]&paged=$matches[2]\";s:41:\"class/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?class=$matches[1]&cpage=$matches[2]\";s:30:\"class/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?class=$matches[1]&page=$matches[2]\";s:22:\"class/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"class/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"class/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"class/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"class/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"class/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"instructor/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"instructor/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"instructor/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"instructor/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"instructor/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"instructor/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"instructor/([^/]+)/embed/?$\";s:43:\"index.php?instructor=$matches[1]&embed=true\";s:31:\"instructor/([^/]+)/trackback/?$\";s:37:\"index.php?instructor=$matches[1]&tb=1\";s:39:\"instructor/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?instructor=$matches[1]&paged=$matches[2]\";s:46:\"instructor/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?instructor=$matches[1]&cpage=$matches[2]\";s:35:\"instructor/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?instructor=$matches[1]&page=$matches[2]\";s:27:\"instructor/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"instructor/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"instructor/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"instructor/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"instructor/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"instructor/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:12:\"sitemap\\.xml\";s:23:\"index.php?sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=5&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:12:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:34:\"advanced-custom-fields-pro/acf.php\";i:2;s:32:\"duplicate-page/duplicatepage.php\";i:3;s:33:\"duplicator-pro/duplicator-pro.php\";i:4;s:25:\"float-menu/float-menu.php\";i:5;s:33:\"fusion-builder/fusion-builder.php\";i:6;s:27:\"fusion-core/fusion-core.php\";i:7;s:37:\"imunify-security/imunify-security.php\";i:8;s:35:\"insert-headers-and-footers/ihaf.php\";i:9;s:33:\"instagram-feed/instagram-feed.php\";i:10;s:23:\"wp-rocket/wp-rocket.php\";i:11;s:52:\"wpconsent-cookies-banner-privacy-suite/wpconsent.php\";}","yes"),
("34","category_base","","yes"),
("35","ping_sites","https://rpc.pingomatic.com/","yes"),
("36","comment_max_links","2","yes"),
("37","gmt_offset","0","yes"),
("38","default_email_category","1","yes"),
("39","recently_edited","","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","61833","yes"),
("47","uploads_use_yearmonth_folders","1","yes"),
("48","upload_path","","yes"),
("49","blog_public","1","yes"),
("50","default_link_category","2","yes"),
("51","show_on_front","page","yes"),
("52","tag_base","","yes"),
("53","show_avatars","1","yes"),
("54","avatar_rating","G","yes"),
("55","upload_url_path","","yes"),
("56","thumbnail_size_w","150","yes"),
("57","thumbnail_size_h","150","yes"),
("58","thumbnail_crop","1","yes"),
("59","medium_size_w","300","yes"),
("60","medium_size_h","300","yes"),
("61","avatar_default","mystery","yes"),
("62","large_size_w","1024","yes"),
("63","large_size_h","1024","yes"),
("64","image_default_link_type","none","yes"),
("65","image_default_size","","yes"),
("66","image_default_align","","yes"),
("67","close_comments_for_old_posts","0","yes"),
("68","close_comments_days_old","14","yes"),
("69","thread_comments","1","yes"),
("70","thread_comments_depth","5","yes"),
("71","page_comments","0","yes"),
("72","comments_per_page","50","yes"),
("73","default_comments_page","newest","yes"),
("74","comment_order","asc","yes"),
("75","sticky_posts","a:0:{}","yes"),
("76","widget_categories","a:0:{}","yes"),
("77","widget_text","a:0:{}","yes"),
("78","widget_rss","a:0:{}","yes"),
("79","uninstall_plugins","a:2:{s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";s:37:\"imunify-security/imunify-security.php\";a:2:{i:0;s:41:\"CloudLinux\\Imunify\\App\\Bot\\LifecycleHooks\";i:1;s:11:\"onUninstall\";}}","no"),
("80","timezone_string","","yes"),
("81","page_for_posts","0","yes"),
("82","page_on_front","5","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","0","yes"),
("90","show_comments_cookies_opt_in","1","yes"),
("91","admin_email_lifespan","1796216828","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:{}","off"),
("99","WPLANG","","yes"),
("100","wp_user_roles","a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:83:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"duplicator_pro_basic\";b:1;s:21:\"duplicator_pro_create\";b:1;s:23:\"duplicator_pro_schedule\";b:1;s:22:\"duplicator_pro_storage\";b:1;s:29:\"duplicator_pro_backup_restore\";b:1;s:21:\"duplicator_pro_import\";b:1;s:21:\"duplicator_pro_export\";b:1;s:23:\"duplicator_pro_settings\";b:1;s:22:\"duplicator_pro_license\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:20:\"wpcode_edit_snippets\";b:1;s:24:\"wpcode_activate_snippets\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{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: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","post_count","4","yes"),
("102","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"),
("103","sidebars_widgets","a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}","yes"),
("104","cron","a:24:{i:1783017477;a:4:{s:32:\"action_scheduler_run_queue_rucss\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}s:24:\"rocket_saas_pending_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:24:\"rocket_saas_pending_jobs\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}s:26:\"rocket_saas_on_submit_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:26:\"rocket_saas_on_submit_jobs\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1783017478;a:1:{s:30:\"rocket_preload_process_pending\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"rocket_preload_process_pending\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1783019817;a:1:{s:22:\"check_live_stats_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1783019854;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:1783020358;a:1:{s:23:\"rocket_purge_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:34:\"rocket_expired_cache_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1783024554;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"4c13b6ec168a022d7dbe3ea5a686233b\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:2925;}}}}i:1783034818;a:1:{s:37:\"rocket_preload_revert_old_failed_rows\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:29:\"rocket_revert_old_failed_rows\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1783047346;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1783047347;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1783048654;a:1:{s:39:\"WPEngineSecurityAuditor_Scans_scheduler\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1783052584;a:2:{s:21:\"sb_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1783052644;a:1:{s:15:\"sbi_feed_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1783077957;a:4:{s:27:\"rocket_update_dynamic_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:33:\"rocket_saas_clean_rows_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:30:\"rocket_remove_saas_failed_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"rocket_remove_saas_failed_jobs\";s:4:\"args\";a:0:{}s:8:\"interval\";i:259200;}}s:32:\"rocket_performance_hints_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1783078557;a:1:{s:36:\"rocket_preload_clean_rows_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1783090546;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1783090778;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1783091855;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1783095142;a:1:{s:17:\"gravityforms_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1783178254;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1783317600;a:2:{s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"sbi_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1783349823;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:1783501018;a:1:{s:26:\"wpcode_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1783618883;a:1:{s:29:\"wpconsent_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}","on"),
("105","widget_pages","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("106","widget_calendar","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("107","widget_archives","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("108","widget_media_audio","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("109","widget_media_image","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("110","widget_media_gallery","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("111","widget_media_video","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("112","widget_meta","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("113","widget_search","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("114","widget_recent-posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("115","widget_recent-comments","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("116","widget_tag_cloud","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("117","widget_nav_menu","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("118","widget_custom_html","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("119","widget_wpe_powered_by_widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("120","theme_mods_twentytwentythree","a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1687533500;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}","off"),
("121","https_detection_errors","a:0:{}","off"),
("122","ai1wmme_plugin_key","5c102069-99d8-4e5f-ace2-361ec445f07b","yes"),
("125","current_theme","Avada Child","yes"),
("126","theme_mods_Avada","a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1780325792;s:4:\"data\";a:10:{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:{}}}}","off"),
("127","theme_switched","","yes"),
("128","avada_version","7.13.0","yes"),
("129","shop_catalog_image_size","a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}","yes"),
("130","shop_single_image_size","a:3:{s:5:\"width\";i:700;s:6:\"height\";s:0:\"\";i:0;i:0;}","yes"),
("131","shop_thumbnail_image_size","a:3:{s:5:\"width\";i:120;s:6:\"height\";s:0:\"\";i:0;i:0;}","yes"),
("132","woocommerce_single_image_width","700","yes"),
("133","woocommerce_thumbnail_image_width","500","yes"),
("134","woocommerce_thumbnail_cropping","uncropped","yes"),
("135","fusion_dynamic_css_posts","a:599:{i:1594;b:1;i:5;b:1;i:1618;b:1;i:952;b:1;i:964;b:1;i:968;b:1;i:1644;b:1;i:1646;b:1;i:1649;b:1;i:1651;b:1;i:1653;b:1;i:1654;b:1;i:1686;b:1;i:1704;b:1;i:194;b:1;i:197;b:1;i:200;b:1;i:48;b:1;i:50;b:1;i:52;b:1;i:54;b:1;i:56;b:1;i:920;b:1;i:922;b:1;i:939;b:1;i:943;b:1;i:1180;b:1;i:1186;b:1;i:1189;b:1;i:1193;b:1;i:1199;b:1;i:1203;b:1;i:286;b:1;i:297;b:1;i:298;b:1;i:348;b:1;i:318;b:1;i:339;b:1;i:340;b:1;i:347;b:1;s:9:\"1-archive\";b:1;s:10:\"13-archive\";b:1;i:1353;b:1;i:1579;b:1;i:1587;b:1;i:948;b:1;i:1732;b:1;i:2043;b:1;i:2044;b:0;i:2045;b:1;i:2046;b:0;i:2047;b:1;i:2048;b:0;i:2049;b:1;i:2050;b:0;i:2051;b:1;i:2052;b:0;i:2053;b:1;i:2055;b:1;i:2056;b:0;i:2057;b:1;i:2058;b:0;i:2059;b:1;i:2060;b:0;i:2061;b:1;i:2062;b:0;i:2063;b:1;i:2064;b:0;i:2065;b:1;i:2067;b:1;i:2068;b:0;i:2069;b:1;i:2070;b:0;i:2071;b:1;i:2072;b:0;i:2073;b:1;i:2074;b:0;i:2075;b:1;i:2076;b:0;i:2077;b:1;i:2078;b:0;i:2079;b:1;i:2080;b:0;i:2081;b:1;i:2082;b:0;i:2083;b:1;i:2084;b:0;i:2085;b:1;i:2086;b:0;i:2087;b:1;i:2088;b:0;i:2089;b:1;i:2090;b:0;i:2091;b:1;i:2092;b:0;i:2093;b:1;i:2094;b:0;i:2095;b:1;i:2096;b:0;i:2097;b:1;i:2098;b:0;i:2099;b:1;i:2100;b:0;i:2101;b:1;i:2102;b:0;i:2103;b:1;i:2104;b:0;i:2105;b:1;i:2106;b:0;i:2107;b:1;i:2108;b:0;i:2109;b:1;i:2110;b:0;i:2111;b:1;i:2112;b:0;i:2113;b:1;i:2114;b:0;i:2115;b:1;i:2116;b:0;i:2117;b:1;i:2119;b:1;i:2121;b:1;i:2122;b:0;i:2123;b:1;i:2124;b:0;i:2125;b:1;i:2126;b:0;i:2127;b:1;i:2128;b:0;i:2129;b:1;i:2130;b:0;i:2131;b:1;i:2132;b:0;i:2133;b:1;i:2134;b:0;i:2135;b:1;i:2136;b:0;i:2137;b:1;i:2138;b:0;i:2139;b:0;i:2140;b:0;i:2141;b:0;i:2142;b:0;i:2143;b:0;i:2144;b:0;i:2145;b:0;i:2146;b:0;i:2147;b:0;i:2148;b:0;i:2149;b:0;i:2150;b:0;i:2151;b:0;i:1034;b:0;i:2152;b:0;i:2153;b:0;i:2154;b:0;i:2155;b:0;i:2156;b:0;i:2157;b:0;i:2158;b:0;i:2159;b:0;i:2160;b:0;i:2161;b:0;i:2162;b:0;i:2163;b:0;i:2164;b:1;i:2165;b:0;i:2166;b:1;i:2167;b:0;i:2168;b:1;i:2169;b:0;i:2170;b:1;i:2171;b:0;i:2172;b:0;i:2173;b:0;i:2174;b:0;i:2175;b:0;i:2022;b:0;i:2023;b:0;i:2024;b:0;i:2025;b:0;i:2176;b:0;i:2179;b:0;i:1436;b:0;i:2180;b:0;i:2193;b:0;i:2194;b:0;i:2195;b:0;i:2196;b:0;i:2197;b:0;i:2198;b:0;i:2199;b:0;i:2200;b:0;i:2201;b:0;i:2202;b:0;i:2203;b:0;i:2204;b:0;i:2205;b:0;i:2206;b:0;i:2207;b:0;i:2208;b:0;i:2209;b:0;i:2210;b:0;i:2211;b:0;i:2212;b:0;i:2213;b:0;i:2214;b:0;i:2215;b:0;i:2216;b:0;i:2217;b:0;i:2218;b:0;i:2219;b:0;i:2220;b:0;i:2221;b:0;i:2222;b:0;i:2223;b:0;i:2224;b:0;i:2225;b:0;i:2226;b:0;i:2227;b:0;i:2228;b:0;i:2229;b:0;i:2230;b:0;i:2231;b:0;i:2232;b:0;i:2233;b:0;i:2234;b:0;i:2235;b:0;i:2236;b:0;i:2237;b:0;i:2238;b:0;i:2239;b:0;i:2240;b:0;i:2245;b:0;i:2249;b:0;i:2250;b:0;i:2251;b:0;i:2252;b:0;s:6:\"global\";b:1;i:2253;b:0;i:2254;b:0;i:2255;b:0;i:2256;b:0;i:2257;b:0;i:2258;b:0;i:2259;b:0;i:2260;b:0;i:2261;b:0;i:2262;b:0;i:2263;b:0;i:2264;b:0;i:2265;b:0;i:2266;b:0;i:2267;b:0;i:2268;b:0;i:2269;b:0;i:2270;b:0;i:2271;b:0;i:2272;b:0;i:2273;b:0;i:2274;b:0;i:2275;b:0;i:2276;b:0;i:2277;b:0;i:2278;b:0;i:2279;b:0;i:2280;b:0;i:2281;b:0;i:2282;b:0;i:2283;b:0;i:2284;b:0;i:2285;b:0;i:2286;b:0;i:2287;b:0;i:2288;b:0;i:2289;b:0;i:2290;b:0;i:2291;b:0;i:2292;b:0;i:2293;b:0;i:2294;b:0;i:2295;b:0;i:2296;b:0;i:2297;b:0;i:2298;b:0;i:2299;b:0;i:2300;b:0;i:2301;b:0;i:2302;b:0;i:2303;b:0;i:2304;b:0;i:2305;b:0;i:2306;b:0;i:2307;b:0;i:2308;b:0;i:2310;b:0;i:2311;b:0;i:2312;b:0;i:2313;b:0;i:2324;b:0;i:2325;b:0;i:2326;b:0;i:2327;b:0;i:2328;b:0;i:2329;b:0;i:2330;b:0;i:2331;b:0;i:2332;b:0;i:2333;b:0;i:2334;b:0;i:2335;b:0;i:2336;b:0;i:2337;b:0;i:2338;b:0;i:2339;b:0;i:2340;b:0;i:2341;b:0;i:2342;b:0;i:2343;b:0;i:2344;b:0;i:2345;b:0;i:2346;b:0;i:2347;b:0;i:2348;b:0;i:2349;b:0;i:2350;b:0;i:2351;b:0;i:2352;b:0;i:2353;b:0;i:2354;b:0;i:2355;b:0;i:2356;b:0;i:2357;b:0;i:2358;b:0;i:2359;b:0;i:2360;b:0;i:2361;b:0;i:2366;b:0;i:2367;b:0;i:2368;b:0;i:2369;b:0;i:2370;b:0;i:2371;b:0;i:2372;b:0;i:2373;b:0;i:2374;b:0;i:2375;b:0;i:2378;b:0;i:2380;b:0;i:2381;b:0;i:2382;b:0;i:2383;b:0;i:2385;b:0;i:2388;b:0;i:2391;b:0;i:2394;b:0;i:2397;b:0;i:2400;b:0;i:2401;b:0;i:2402;b:0;i:2404;b:0;i:2405;b:0;i:2410;b:0;i:2411;b:0;i:2413;b:0;i:2424;b:0;i:2425;b:0;i:2426;b:0;i:2427;b:0;i:2428;b:1;i:2429;b:0;i:2430;b:0;i:2431;b:0;i:2432;b:0;i:2433;b:0;i:2434;b:0;i:2435;b:0;i:2436;b:0;i:2437;b:0;i:2438;b:0;i:2440;b:0;i:2441;b:0;i:2442;b:0;i:2443;b:0;i:2447;b:0;i:2448;b:0;i:2449;b:0;i:2452;b:0;i:2453;b:0;i:2454;b:0;i:2463;b:0;i:2464;b:0;i:2473;b:0;i:2476;b:0;i:2481;b:0;i:2482;b:0;i:2483;b:0;i:2488;b:0;i:2501;b:0;i:2502;b:0;i:2505;b:0;i:2510;b:0;i:2513;b:0;i:2519;b:0;i:2520;b:0;i:2525;b:0;i:2526;b:0;i:2527;b:0;i:2528;b:0;i:2542;b:0;i:2543;b:0;i:2559;b:0;i:2562;b:0;i:2565;b:0;i:2568;b:0;i:2569;b:0;i:2572;b:0;i:2575;b:0;i:2580;b:0;i:2583;b:0;i:2586;b:0;i:2595;b:0;i:2596;b:0;i:2597;b:0;i:2598;b:0;i:2605;b:0;i:2608;b:0;i:2609;b:0;i:2610;b:0;i:2612;b:0;i:2615;b:0;i:2616;b:0;i:2617;b:1;i:2618;b:0;i:2619;b:0;i:2620;b:0;i:2621;b:0;i:2622;b:0;i:2623;b:0;i:2624;b:0;i:2625;b:0;i:2627;b:0;i:2628;b:0;i:2629;b:0;i:2630;b:0;i:2631;b:0;i:2632;b:0;i:2633;b:0;i:2634;b:0;i:2635;b:0;i:2636;b:0;i:2637;b:0;i:2638;b:0;i:2643;b:0;i:2645;b:0;i:2646;b:0;i:2647;b:0;i:2652;b:0;i:2653;b:0;i:2658;b:0;i:2667;b:0;i:2674;b:0;i:2675;b:0;i:2678;b:0;i:2683;b:0;i:2684;b:0;i:2689;b:0;i:2692;b:0;i:2697;b:0;i:2702;b:0;i:2705;b:0;i:2708;b:0;i:2713;b:0;i:2715;b:0;i:2716;b:0;i:2720;b:0;i:2723;b:0;i:2724;b:0;i:2727;b:0;i:2730;b:0;i:2735;b:0;i:2740;b:0;i:2741;b:0;i:2742;b:0;i:2747;b:0;i:2748;b:0;i:2753;b:0;i:2756;b:0;i:2761;b:0;i:2762;b:0;i:2763;b:0;i:2764;b:0;i:2765;b:0;i:2766;b:0;i:2767;b:0;i:2768;b:0;i:2769;b:0;i:2770;b:0;i:2771;b:0;i:2772;b:0;i:2773;b:0;i:2774;b:0;i:2775;b:0;i:2777;b:0;i:2778;b:0;i:2779;b:0;i:2780;b:0;i:2781;b:0;i:2784;b:0;i:2786;b:0;i:2788;b:0;i:2789;b:0;i:2790;b:0;i:2791;b:0;i:2792;b:0;i:2793;b:0;i:2794;b:0;i:2795;b:0;i:2796;b:0;i:2797;b:0;i:2798;b:0;i:2799;b:0;i:2800;b:0;i:2801;b:0;i:2802;b:0;i:2803;b:0;i:2806;b:0;i:2807;b:0;i:2808;b:0;i:2809;b:0;i:2810;b:0;i:2811;b:0;i:2812;b:0;i:2813;b:0;i:2814;b:0;i:2815;b:0;i:2816;b:0;i:2817;b:0;i:2818;b:0;i:2819;b:0;i:2820;b:0;i:2821;b:0;i:2822;b:0;i:2823;b:0;i:2824;b:0;i:2825;b:0;i:2826;b:0;i:2827;b:0;i:2828;b:0;i:2829;b:0;i:2830;b:0;i:2831;b:0;i:2832;b:0;i:2833;b:0;i:2834;b:0;i:2835;b:0;i:2836;b:0;i:2837;b:0;i:2839;b:0;i:2840;b:0;i:2842;b:0;i:2844;b:0;i:2846;b:0;i:2847;b:0;i:2849;b:0;i:2851;b:0;i:2859;b:0;i:2861;b:0;i:2863;b:0;i:2865;b:0;i:2867;b:0;i:2871;b:0;i:2873;b:0;i:2875;b:0;i:2877;b:0;i:2879;b:0;i:2881;b:0;i:2883;b:0;i:2885;b:0;i:2887;b:0;i:2889;b:0;i:2891;b:0;i:2893;b:0;i:2895;b:0;i:2897;b:0;i:2899;b:0;i:2901;b:0;i:2903;b:0;i:2905;b:0;i:2907;b:0;i:2909;b:0;i:2911;b:0;i:2913;b:0;i:2915;b:0;i:2917;b:0;i:2919;b:0;i:2921;b:0;i:2923;b:0;i:2924;b:0;}","yes"),
("136","fusion_dynamic_css_ids","a:599:{i:1594;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:5;s:32:\"74241feeeff4e50b3216298de32051ed\";i:1618;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:952;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:964;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:968;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1644;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:1646;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1649;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1651;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1653;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1654;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:1686;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1704;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:194;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:197;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:200;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:48;s:32:\"e757bc1e10416ac37832f9515caac65f\";i:50;s:32:\"e757bc1e10416ac37832f9515caac65f\";i:52;s:32:\"e757bc1e10416ac37832f9515caac65f\";i:54;s:32:\"e757bc1e10416ac37832f9515caac65f\";i:56;s:32:\"e757bc1e10416ac37832f9515caac65f\";i:920;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:922;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:939;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:943;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1180;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1186;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1189;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1193;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:1199;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1203;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:286;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:297;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:298;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:348;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:318;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:339;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:340;s:32:\"046fd33216c4265b5d200617b1a0a426\";i:347;s:32:\"046fd33216c4265b5d200617b1a0a426\";s:9:\"1-archive\";s:32:\"046fd33216c4265b5d200617b1a0a426\";s:10:\"13-archive\";s:32:\"046fd33216c4265b5d200617b1a0a426\";i:1353;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:1579;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:1587;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:948;s:32:\"4b6ac6a23d665de9ced0b72f028ab5b6\";i:1732;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2043;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2044;b:0;i:2045;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:2046;b:0;i:2047;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2048;b:0;i:2049;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2050;b:0;i:2051;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2052;b:0;i:2053;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2055;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2056;b:0;i:2057;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2058;b:0;i:2059;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2060;b:0;i:2061;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2062;b:0;i:2063;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2064;b:0;i:2065;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2067;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2068;b:0;i:2069;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2070;b:0;i:2071;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2072;b:0;i:2073;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2074;b:0;i:2075;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2076;b:0;i:2077;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2078;b:0;i:2079;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2080;b:0;i:2081;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2082;b:0;i:2083;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2084;b:0;i:2085;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2086;b:0;i:2087;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2088;b:0;i:2089;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2090;b:0;i:2091;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2092;b:0;i:2093;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2094;b:0;i:2095;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2096;b:0;i:2097;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2098;b:0;i:2099;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2100;b:0;i:2101;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2102;b:0;i:2103;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2104;b:0;i:2105;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2106;b:0;i:2107;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2108;b:0;i:2109;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2110;b:0;i:2111;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2112;b:0;i:2113;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2114;b:0;i:2115;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2116;b:0;i:2117;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2119;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2121;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2122;b:0;i:2123;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2124;b:0;i:2125;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2126;b:0;i:2127;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2128;b:0;i:2129;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2130;b:0;i:2131;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2132;b:0;i:2133;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2134;b:0;i:2135;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2136;b:0;i:2137;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2138;b:0;i:2139;b:0;i:2140;b:0;i:2141;b:0;i:2142;b:0;i:2143;b:0;i:2144;b:0;i:2145;b:0;i:2146;b:0;i:2147;b:0;i:2148;b:0;i:2149;b:0;i:2150;b:0;i:2151;b:0;i:1034;b:0;i:2152;b:0;i:2153;b:0;i:2154;b:0;i:2155;b:0;i:2156;b:0;i:2157;b:0;i:2158;b:0;i:2159;b:0;i:2160;b:0;i:2161;b:0;i:2162;b:0;i:2163;b:0;i:2164;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:2165;b:0;i:2166;s:32:\"81a1e8b65f340bd0216b4237c1d9ff8a\";i:2167;b:0;i:2168;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2169;b:0;i:2170;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2171;b:0;i:2172;b:0;i:2173;b:0;i:2174;b:0;i:2175;b:0;i:2022;b:0;i:2023;b:0;i:2024;b:0;i:2025;b:0;i:2176;b:0;i:2179;b:0;i:1436;b:0;i:2180;b:0;i:2193;b:0;i:2194;b:0;i:2195;b:0;i:2196;b:0;i:2197;b:0;i:2198;b:0;i:2199;b:0;i:2200;b:0;i:2201;b:0;i:2202;b:0;i:2203;b:0;i:2204;b:0;i:2205;b:0;i:2206;b:0;i:2207;b:0;i:2208;b:0;i:2209;b:0;i:2210;b:0;i:2211;b:0;i:2212;b:0;i:2213;b:0;i:2214;b:0;i:2215;b:0;i:2216;b:0;i:2217;b:0;i:2218;b:0;i:2219;b:0;i:2220;b:0;i:2221;b:0;i:2222;b:0;i:2223;b:0;i:2224;b:0;i:2225;b:0;i:2226;b:0;i:2227;b:0;i:2228;b:0;i:2229;b:0;i:2230;b:0;i:2231;b:0;i:2232;b:0;i:2233;b:0;i:2234;b:0;i:2235;b:0;i:2236;b:0;i:2237;b:0;i:2238;b:0;i:2239;b:0;i:2240;b:0;i:2245;b:0;i:2249;b:0;i:2250;b:0;i:2251;b:0;i:2252;b:0;i:791;s:32:\"8bade47401b3b587c6a2d7dd37fb3ac7\";i:2253;b:0;i:2254;b:0;i:2255;b:0;i:2256;b:0;i:2257;b:0;i:2258;b:0;i:2259;b:0;i:2260;b:0;i:2261;b:0;i:2262;b:0;i:2263;b:0;i:2264;b:0;i:2265;b:0;i:2266;b:0;i:2267;b:0;i:2268;b:0;i:2269;b:0;i:2270;b:0;i:2271;b:0;i:2272;b:0;i:2273;b:0;i:2274;b:0;i:2275;b:0;i:2276;b:0;i:2277;b:0;i:2278;b:0;i:2279;b:0;i:2280;b:0;i:2281;b:0;i:2282;b:0;i:2283;b:0;i:2284;b:0;i:2285;b:0;i:2286;b:0;i:2287;b:0;i:2288;b:0;i:2289;b:0;i:2290;b:0;i:2291;b:0;i:2292;b:0;i:2293;b:0;i:2294;b:0;i:2295;b:0;i:2296;b:0;i:2297;b:0;i:2298;b:0;i:2299;b:0;i:2300;b:0;i:2301;b:0;i:2302;b:0;i:2303;b:0;i:2304;b:0;i:2305;b:0;i:2306;b:0;i:2307;b:0;i:2308;b:0;i:2310;b:0;i:2311;b:0;i:2312;b:0;i:2313;b:0;i:2324;b:0;i:2325;b:0;i:2326;b:0;i:2327;b:0;i:2328;b:0;i:2329;b:0;i:2330;b:0;i:2331;b:0;i:2332;b:0;i:2333;b:0;i:2334;b:0;i:2335;b:0;i:2336;b:0;i:2337;b:0;i:2338;b:0;i:2339;b:0;i:2340;b:0;i:2341;b:0;i:2342;b:0;i:2343;b:0;i:2344;b:0;i:2345;b:0;i:2346;b:0;i:2347;b:0;i:2348;b:0;i:2349;b:0;i:2350;b:0;i:2351;b:0;i:2352;b:0;i:2353;b:0;i:2354;b:0;i:2355;b:0;i:2356;b:0;i:2357;b:0;i:2358;b:0;i:2359;b:0;i:2360;b:0;i:2361;b:0;i:2366;b:0;i:2367;b:0;i:2368;b:0;i:2369;b:0;i:2370;b:0;i:2371;b:0;i:2372;b:0;i:2373;b:0;i:2374;b:0;i:2375;b:0;i:2378;b:0;i:2380;b:0;i:2381;b:0;i:2382;b:0;i:2383;b:0;i:2385;b:0;i:2388;b:0;i:2391;b:0;i:2394;b:0;i:2397;b:0;i:2400;b:0;i:2401;b:0;i:2402;b:0;i:2404;b:0;i:2405;b:0;i:2410;b:0;i:2411;b:0;i:2413;b:0;i:2424;b:0;i:2425;b:0;i:2426;b:0;i:2427;b:0;i:2428;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2429;b:0;i:2430;b:0;i:2431;b:0;i:2432;b:0;i:2433;b:0;i:2434;b:0;i:2435;b:0;i:2436;b:0;i:2437;b:0;i:2438;b:0;i:2440;b:0;i:2441;b:0;i:2442;b:0;i:2443;b:0;i:2447;b:0;i:2448;b:0;i:2449;b:0;i:2452;b:0;i:2453;b:0;i:2454;b:0;i:2463;b:0;i:2464;b:0;i:2473;b:0;i:2476;b:0;i:2481;b:0;i:2482;b:0;i:2483;b:0;i:2488;b:0;i:2501;b:0;i:2502;b:0;i:2505;b:0;i:2510;b:0;i:2513;b:0;i:2519;b:0;i:2520;b:0;i:2525;b:0;i:2526;b:0;i:2527;b:0;i:2528;b:0;i:2542;b:0;i:2543;b:0;i:2559;b:0;i:2562;b:0;i:2565;b:0;i:2568;b:0;i:2569;b:0;i:2572;b:0;i:2575;b:0;i:2580;b:0;i:2583;b:0;i:2586;b:0;i:2595;b:0;i:2596;b:0;i:2597;b:0;i:2598;b:0;i:2605;b:0;i:2608;b:0;i:2609;b:0;i:2610;b:0;i:2612;b:0;i:2615;b:0;i:2616;b:0;i:2617;s:32:\"3d1a3d005caac8f911e9f8d647ecf8b0\";i:2618;b:0;i:2619;b:0;i:2620;b:0;i:2621;b:0;i:2622;b:0;i:2623;b:0;i:2624;b:0;i:2625;b:0;i:2627;b:0;i:2628;b:0;i:2629;b:0;i:2630;b:0;i:2631;b:0;i:2632;b:0;i:2633;b:0;i:2634;b:0;i:2635;b:0;i:2636;b:0;i:2637;b:0;i:2638;b:0;i:2643;b:0;i:2645;b:0;i:2646;b:0;i:2647;b:0;i:2652;b:0;i:2653;b:0;i:2658;b:0;i:2667;b:0;i:2674;b:0;i:2675;b:0;i:2678;b:0;i:2683;b:0;i:2684;b:0;i:2689;b:0;i:2692;b:0;i:2697;b:0;i:2702;b:0;i:2705;b:0;i:2708;b:0;i:2713;b:0;i:2715;b:0;i:2716;b:0;i:2720;b:0;i:2723;b:0;i:2724;b:0;i:2727;b:0;i:2730;b:0;i:2735;b:0;i:2740;b:0;i:2741;b:0;i:2742;b:0;i:2747;b:0;i:2748;b:0;i:2753;b:0;i:2756;b:0;i:2761;b:0;i:2762;b:0;i:2763;b:0;i:2764;b:0;i:2765;b:0;i:2766;b:0;i:2767;b:0;i:2768;b:0;i:2769;b:0;i:2770;b:0;i:2771;b:0;i:2772;b:0;i:2773;b:0;i:2774;b:0;i:2775;b:0;i:2777;b:0;i:2778;b:0;i:2779;b:0;i:2780;b:0;i:2781;b:0;i:2784;b:0;i:2786;b:0;i:2788;b:0;i:2789;b:0;i:2790;b:0;i:2791;b:0;i:2792;b:0;i:2793;b:0;i:2794;b:0;i:2795;b:0;i:2796;b:0;i:2797;b:0;i:2798;b:0;i:2799;b:0;i:2800;b:0;i:2801;b:0;i:2802;b:0;i:2803;b:0;i:2806;b:0;i:2807;b:0;i:2808;b:0;i:2809;b:0;i:2810;b:0;i:2811;b:0;i:2812;b:0;i:2813;b:0;i:2814;b:0;i:2815;b:0;i:2816;b:0;i:2817;b:0;i:2818;b:0;i:2819;b:0;i:2820;b:0;i:2821;b:0;i:2822;b:0;i:2823;b:0;i:2824;b:0;i:2825;b:0;i:2826;b:0;i:2827;b:0;i:2828;b:0;i:2829;b:0;i:2830;b:0;i:2831;b:0;i:2832;b:0;i:2833;b:0;i:2834;b:0;i:2835;b:0;i:2836;b:0;i:2837;b:0;i:2839;b:0;i:2840;b:0;i:2842;b:0;i:2844;b:0;i:2846;b:0;i:2847;b:0;i:2849;b:0;i:2851;b:0;i:2859;b:0;i:2861;b:0;i:2863;b:0;i:2865;b:0;i:2867;b:0;i:2871;b:0;i:2873;b:0;i:2875;b:0;i:2877;b:0;i:2879;b:0;i:2881;b:0;i:2883;b:0;i:2885;b:0;i:2887;b:0;i:2889;b:0;i:2891;b:0;i:2893;b:0;i:2895;b:0;i:2897;b:0;i:2899;b:0;i:2901;b:0;i:2903;b:0;i:2905;b:0;i:2907;b:0;i:2909;b:0;i:2911;b:0;i:2913;b:0;i:2915;b:0;i:2917;b:0;i:2919;b:0;i:2921;b:0;i:2923;b:0;i:2924;b:0;}","yes"),
("137","avada_disable_builder","1","yes"),
("138","avada_disable_encoding","1","yes"),
("139","revslider-valid-notice","false","yes"),
("141","finished_updating_comment_type","1","yes"),
("142","fusion_registration_data","a:1:{s:5:\"avada\";a:5:{s:13:\"purchase_code\";s:36:\"********-****-****-****-************\";s:8:\"is_valid\";b:1;s:5:\"token\";s:0:\"\";s:6:\"scopes\";a:0:{}s:6:\"errors\";s:0:\"\";}}","yes"),
("145","recently_activated","a:1:{s:25:\"duplicator/duplicator.php\";i:1783017421;}","off"),
("148","fusion_builder_version","3.13.0","yes"),
("149","fusion_core_version","5.13.0","yes"),
("150","widget_ad_125_125-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("151","widget_fusion_author-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("152","widget_contact_info-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("153","widget_pyre_tabs-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("154","widget_recent_works-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("155","widget_tweets-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("156","widget_flickr-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("157","widget_social_links-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("158","widget_facebook-like-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("159","widget_menu-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("160","widget_avada-vertical-menu-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("161","widget_form-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"),
("163","fusion_form_cleanup_datetime","1783028206","yes"),
("164","wpe-health-check-site-status-result","{\"good\":19,\"recommended\":3,\"critical\":0}","yes"),
("165","acf_version","6.8.2","yes"),
("167","avada_previous_version","a:6:{i:0;s:6:\"7.11.0\";i:1;s:6:\"7.11.1\";i:2;s:6:\"7.11.2\";i:3;s:6:\"7.11.3\";i:4;s:6:\"7.11.4\";i:5;s:6:\"7.12.0\";}","yes"),
("168","fresh_site","0","off"),
("170","fusion_tb_layout_default","{\\\"conditions\\\":[],\\\"template_terms\\\":{\\\"header\\\":\\\"7\\\",\\\"footer\\\":160}}","yes"),
("171","fusion_builder_frontend_preferences","a:19:{s:12:\"styling_mode\";s:5:\"light\";s:16:\"sidebar_position\";s:4:\"left\";s:12:\"editing_mode\";s:7:\"sidebar\";s:13:\"open_settings\";s:2:\"on\";s:18:\"keyboard_shortcuts\";s:2:\"on\";s:12:\"descriptions\";s:4:\"hide\";s:8:\"tooltips\";s:2:\"on\";s:13:\"sticky_header\";s:2:\"on\";s:18:\"transparent_header\";s:2:\"on\";s:15:\"element_filters\";s:2:\"on\";s:17:\"element_transform\";s:7:\"editing\";s:18:\"droppables_visible\";s:3:\"off\";s:15:\"sidebar_overlay\";s:3:\"off\";s:15:\"options_subtabs\";s:8:\"expanded\";s:15:\"rendering_logic\";s:2:\"on\";s:13:\"overWriteType\";s:11:\"replace-pos\";s:12:\"shouldInvert\";s:11:\"dont-invert\";s:16:\"contentPlacement\";s:17:\"load-type-replace\";s:12:\"imagesImport\";s:16:\"do-import-images\";}","yes"),
("173","fusion_options","a:976:{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:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}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:\"900\";s:17:\"visibility_medium\";s:4:\"1173\";s:22:\"typography_sensitivity\";s:4:\"0.00\";s:17:\"typography_factor\";s:4:\"1.50\";s:13:\"color_palette\";a:10:{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:\"#eeede9\";}s:6:\"color3\";a:2:{s:5:\"label\";s:7:\"Color 3\";s:5:\"color\";s:7:\"#e4dbc7\";}s:6:\"color4\";a:2:{s:5:\"label\";s:7:\"Color 4\";s:5:\"color\";s:21:\"rgba(228,219,199,0.3)\";}s:6:\"color5\";a:2:{s:5:\"label\";s:7:\"Color 5\";s:5:\"color\";s:7:\"#d3cab8\";}s:6:\"color6\";a:2:{s:5:\"label\";s:7:\"Color 6\";s:5:\"color\";s:7:\"#5c5c5c\";}s:6:\"color7\";a:2:{s:5:\"label\";s:7:\"Color 7\";s:5:\"color\";s:7:\"#312c29\";}s:6:\"color8\";a:2:{s:5:\"label\";s:7:\"Color 8\";s:5:\"color\";s:7:\"#000000\";}s:14:\"custom_color_1\";a:2:{s:5:\"label\";s:7:\"Color 9\";s:5:\"color\";s:7:\"#25d366\";}s:14:\"custom_color_2\";a:2:{s:5:\"label\";s:8:\"Color 10\";s:5:\"color\";s:21:\"rgba(228,219,199,0.7)\";}}s:13:\"primary_color\";s:17:\"var(--awb-color6)\";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:0:\"\";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: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:0:\"\";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: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:77:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-X.png\";s:2:\"id\";s:3:\"898\";s:6:\"height\";s:3:\"293\";s:5:\"width\";s:3:\"750\";s:9:\"thumbnail\";s:85:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-X-150x150.png\";}s:11:\"logo_retina\";a:5:{s:3:\"url\";s:78:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-2X.png\";s:2:\"id\";s:3:\"897\";s:6:\"height\";s:3:\"586\";s:5:\"width\";s:4:\"1500\";s:9:\"thumbnail\";s:86:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-2X-150x150.png\";}s:18:\"sticky_header_logo\";a:5:{s:3:\"url\";s:77:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-X.png\";s:2:\"id\";s:3:\"898\";s:6:\"height\";s:3:\"293\";s:5:\"width\";s:3:\"750\";s:9:\"thumbnail\";s:85:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-X-150x150.png\";}s:25:\"sticky_header_logo_retina\";a:5:{s:3:\"url\";s:78:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-2X.png\";s:2:\"id\";s:3:\"897\";s:6:\"height\";s:3:\"586\";s:5:\"width\";s:4:\"1500\";s:9:\"thumbnail\";s:86:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-2X-150x150.png\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:77:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-X.png\";s:2:\"id\";s:3:\"898\";s:6:\"height\";s:3:\"293\";s:5:\"width\";s:3:\"750\";s:9:\"thumbnail\";s:85:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-X-150x150.png\";}s:18:\"mobile_logo_retina\";a:5:{s:3:\"url\";s:78:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-2X.png\";s:2:\"id\";s:3:\"897\";s:6:\"height\";s:3:\"586\";s:5:\"width\";s:4:\"1500\";s:9:\"thumbnail\";s:86:\"https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-2X-150x150.png\";}s:8:\"fav_icon\";a:5:{s:3:\"url\";s:70:\"https://dr.frex.digital/wp-content/uploads/2026/06/favicon-32x32-1.png\";s:2:\"id\";s:3:\"892\";s:6:\"height\";s:2:\"32\";s:5:\"width\";s:2:\"32\";s:9:\"thumbnail\";s:70:\"https://dr.frex.digital/wp-content/uploads/2026/06/favicon-32x32-1.png\";}s:20:\"fav_icon_apple_touch\";a:5:{s:3:\"url\";s:75:\"https://dr.frex.digital/wp-content/uploads/2026/06/apple-icon-180x180-1.png\";s:2:\"id\";s:3:\"893\";s:6:\"height\";s:3:\"180\";s:5:\"width\";s:3:\"180\";s:9:\"thumbnail\";s:83:\"https://dr.frex.digital/wp-content/uploads/2026/06/apple-icon-180x180-1-150x150.png\";}s:16:\"fav_icon_android\";a:5:{s:3:\"url\";s:77:\"https://dr.frex.digital/wp-content/uploads/2026/06/android-icon-192x192-1.png\";s:2:\"id\";s:3:\"894\";s:6:\"height\";s:3:\"192\";s:5:\"width\";s:3:\"192\";s:9:\"thumbnail\";s:85:\"https://dr.frex.digital/wp-content/uploads/2026/06/android-icon-192x192-1-150x150.png\";}s:13:\"fav_icon_edge\";a:5:{s:3:\"url\";s:72:\"https://dr.frex.digital/wp-content/uploads/2026/06/ms-icon-310x310-1.png\";s:2:\"id\";s:3:\"895\";s:6:\"height\";s:3:\"310\";s:5:\"width\";s:3:\"310\";s:9:\"thumbnail\";s:80:\"https://dr.frex.digital/wp-content/uploads/2026/06/ms-icon-310x310-1-150x150.png\";}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:\"breacrumb_home_label\";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:0:\"\";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:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"600\";s:9:\"font-size\";s:4:\"73px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"-2%\";s:14:\"text-transform\";s:10:\"capitalize\";}s:11:\"typography2\";a:8:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:4:\"26px\";s:14:\"letter-spacing\";s:3:\"-2%\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography3\";a:8:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:4:\"Sora\";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:\"18px\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography4\";a:8:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"15px\";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:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"22px\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";}}s:15:\"body_typography\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"line-height\";s:34:\"var(--awb-typography4-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography4-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:10:\"link_color\";s:17:\"var(--awb-color7)\";s:16:\"link_hover_color\";s:25:\"var(--awb-custom_color_1)\";s:15:\"link_decoration\";s:1:\"0\";s:25:\"link_decoration_exclusion\";a:4:{i:0;s:7:\"buttons\";i:1;s:5:\"menus\";i:2;s:4:\"tocs\";i:3;s:11:\"tabstoggles\";}s:20:\"link_decoration_line\";s:4:\"none\";s:21:\"link_decoration_style\";s:5:\"solid\";s:25:\"link_decoration_thickness\";s:3:\"1px\";s:32:\"link_decoration_underline_offset\";s:4:\"auto\";s:26:\"link_decoration_line_hover\";s:4:\"none\";s:27:\"link_decoration_style_hover\";s:5:\"solid\";s:31:\"link_decoration_thickness_hover\";s:3:\"1px\";s:38:\"link_decoration_underline_offset_hover\";s:4:\"auto\";s:13:\"h1_typography\";a:12:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"73px\";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:37:\"var(--awb-typography1-text-transform)\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:13:\"h2_typography\";a:12:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"49px\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:14:\"text-transform\";s:37:\"var(--awb-typography1-text-transform)\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:13:\"h3_typography\";a:12:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"40px\";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:37:\"var(--awb-typography1-text-transform)\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:13:\"h4_typography\";a:12:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";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:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:14:\"text-transform\";s:37:\"var(--awb-typography1-text-transform)\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:13:\"h5_typography\";a:12:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";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:4:\"28px\";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:37:\"var(--awb-typography1-text-transform)\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:13:\"h6_typography\";a:12:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";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:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:14:\"text-transform\";s:37:\"var(--awb-typography1-text-transform)\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:21:\"post_title_typography\";a:10:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";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:4:\"none\";s:5:\"color\";s:17:\"var(--awb-color7)\";}s:29:\"post_titles_extras_typography\";a:10:{s:11:\"font-family\";s:7:\"Cottage\";s:11:\"font-backup\";s:0:\"\";s:7:\"variant\";s:3:\"400\";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:4:\"none\";s:5:\"color\";s:17:\"var(--awb-color7)\";}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:7:\"Cottage\";}s:5:\"woff2\";a:1:{i:0;a:5:{s:3:\"url\";s:70:\"https://dr.frex.digital/wp-content/uploads/2026/06/Cottage-MA0ln.woff2\";s:2:\"id\";s:4:\"1797\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:60:\"https://dr.frex.digital/wp-includes/images/media/default.svg\";}}s:4:\"woff\";a:1:{i:0;a:5:{s:3:\"url\";s:69:\"https://dr.frex.digital/wp-content/uploads/2026/06/Cottage-MA0ln.woff\";s:2:\"id\";s:4:\"1799\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:60:\"https://dr.frex.digital/wp-includes/images/media/default.svg\";}}s:3:\"ttf\";a:1:{i:0;a:5:{s:3:\"url\";s:68:\"https://dr.frex.digital/wp-content/uploads/2026/06/Cottage-MA0ln.ttf\";s:2:\"id\";s:4:\"1798\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:60:\"https://dr.frex.digital/wp-includes/images/media/default.svg\";}}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:\"0\";s:15:\"blog_post_title\";s:8:\"disabled\";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:\"0\";s:13:\"blog_comments\";s:1:\"0\";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:0:\"\";s:20:\"portfolio_with_front\";s:1:\"1\";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:4:\"dark\";s:13:\"lightbox_path\";s:10:\"horizontal\";s:24:\"lightbox_animation_speed\";s:6:\"normal\";s:13:\"lightbox_zoom\";s:4:\"1.00\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:13:\"lightbox_loop\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:4:\"0.70\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"0\";s:15:\"lightbox_social\";s:1:\"0\";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:\"15px\";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:27:\"search_add_woo_product_skus\";s:1:\"0\";s:18:\"search_form_design\";s:5:\"clean\";s:11:\"live_search\";s:1:\"0\";s:26:\"live_search_min_char_count\";s:1:\"4\";s:28:\"live_search_results_per_page\";s:3:\"100\";s:26:\"live_search_results_height\";s:3:\"250\";s:34:\"live_search_display_featured_image\";s:1:\"1\";s:29:\"live_search_display_post_type\";s:1:\"1\";s:13:\"search_layout\";s:4:\"grid\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_pagination_type\";s:10:\"pagination\";s:19:\"search_grid_columns\";s:1:\"3\";s:26:\"search_grid_column_spacing\";s:2:\"40\";s:21:\"search_content_length\";s:7:\"excerpt\";s:21:\"search_excerpt_length\";s:2:\"10\";s:25:\"search_strip_html_excerpt\";s:1:\"1\";s:22:\"search_featured_images\";s:1:\"1\";s:11:\"search_meta\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:26:\"search_new_search_position\";s:3:\"top\";s:18:\"gfonts_load_method\";s:5:\"local\";s:14:\"privacy_embeds\";s:1:\"0\";s:14:\"privacy_expiry\";s:2:\"30\";s:19:\"privacy_embed_types\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:22:\"privacy_embed_defaults\";a:0:{}s:16:\"privacy_bg_color\";s: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:\"0\";s:20:\"scrollbar_background\";s:17:\"var(--awb-color2)\";s:16:\"scrollbar_handle\";s:17:\"var(--awb-color4)\";s:8:\"faq_slug\";s:9:\"faq-items\";s:14:\"faq_with_front\";s:1:\"1\";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:\"0\";s:16:\"totop_background\";s:17:\"var(--awb-color7)\";s:22:\"totop_background_hover\";s:17:\"var(--awb-color5)\";s:16:\"totop_icon_color\";s:17:\"var(--awb-color1)\";s:16:\"totop_icon_hover\";s:17:\"var(--awb-color1)\";s:21:\"totop_scroll_progress\";s:1:\"0\";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:\"0\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:27:\"disable_mobile_image_hovers\";s:1:\"1\";s:9:\"status_yt\";s:1:\"0\";s:12:\"status_vimeo\";s:1:\"0\";s:11:\"status_gmap\";s:1:\"0\";s:18:\"status_fontawesome\";a:4:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";i:3;s:3:\"fal\";}s:28:\"fontawesome_v4_compatibility\";s:1:\"1\";s:22:\"status_fontawesome_pro\";s:1:\"0\";s:14:\"status_outline\";s:1:\"0\";s:19:\"meta_tags_separator\";s:1:\"-\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:26:\"disable_rich_snippet_title\";s:1:\"1\";s:27:\"disable_rich_snippet_author\";s:1:\"1\";s:25:\"disable_rich_snippet_date\";s:1:\"1\";s:24:\"disable_rich_snippet_faq\";s:1:\"1\";s:34:\"enable_block_editor_backend_styles\";s:1:\"1\";s:17:\"load_block_styles\";s:3:\"off\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:15:\"space_body_open\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:20:\"status_fusion_slider\";s:1:\"0\";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:\"0\";s:18:\"status_fusion_faqs\";s:1:\"0\";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:15:\"awb_image_sizes\";a:14:{i:0;s:10:\"fusion-200\";i:1;s:10:\"fusion-400\";i:2;s:10:\"fusion-600\";i:3;s:10:\"fusion-800\";i:4;s:11:\"fusion-1200\";i:5;s:10:\"blog-large\";i:6;s:11:\"blog-medium\";i:7;s:12:\"recent-posts\";i:8;s:22:\"recent-works-thumbnail\";i:9;s:14:\"portfolio-full\";i:10;s:13:\"portfolio-one\";i:11;s:13:\"portfolio-two\";i:12;s:15:\"portfolio-three\";i:13;s:14:\"portfolio-five\";}s:27:\"wp_big_image_size_threshold\";s:4:\"2560\";s:9:\"lazy_load\";s:5:\"avada\";s:17:\"lazy_load_iframes\";s:4:\"none\";s:17:\"font_face_display\";s:8:\"swap-all\";s:13:\"preload_fonts\";s:10:\"icon_fonts\";s:22:\"preload_fonts_variants\";a:1:{i:0;s:3:\"400\";}s:21:\"preload_fonts_subsets\";a:1:{i:0;s:5:\"latin\";}s:15:\"emojis_disabled\";s:8:\"disabled\";s:23:\"jquery_migrate_disabled\";s:8:\"disabled\";s:12:\"defer_jquery\";s:1:\"1\";s:12:\"defer_styles\";s:1:\"0\";s:11:\"gzip_status\";s:1:\"0\";s:12:\"video_facade\";s:3:\"off\";s:18:\"clear_object_cache\";s:1:\"0\";s:16:\"css_cache_method\";s:4:\"file\";s:30:\"css_combine_third_party_assets\";s:1:\"1\";s:19:\"media_queries_async\";s:1:\"0\";s:12:\"critical_css\";s:1:\"1\";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: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:\"17px\";s:5:\"right\";s:4:\"22px\";s:6:\"bottom\";s:4:\"17px\";s:4:\"left\";s:4:\"22px\";}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:0:\"\";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-color7)\";s:28:\"button_gradient_bottom_color\";s:17:\"var(--awb-color7)\";s:31:\"button_gradient_top_color_hover\";s:17:\"var(--awb-color3)\";s:34:\"button_gradient_bottom_color_hover\";s:17:\"var(--awb-color3)\";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-color7)\";s:18:\"button_bevel_color\";s:108:\"hsla(var(--awb-color3-h),calc(var(--awb-color3-s) - 5%),calc(var(--awb-color3-l) - 10%),var(--awb-color3-a))\";s:24:\"button_bevel_color_hover\";s:108:\"hsla(var(--awb-color3-h),calc(var(--awb-color3-s) - 5%),calc(var(--awb-color3-l) - 10%),var(--awb-color3-a))\";s:19:\"button_border_width\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:20:\"button_border_radius\";a:4:{s:8:\"top_left\";s:2:\"10\";s:9:\"top_right\";s:2:\"10\";s:12:\"bottom_right\";s:2:\"10\";s:11:\"bottom_left\";s:2:\"10\";}s:19:\"button_border_color\";s:17:\"var(--awb-color7)\";s:25:\"button_border_hover_color\";s:17:\"var(--awb-color3)\";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:\"0\";s:22:\"checklist_circle_color\";s:17:\"var(--awb-color4)\";s:20:\"checklist_text_color\";s:17:\"var(--awb-color8)\";s:19:\"checklist_item_size\";s:4:\"16px\";s:22:\"checklist_item_padding\";a:4:{s:3:\"top\";s:6:\"0.35em\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:6:\"0.35em\";s:4:\"left\";s:1:\"0\";}s:17:\"checklist_divider\";s:2:\"no\";s:23:\"checklist_divider_color\";s:17:\"var(--awb-color3)\";s:25:\"checklist_odd_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:26:\"checklist_even_row_bgcolor\";s:19:\"rgba(255,255,255,0)\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s: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-color7)\";s:22:\"content_box_body_color\";s:17:\"var(--awb-color6)\";s:21:\"content_box_icon_size\";s:2:\"20\";s:22:\"content_box_icon_color\";s:17:\"var(--awb-color1)\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:17:\"var(--awb-color6)\";s:38:\"content_box_icon_bg_inner_border_color\";s:17:\"var(--awb-color6)\";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:6:\"titles\";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:19:\"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:24:\"testimonial_border_width\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:24:\"testimonial_border_style\";s:5:\"solid\";s:24:\"testimonial_border_color\";s:17:\"var(--awb-color3)\";s:25:\"testimonial_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: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:16:\"text_user_select\";s:4:\"auto\";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:4:\"true\";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:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:14:\"text-transform\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:19:\"accordion_icon_size\";s:2:\"16\";s:20:\"accordian_icon_color\";s:17:\"var(--awb-color1)\";s:20:\"accordion_icon_boxed\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:17:\"var(--awb-color8)\";s:28:\"accordion_content_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:4:\"true\";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\";}","yes");

INSERT IGNORE INTO `wp_options` VALUES 
("174","nav_menu_options","a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}","off"),
("175","fusion_builder_settings","a:13:{s:28:\"enable_builder_ui_by_default\";s:1:\"0\";s:15:\"fusion_elements\";a:116:{i:0;s:12:\"fusion_alert\";i:1;s:12:\"fusion_audio\";i:2;s:11:\"fusion_form\";i:3;s:19:\"fusion_fusionslider\";i:4;s:11:\"fusion_blog\";i:5;s:18:\"fusion_breadcrumbs\";i:6;s:13:\"fusion_button\";i:7;s:12:\"fusion_chart\";i:8;s:16:\"fusion_checklist\";i:9;s:19:\"fusion_circles_info\";i:10;s:11:\"fusion_code\";i:11;s:20:\"fusion_content_boxes\";i:12;s:16:\"fusion_countdown\";i:13;s:19:\"fusion_counters_box\";i:14;s:22:\"fusion_counters_circle\";i:15;s:14:\"fusion_dropcap\";i:16;s:6:\"awb_dd\";i:17;s:13:\"fusion_events\";i:18;s:20:\"fusion_facebook_page\";i:19;s:13:\"fusion_flickr\";i:20;s:17:\"fusion_flip_boxes\";i:21;s:14:\"fusion_gallery\";i:22;s:10:\"fusion_map\";i:23;s:11:\"gravityform\";i:24;s:16:\"fusion_highlight\";i:25;s:18:\"fusion_fontawesome\";i:26;s:17:\"fusion_imageframe\";i:27;s:25:\"fusion_image_before_after\";i:28;s:13:\"fusion_images\";i:29;s:21:\"fusion_image_hotspots\";i:30;s:16:\"fusion_instagram\";i:31;s:11:\"layerslider\";i:32;s:15:\"fusion_lightbox\";i:33;s:13:\"fusion_lottie\";i:34;s:13:\"fusion_slider\";i:35;s:11:\"fusion_menu\";i:36;s:18:\"fusion_menu_anchor\";i:37;s:12:\"fusion_modal\";i:38;s:22:\"fusion_modal_text_link\";i:39;s:18:\"fusion_news_ticker\";i:40;s:25:\"fusion_one_page_text_link\";i:41;s:20:\"fusion_openstreetmap\";i:42;s:13:\"fusion_person\";i:43;s:14:\"fusion_popover\";i:44;s:17:\"fusion_post_cards\";i:45;s:17:\"fusion_postslider\";i:46;s:20:\"fusion_pricing_table\";i:47;s:15:\"fusion_progress\";i:48;s:19:\"fusion_recent_posts\";i:49;s:22:\"fusion_scroll_progress\";i:50;s:13:\"fusion_search\";i:51;s:24:\"fusion_section_separator\";i:52;s:16:\"fusion_separator\";i:53;s:10:\"rev_slider\";i:54;s:19:\"fusion_social_links\";i:55;s:14:\"fusion_sharing\";i:56;s:17:\"fusion_soundcloud\";i:57;s:18:\"fusion_star_rating\";i:58;s:20:\"fusion_stripe_button\";i:59;s:14:\"fusion_submenu\";i:60;s:25:\"fusion_syntax_highlighter\";i:61;s:12:\"fusion_table\";i:62;s:24:\"fusion_table_of_contents\";i:63;s:11:\"fusion_tabs\";i:64;s:15:\"fusion_tagcloud\";i:65;s:18:\"fusion_tagline_box\";i:66;s:19:\"fusion_testimonials\";i:67;s:11:\"fusion_text\";i:68;s:13:\"awb_text_path\";i:69;s:12:\"fusion_title\";i:70;s:16:\"fusion_accordion\";i:71;s:14:\"fusion_tooltip\";i:72;s:12:\"fusion_login\";i:73;s:20:\"fusion_lost_password\";i:74;s:15:\"fusion_register\";i:75;s:12:\"fusion_video\";i:76;s:20:\"fusion_views_counter\";i:77;s:12:\"fusion_vimeo\";i:78;s:22:\"fusion_products_slider\";i:79;s:31:\"fusion_featured_products_slider\";i:80;s:21:\"fusion_woo_shortcodes\";i:81;s:23:\"fusion_twitter_timeline\";i:82;s:14:\"fusion_youtube\";i:83;s:18:\"fusion_tb_archives\";i:84;s:16:\"fusion_tb_author\";i:85;s:18:\"fusion_tb_comments\";i:86;s:17:\"fusion_tb_content\";i:87;s:25:\"fusion_tb_featured_slider\";i:88;s:20:\"fusion_tb_pagination\";i:89;s:28:\"fusion_tb_post_card_archives\";i:90;s:21:\"fusion_post_card_cart\";i:91;s:22:\"fusion_post_card_image\";i:92;s:14:\"fusion_tb_meta\";i:93;s:25:\"fusion_tb_project_details\";i:94;s:17:\"fusion_tb_related\";i:95;s:20:\"fusion_form_checkbox\";i:96;s:19:\"fusion_form_consent\";i:97;s:16:\"fusion_form_date\";i:98;s:17:\"fusion_form_email\";i:99;s:18:\"fusion_form_hidden\";i:100;s:20:\"fusion_form_honeypot\";i:101;s:24:\"fusion_form_image_select\";i:102;s:18:\"fusion_form_notice\";i:103;s:18:\"fusion_form_number\";i:104;s:20:\"fusion_form_password\";i:105;s:24:\"fusion_form_phone_number\";i:106;s:17:\"fusion_form_radio\";i:107;s:17:\"fusion_form_range\";i:108;s:18:\"fusion_form_rating\";i:109;s:18:\"fusion_form_select\";i:110;s:18:\"fusion_form_submit\";i:111;s:16:\"fusion_form_text\";i:112;s:20:\"fusion_form_textarea\";i:113;s:16:\"fusion_form_time\";i:114;s:18:\"fusion_form_upload\";i:115;s:21:\"fusion_form_recaptcha\";}s:10:\"post_types\";a:8:{i:0;s:1:\" \";i:1;s:4:\"post\";i:2;s:4:\"page\";i:3;s:5:\"class\";i:4;s:10:\"instructor\";i:5;s:15:\"fusion_template\";i:6;s:17:\"fusion_tb_section\";i:7;s:11:\"fusion_form\";}s:26:\"fusion-builder-import-file\";s:0:\"\";s:37:\"enable_builder_sticky_publish_buttons\";s:1:\"1\";s:23:\"remove_empty_attributes\";s:3:\"off\";s:25:\"awb_remove_studio_content\";s:10:\"8623f09296\";s:16:\"_wp_http_referer\";s:46:\"/wp-admin/admin.php?page=avada-builder-options\";s:17:\"site_data_consent\";s:2:\"on\";s:17:\"role_manager_caps\";a:3:{s:6:\"editor\";a:11:{s:18:\"awb_global_options\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:13:\"awb_prebuilts\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:10:\"awb_studio\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:16:\"fusion_tb_layout\";a:1:{s:16:\"dashboard_access\";s:2:\"on\";}s:17:\"fusion_tb_section\";a:4:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:14:\"awb_off_canvas\";a:4:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:12:\"fusion_icons\";a:1:{s:16:\"dashboard_access\";s:2:\"on\";}s:11:\"fusion_form\";a:5:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:18:\"submissions_access\";s:2:\"on\";}s:13:\"avada_library\";a:5:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:15:\"global_elements\";s:2:\"on\";}s:4:\"post\";a:3:{s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:4:\"page\";a:3:{s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}}s:6:\"author\";a:11:{s:18:\"awb_global_options\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:13:\"awb_prebuilts\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:10:\"awb_studio\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:16:\"fusion_tb_layout\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:17:\"fusion_tb_section\";a:4:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:14:\"awb_off_canvas\";a:4:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:12:\"fusion_icons\";a:1:{s:16:\"dashboard_access\";s:2:\"on\";}s:11:\"fusion_form\";a:5:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:18:\"submissions_access\";s:3:\"off\";}s:13:\"avada_library\";a:5:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:15:\"global_elements\";s:2:\"on\";}s:4:\"post\";a:3:{s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:4:\"page\";a:3:{s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}}s:11:\"contributor\";a:11:{s:18:\"awb_global_options\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:13:\"awb_prebuilts\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:10:\"awb_studio\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:16:\"fusion_tb_layout\";a:1:{s:16:\"dashboard_access\";s:3:\"off\";}s:17:\"fusion_tb_section\";a:4:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:14:\"awb_off_canvas\";a:4:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:12:\"fusion_icons\";a:1:{s:16:\"dashboard_access\";s:2:\"on\";}s:11:\"fusion_form\";a:5:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:18:\"submissions_access\";s:3:\"off\";}s:13:\"avada_library\";a:5:{s:16:\"dashboard_access\";s:2:\"on\";s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";s:15:\"global_elements\";s:2:\"on\";}s:4:\"post\";a:3:{s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}s:4:\"page\";a:3:{s:19:\"backed_builder_edit\";s:2:\"on\";s:17:\"live_builder_edit\";s:2:\"on\";s:12:\"page_options\";s:2:\"on\";}}}s:16:\"awb_layout_order\";s:34:\"global,105,549,655,728,771,781,791\";s:6:\"action\";s:16:\"save_fb_settings\";s:31:\"fusion_builder_save_fb_settings\";s:10:\"db49ddac29\";}","yes"),
("178","category_children","a:0:{}","yes"),
("179","avada_permalinks","a:4:{s:23:\"portfolio_category_base\";s:18:\"portfolio_category\";s:21:\"portfolio_skills_base\";s:16:\"portfolio_skills\";s:19:\"portfolio_tags_base\";s:14:\"portfolio_tags\";s:17:\"faq_category_base\";s:0:\"\";}","yes"),
("180","portfolio_category_children","a:0:{}","yes"),
("181","portfolio_skills_children","a:0:{}","yes"),
("182","fusion_options-transients","a:2:{s:14:\"changed_values\";a:1:{s:13:\"color_palette\";a:10:{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:\"#eeede9\";}s:6:\"color3\";a:2:{s:5:\"label\";s:7:\"Color 3\";s:5:\"color\";s:7:\"#e4dbc7\";}s:6:\"color4\";a:2:{s:5:\"label\";s:7:\"Color 4\";s:5:\"color\";s:21:\"rgba(224,211,192,0.3)\";}s:6:\"color5\";a:2:{s:5:\"label\";s:7:\"Color 5\";s:5:\"color\";s:7:\"#d3cab8\";}s:6:\"color6\";a:2:{s:5:\"label\";s:7:\"Color 6\";s:5:\"color\";s:7:\"#5c5c5c\";}s:6:\"color7\";a:2:{s:5:\"label\";s:7:\"Color 7\";s:5:\"color\";s:7:\"#312c29\";}s:6:\"color8\";a:2:{s:5:\"label\";s:7:\"Color 8\";s:5:\"color\";s:7:\"#000000\";}s:14:\"custom_color_1\";a:2:{s:5:\"label\";s:7:\"Color 9\";s:5:\"color\";s:7:\"#25d366\";}s:14:\"custom_color_2\";a:2:{s:5:\"label\";s:8:\"Color 10\";s:5:\"color\";s:21:\"rgba(224,211,192,0.7)\";}}}s:9:\"last_save\";i:1782055900;}","yes"),
("184","fusion_tb_category_children","a:0:{}","yes"),
("185","db_upgraded","","on"),
("187","wp_attachment_pages_enabled","1","yes"),
("188","avada_live_stats","a:6:{s:5:\"sales\";i:945769;s:7:\"version\";s:6:\"7.11.4\";s:10:\"updated_at\";s:18:\"January 30th, 2024\";s:12:\"rating_count\";i:25891;s:5:\"price\";i:69;s:5:\"years\";i:11;}","yes"),
("189","avada_bundled_plugins_stats","a:14:{s:11:\"Fusion Core\";a:15:{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.4\";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:14:\"Fusion Builder\";a:15:{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.4\";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:27:\"Fusion White Label Branding\";a:15:{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:17:\"Slider Revolution\";a:15:{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.20\";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:14:\"LayerSlider WP\";a:15:{s:4:\"name\";s:14:\"LayerSlider WP\";s:11:\"plugin_name\";s:14:\"LayerSlider WP\";s:4:\"slug\";s:11:\"LayerSlider\";s:13:\"plugin_author\";s:14:\"Kreatura Media\";s:17:\"plugin_author_url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:5:\"image\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:9:\"image_url\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/layer_slider_plugin_thumb.png\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"7.9.6\";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:26:\"Advanced Custom Fields PRO\";a:15:{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:37:\"https://www.advancedcustomfields.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.5\";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:12:\"Convert Plus\";a:15:{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:8:\"FileBird\";a:15:{s:4:\"name\";s:8:\"FileBird\";s:11:\"plugin_name\";s:8:\"FileBird\";s:4:\"slug\";s:12:\"filebird-pro\";s:13:\"plugin_author\";s:10:\"Ninja Team\";s:17:\"plugin_author_url\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";s:5:\"image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:9:\"image_url\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"6.0.7\";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:\"HubSpot\";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:9:\"Yoast 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;}}","yes"),
("191","awb_critical_table","3.4","no"),
("205","recovery_keys","a:0:{}","off"),
("210","swift_performance_plugin_organizer","a:0:{}","auto"),
("211","jetpack_active_modules","a:0:{}","auto"),
("214","wp_notes_notify","1","on"),
("215","initial_db_version","56657","on"),
("218","can_compress_scripts","1","on"),
("232","theme_mods_twentytwentyfive","a:5:{i:0;b:0;s:19:\"wp_classic_sidebars\";a:0:{}s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1780325928;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}","off"),
("270","theme_mods_Avada-Child-Theme","a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}","on"),
("296","fusion_applied_patches","a:6:{i:0;i:423064;i:1;i:423065;i:2;i:423072;i:3;i:423074;i:4;i:423216;i:5;i:423220;}","off"),
("337","acf_site_health","{\"version\":\"6.8.2\",\"plugin_type\":\"PRO\",\"update_source\":\"ACF Direct\",\"activated\":false,\"activated_url\":\"\",\"license_type\":\"\",\"license_status\":\"active\",\"subscription_expires\":\"\",\"wp_version\":\"7.0\",\"mysql_version\":\"10.11.18-MariaDB-cll-lve-log\",\"is_multisite\":false,\"active_theme\":{\"name\":\"Avada Child\",\"version\":\"1.0.0\",\"theme_uri\":\"\",\"stylesheet\":false},\"parent_theme\":{\"name\":\"Avada\",\"version\":\"7.13\",\"theme_uri\":\"https:\\/\\/avada.com\\/\",\"stylesheet\":false},\"active_plugins\":{\"advanced-custom-fields-pro\\/acf.php\":{\"name\":\"Advanced Custom Fields PRO\",\"version\":\"6.8.2\",\"plugin_uri\":\"https:\\/\\/www.advancedcustomfields.com\"},\"fusion-builder\\/fusion-builder.php\":{\"name\":\"Avada Builder\",\"version\":\"3.13.0\",\"plugin_uri\":\"https:\\/\\/avada.com\"},\"fusion-core\\/fusion-core.php\":{\"name\":\"Avada Core\",\"version\":\"5.13.0\",\"plugin_uri\":\"https:\\/\\/avada.com\"},\"duplicate-page\\/duplicatepage.php\":{\"name\":\"Duplicate Page\",\"version\":\"4.5.9\",\"plugin_uri\":\"https:\\/\\/duplicatepro.com\\/\"},\"duplicator\\/duplicator.php\":{\"name\":\"Duplicator\",\"version\":\"1.5.16.1\",\"plugin_uri\":\"https:\\/\\/duplicator.com\\/\"},\"float-menu\\/float-menu.php\":{\"name\":\"Float Menu Lite\",\"version\":\"7.2.4\",\"plugin_uri\":\"https:\\/\\/wow-estore.com\\/item\\/float-menu-pro\\/\"},\"gravityforms\\/gravityforms.php\":{\"name\":\"Gravity Forms\",\"version\":\"2.10.2\",\"plugin_uri\":\"https:\\/\\/gravityforms.com\"},\"imunify-security\\/imunify-security.php\":{\"name\":\"Imunify Security\",\"version\":\"4.0.1\",\"plugin_uri\":\"https:\\/\\/imunify360.com\\/imunify-security-wp-plugin\\/\"},\"instagram-feed\\/instagram-feed.php\":{\"name\":\"Smash Balloon Instagram Feed\",\"version\":\"6.11.0\",\"plugin_uri\":\"https:\\/\\/smashballoon.com\\/instagram-feed\"},\"insert-headers-and-footers\\/ihaf.php\":{\"name\":\"WPCode Lite\",\"version\":\"2.3.6\",\"plugin_uri\":\"https:\\/\\/www.wpcode.com\\/\"},\"wpconsent-cookies-banner-privacy-suite\\/wpconsent.php\":{\"name\":\"WPConsent\",\"version\":\"1.1.6\",\"plugin_uri\":\"\"},\"wp-rocket\\/wp-rocket.php\":{\"name\":\"WP Rocket\",\"version\":\"3.21.3\",\"plugin_uri\":\"https:\\/\\/wp-rocket.me\"}},\"ui_field_groups\":\"4\",\"php_field_groups\":\"0\",\"json_field_groups\":\"0\",\"rest_field_groups\":\"0\",\"all_location_rules\":[\"page_parent==948\",\"post_type==class\",\"post_type==instructor\",\"page_parent==922\"],\"field_groups_with_single_block_rule\":\"0\",\"field_groups_with_multiple_block_rules\":\"0\",\"field_groups_with_blocks_and_other_rules\":\"0\",\"number_of_fields_by_type\":{\"radio\":2,\"text\":4,\"button_group\":1,\"date_picker\":1,\"relationship\":2,\"image\":1,\"number\":1,\"group\":1,\"textarea\":1},\"number_of_third_party_fields_by_type\":[],\"post_types_enabled\":true,\"ui_post_types\":\"2\",\"json_post_types\":\"0\",\"ui_taxonomies\":\"1\",\"json_taxonomies\":\"0\",\"ui_options_pages_enabled\":true,\"ui_options_pages\":\"0\",\"json_options_pages\":\"0\",\"php_options_pages\":\"0\",\"rest_api_format\":\"light\",\"registered_acf_blocks\":\"0\",\"blocks_per_api_version\":[],\"blocks_per_acf_block_version\":[],\"blocks_using_post_meta\":\"0\",\"blocks_using_auto_inline_editing\":\"0\",\"preload_blocks\":true,\"admin_ui_enabled\":true,\"field_type-modal_enabled\":true,\"field_settings_tabs_enabled\":false,\"shortcode_enabled\":true,\"registered_acf_forms\":\"0\",\"json_save_paths\":1,\"json_load_paths\":1,\"ai_enabled\":false,\"schema_support\":false,\"schema_ready_objects\":{\"blocks\":0,\"post_types\":0},\"datastore_enabled\":false,\"event_activated_pro\":1780325978,\"last_updated\":1783004393}","off"),
("350","duplicator_pro_license_key","activated","auto"),
("351","duplicator_pro_capabilities","a:9:{s:20:\"duplicator_pro_basic\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:21:\"duplicator_pro_create\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:23:\"duplicator_pro_schedule\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:22:\"duplicator_pro_storage\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:29:\"duplicator_pro_backup_restore\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:21:\"duplicator_pro_import\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:21:\"duplicator_pro_export\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:23:\"duplicator_pro_settings\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}s:22:\"duplicator_pro_license\";a:2:{s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:5:\"users\";a:0:{}}}","auto"),
("353","duplicator_pro_plugin_version","4.5.10","on"),
("355","edd_sl_d4cddcbfacec1cb84c2108addd3c8f99","a:2:{s:7:\"timeout\";i:1780854956;s:5:\"value\";s:478:\"{\"new_version\":\"\",\"stable_version\":\"\",\"name\":\"Duplicator Pro\",\"slug\":\"duplicator-pro\",\"url\":\"https:\\/\\/duplicator.com\",\"last_updated\":\"2026-06-07T14:55:56.899Z\",\"homepage\":\"https:\\/\\/duplicator.com\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"Professional WordPress Migration Plugin\",\"changelog\":\"\"},\"description\":[\"Professional WordPress Migration Plugin\"],\"changelog\":[\"\"],\"plugin\":\"duplicator-pro\\/duplicator-pro.php\",\"id\":\"duplicator-pro\\/duplicator-pro.php\"}\";}","off"),
("362","duplicator_pro_notifications","a:4:{s:6:\"update\";i:1780818863;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}","auto"),
("368","duplicator_pro_exe_safe_mode","0","yes"),
("369","duplicator_pro_activate_plugins_after_installation","a:0:{}","yes"),
("371","duplicator_pro_migration_data","{\n    \"plugin\": \"dup-pro\",\n    \"installerVersion\": \"4.5.24.2\",\n    \"installType\": -1,\n    \"installTime\": \"2026-06-01 16:13:11\",\n    \"logicModes\": [\n        \"CLASSIC\"\n    ],\n    \"template\": \"base\",\n    \"restoreBackupMode\": false,\n    \"recoveryMode\": false,\n    \"archivePath\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/20260601_avadadancestudio_33cc795442274f4e8441_20260601150238_archive.zip\",\n    \"packageId\": 2,\n    \"packageHash\": \"33cc795-01150238\",\n    \"installerPath\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/installer.php\",\n    \"installerBootLog\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/dup-installer-bootlog__b0b1720-01150238.txt\",\n    \"installerLog\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/dup-installer\\/dup-installer-log__b0b1720-01150238.txt\",\n    \"dupInstallerPath\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/dup-installer\",\n    \"origFileFolderPath\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/dup-installer\\/dup_descriptors_33cc795-01150238\\/orig_files\",\n    \"safeMode\": 0,\n    \"cleanInstallerFiles\": true,\n    \"licenseType\": 11,\n    \"phpVersion\": \"8.1.34\",\n    \"archiveType\": \"zip\",\n    \"siteSize\": 177464477,\n    \"siteNumFiles\": 13966,\n    \"siteDbSize\": 6271156,\n    \"siteDBNumTables\": 20,\n    \"components\": [\n        \"package_component_db\",\n        \"package_component_core\",\n        \"package_component_plugins\",\n        \"package_component_themes\",\n        \"package_component_uploads\",\n        \"package_component_other\"\n    ],\n    \"ustatIdentifier\": \"\"\n}","no"),
("378","_transient_wp_styles_for_blocks","a:2:{s:4:\"hash\";s:32:\"382c8a979b49a285bdc508eb2a769dae\";s:6:\"blocks\";a:7:{s:32:\"0368537a03d4b05ed11f802c802c5153\";s:0:\"\";s:32:\"500888137eafa12a508de2c588d9ffdd\";s:46:\":root :where(.wp-block-icon svg){width: 24px;}\";s:32:\"a6036e6eb2ad2df7ed8860b807868647\";s:0:\"\";s:32:\"3b46efc0a10c1dae38f584ad199c3544\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:32:\"ab4df16c9e454bfed8a404309545590d\";s:120:\":where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}\";s:32:\"68ec5cad52d993402775a7503ba9efb7\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:32:\"b8b4aa19e69b9b2de0f5c27097467bd6\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}","on"),
("383","_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-7.0.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-7.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-7.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-7.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"7.0\";s:7:\"version\";s:3:\"7.0\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1783017361;s:15:\"version_checked\";s:3:\"7.0\";s:12:\"translations\";a:0:{}}","off"),
("391","duplicator_unique_id","pkk9q;kfkYwZ&ajjNoA_lb3w=RJttDTZe9MmjAAu-a9w","on"),
("392","duplicator_pro_install_info","a:3:{s:7:\"version\";s:8:\"4.5.24.2\";s:4:\"time\";i:1780330456;s:10:\"updateTime\";i:1780330456;}","off"),
("393","duplicator_pro_plugin_data_stats","{\n    \"CL_-=_-=\": \"Duplicator\\\\Utils\\\\UsageStatistics\\\\PluginData\",\n    \"lastSendTime\": 0,\n    \"plugin\": \"dup-pro\",\n    \"pluginStatus\": \"active\",\n    \"anonymous\": false,\n    \"buildCount\": 0,\n    \"buildLastDate\": 0,\n    \"buildFailedCount\": 0,\n    \"buildFailedLastDate\": 0,\n    \"packagesBuildCompFullCount\": 0,\n    \"packagesBuildCompDbOnlyCount\": 0,\n    \"packagesBuildCompMdOnlyCount\": 0,\n    \"packagesBuildCompCustomCount\": 0,\n    \"packagesBuildCompCustomOnlyActiveCount\": 0,\n    \"schedulesBuildCount\": 0,\n    \"schedulesBuildLastDate\": 0,\n    \"schedulesBuildFailedCount\": 0,\n    \"schedulesBuildFailedLastDate\": 0,\n    \"schedulesBuildCompFullCount\": 0,\n    \"schedulesBuildCompDbOnlyCount\": 0,\n    \"schedulesBuildCompMdOnlyCount\": 0,\n    \"schedulesBuildCompCustomCount\": 0,\n    \"schedulesBuildCompCustomOnlyActiveCount\": 0,\n    \"usedRecoveryCount\": 0,\n    \"siteSizeMB\": 0,\n    \"siteNumFiles\": 0,\n    \"siteDbSizeMB\": 0,\n    \"siteDbNumTables\": 0\n}","auto"),
("428","fusion_core_flush_permalinks","1","auto"),
("463","_site_transient_wp_plugin_dependencies_plugin_data","a:0:{}","off"),
("601","imunify_security_package_versions","a:4:{s:17:\"imunify-antivirus\";s:14:\"8.8.3-6.x86_64\";s:19:\"imunify360-firewall\";s:15:\"8.13.5-4.x86_64\";s:10:\"imunify-ui\";s:15:\"8.11.4-1.noarch\";s:12:\"imunify-core\";s:14:\"8.9.6-3.x86_64\";}","on"),
("947","new_admin_email","tahoora.av27@gmail.com","auto"),
("1044","wp_calendar_block_has_published_posts","1","auto"),
("1113","sbi_statuses","a:10:{s:8:\"database\";a:3:{s:14:\"hashtag_column\";b:1;s:16:\"mime_type_column\";b:1;s:19:\"connect_type_column\";b:1;}s:13:\"first_install\";i:1780417384;s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:1;}s:12:\"data_manager\";a:2:{s:9:\"last_used\";i:1783014575;s:14:\"num_db_updates\";i:31;}s:24:\"support_legacy_shortcode\";b:0;s:16:\"wizard_dismissed\";b:1;s:21:\"source_details_update\";b:1;s:33:\"preexisting_discount_notice_check\";b:1;s:12:\"feed_locator\";a:2:{s:10:\"last_check\";i:1783010964;s:11:\"initialized\";i:1780417477;}s:23:\"custom_templates_notice\";b:1;}","on"),
("1114","sbi_usage_tracking","a:2:{s:7:\"enabled\";b:0;s:9:\"last_send\";i:0;}","on"),
("1119","sbi_rating_notice","pending","off"),
("1120","sbi_db_version","2.4","auto"),
("1121","sb_instagram_errors","a:9:{s:10:\"connection\";a:0:{}s:7:\"hashtag\";a:0:{}s:8:\"resizing\";a:0:{}s:15:\"database_create\";a:0:{}s:10:\"upload_dir\";a:0:{}s:8:\"accounts\";a:0:{}s:9:\"error_log\";a:0:{}s:10:\"action_log\";a:1:{i:0;s:41:\"06-02 16:23:04 - Retesting GDPR features.\";}s:7:\"revoked\";a:0:{}}","off"),
("1122","sb_instagram_settings","a:60:{s:15:\"sb_instagram_at\";s:0:\"\";s:20:\"sb_instagram_user_id\";s:0:\"\";s:30:\"sb_instagram_preserve_settings\";s:0:\"\";s:23:\"sb_instagram_ajax_theme\";b:0;s:27:\"sb_instagram_disable_resize\";b:0;s:12:\"image_format\";s:4:\"webp\";s:23:\"sb_instagram_cache_time\";i:1;s:28:\"sb_instagram_cache_time_unit\";s:5:\"hours\";s:16:\"sbi_caching_type\";s:10:\"background\";s:23:\"sbi_cache_cron_interval\";s:7:\"12hours\";s:19:\"sbi_cache_cron_time\";s:1:\"1\";s:20:\"sbi_cache_cron_am_pm\";s:2:\"am\";s:18:\"sb_instagram_width\";s:3:\"100\";s:23:\"sb_instagram_width_unit\";s:1:\"%\";s:28:\"sb_instagram_feed_width_resp\";b:0;s:19:\"sb_instagram_height\";s:0:\"\";s:16:\"sb_instagram_num\";s:2:\"20\";s:24:\"sb_instagram_height_unit\";s:0:\"\";s:17:\"sb_instagram_cols\";s:1:\"4\";s:27:\"sb_instagram_disable_mobile\";b:0;s:26:\"sb_instagram_image_padding\";s:1:\"5\";s:31:\"sb_instagram_image_padding_unit\";s:2:\"px\";s:17:\"sb_instagram_sort\";s:4:\"none\";s:23:\"sb_instagram_background\";s:0:\"\";s:21:\"sb_instagram_show_btn\";b:1;s:27:\"sb_instagram_btn_background\";s:0:\"\";s:27:\"sb_instagram_btn_text_color\";s:0:\"\";s:21:\"sb_instagram_btn_text\";s:12:\"Load More...\";s:22:\"sb_instagram_image_res\";s:4:\"auto\";s:30:\"sb_instagram_lightbox_comments\";b:1;s:25:\"sb_instagram_num_comments\";i:20;s:21:\"sb_instagram_show_bio\";b:1;s:27:\"sb_instagram_show_followers\";b:1;s:24:\"sb_instagram_show_header\";b:1;s:24:\"sb_instagram_header_size\";s:5:\"small\";s:25:\"sb_instagram_header_color\";s:0:\"\";s:20:\"sb_instagram_stories\";b:1;s:25:\"sb_instagram_stories_time\";i:5000;s:28:\"sb_instagram_show_follow_btn\";b:1;s:33:\"sb_instagram_folow_btn_background\";s:0:\"\";s:34:\"sb_instagram_follow_btn_text_color\";s:0:\"\";s:28:\"sb_instagram_follow_btn_text\";s:19:\"Follow on Instagram\";s:23:\"sb_instagram_custom_css\";s:0:\"\";s:22:\"sb_instagram_custom_js\";s:0:\"\";s:17:\"sb_instagram_cron\";s:2:\"no\";s:19:\"sb_instagram_backup\";b:1;s:15:\"sb_ajax_initial\";b:0;s:24:\"enqueue_css_in_shortcode\";b:0;s:18:\"enqueue_js_in_head\";b:0;s:24:\"disable_js_image_loading\";b:0;s:20:\"disable_admin_notice\";b:0;s:19:\"enable_email_report\";b:1;s:18:\"email_notification\";s:6:\"monday\";s:28:\"email_notification_addresses\";s:22:\"tahoora.av27@gmail.com\";s:30:\"sb_instagram_disable_mob_swipe\";b:0;s:28:\"sb_instagram_disable_awesome\";b:0;s:25:\"sb_instagram_disable_font\";b:0;s:4:\"gdpr\";s:4:\"auto\";s:18:\"enqueue_legacy_css\";b:0;s:18:\"connected_accounts\";a:0:{}}","auto"),
("1123","sbi_single_cache","hcF7XwroJiqriHmyRNQMJ1d5ZUw4NVJWREpiZFltSzNTNk1FOUh1S1krcWtlemVLQXJEM2tKVW5jWnFTMEVIQURuUVd6RGxwaTJqQ2pHaWhPSkNuVXBZQ1gyVng5am1qNkd0R1JURnA=","off"),
("1124","sbi_cache_version","1","auto"),
("1125","sbi_notifications","a:4:{s:6:\"update\";i:1782984100;s:4:\"feed\";a:1:{i:0;a:10:{s:2:\"id\";i:45;s:6:\"plugin\";a:6:{i:0;s:9:\"instagram\";i:1;s:8:\"facebook\";i:2;s:7:\"twitter\";i:3;s:7:\"reviews\";i:4;s:6:\"tiktok\";i:5;s:7:\"youtube\";}s:4:\"type\";a:1:{i:0;s:4:\"free\";}s:5:\"title\";s:48:\"Add a Free WhatsApp Chat to Your Site in Minutes\";s:7:\"content\";s:541:\"Hey there! We\'re excited to share something new from the Smash Balloon team. Knowing how important direct connection is, we built WPChat. It’s the easiest way to chat with your site visitors on WhatsApp, Messenger, and Telegram, helping you provide instant, personal support. It\'s completely free to get started. The free version includes live chat for one agent via WhatsApp, Facebook Messenger or Telegram, AI-Powered Smart FAQs to automatically answer questions, and a beautiful, customizable chat widget that looks great on any device.\";s:12:\"content_html\";s:713:\"<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\">Hey there! We\'re excited to share something new from the Smash Balloon team. Knowing how important direct connection is, we built WPChat. It’s the easiest way to chat with your site visitors on WhatsApp, Messenger, and Telegram, helping you provide instant, personal support. It\'s completely free to get started. The free version includes live chat for one agent via WhatsApp, Facebook Messenger or Telegram, AI-Powered Smart FAQs to automatically answer questions, and a beautiful, customizable chat widget that looks great on any device.</pre>\n<!-- /wp:preformatted -->\n\n<!-- wp:sb-notifications/preview {\"postId\":45,\"refreshKey\":1763751849798} /-->\";s:5:\"start\";s:19:\"2025-10-30 00:00:00\";s:3:\"end\";s:19:\"2026-10-30 23:59:59\";s:5:\"image\";s:7:\"balloon\";s:4:\"btns\";a:2:{s:7:\"primary\";a:3:{s:4:\"text\";s:19:\"Try WPChat for Free\";s:3:\"url\";s:181:\"https://wpchat.com/how-to-get-free-whatsapp-chat-plugin-wordpress/?utm_source={plugin}-free&utm_medium=plugin-dashboard-notices&utm_campaign=wpchatlaunch&utm_content=try-wpchat-free\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:9:\"secondary\";a:3:{s:4:\"text\";s:17:\"Add Free Chat Now\";s:3:\"url\";s:179:\"https://wpchat.com/how-to-get-free-whatsapp-chat-plugin-wordpress/?utm_source={plugin}-free&utm_medium=plugin-dashboard-notices&utm_campaign=wpchatlaunch&utm_content=add-free-chat\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}}}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}","auto"),
("1126","sbi_newuser_notifications","a:4:{s:6:\"update\";i:1780417385;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:25:\"How Do You Like {plugin}?\";s:7:\"content\";s:260:\"It\'s great to see that you\'ve been using the <strong>{plugin}</strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"sbi-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:195:\"<strong>Exclusive offer!</strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong>{amount} off</strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"sbi-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"sbi_notice_dismiss sbi_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"sbi_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}","auto"),
("1128","sbi_cron_report","a:2:{s:5:\"notes\";a:2:{s:8:\"time_ran\";s:19:\"2026-07-02 16:49:18\";s:20:\"num_found_transients\";i:2;}i:1;a:2:{s:13:\"last_retrieve\";s:19:\"2026-07-02 16:49:20\";s:10:\"did_update\";s:3:\"yes\";}}","off"),
("1173","aioseo_activation_redirect","1","auto"),
("1174","wpforms_activation_redirect","1","auto"),
("1175","optin_monster_api_activation_redirect_disabled","1","auto"),
("1176","seedprod_dismiss_setup_wizard","1","auto"),
("1177","wpconsent_usage_tracking_config","a:6:{s:3:\"day\";i:4;s:4:\"hour\";i:17;s:6:\"minute\";i:41;s:6:\"second\";i:23;s:6:\"offset\";i:409283;s:8:\"initsend\";i:1781199683;}","off"),
("1178","wpconsent_activated","a:2:{s:9:\"wpconsent\";i:1780422679;s:7:\"version\";s:5:\"1.1.6\";}","auto"),
("1181","wpconsent_admin_notices","a:1:{s:14:\"review_request\";a:2:{s:4:\"time\";i:1780422679;s:9:\"dismissed\";b:0;}}","auto"),
("1183","wpconsent_settings","a:47:{s:13:\"banner_layout\";s:4:\"long\";s:15:\"banner_position\";s:6:\"bottom\";s:23:\"banner_background_color\";s:7:\"#04194e\";s:17:\"banner_text_color\";s:7:\"#ffffff\";s:16:\"banner_font_size\";s:4:\"16px\";s:18:\"banner_button_size\";s:5:\"small\";s:20:\"banner_button_corner\";s:16:\"slightly-rounded\";s:18:\"banner_button_type\";s:6:\"filled\";s:16:\"banner_accept_bg\";s:7:\"#ffcd2a\";s:19:\"banner_accept_color\";s:7:\"#000000\";s:16:\"banner_cancel_bg\";s:7:\"#ffffff\";s:19:\"banner_cancel_color\";s:7:\"#000000\";s:21:\"banner_preferences_bg\";s:7:\"#ffffff\";s:24:\"banner_preferences_color\";s:7:\"#000000\";s:21:\"accept_button_enabled\";i:1;s:12:\"button_order\";a:3:{i:0;s:11:\"preferences\";i:1;s:6:\"cancel\";i:2;s:6:\"accept\";}s:11:\"banner_logo\";s:0:\"\";s:21:\"cancel_button_enabled\";i:1;s:26:\"preferences_button_enabled\";i:1;s:21:\"consent_floating_icon\";s:11:\"preferences\";s:21:\"enable_consent_banner\";i:0;s:20:\"disable_close_button\";i:1;s:17:\"manual_scan_pages\";a:1:{i:0;i:56;}s:19:\"scanner_auto_update\";i:0;s:27:\"scanner_email_notifications\";i:0;s:23:\"scanner_email_addresses\";s:0:\"\";s:25:\"scanner_history_retention\";i:90;s:19:\"gcm_url_passthrough\";i:0;s:22:\"gcm_ads_data_redaction\";i:0;s:14:\"banner_message\";s:97:\"We use cookies to improve your experience on our site. By using our site, you consent to cookies.\";s:18:\"accept_button_text\";s:10:\"Accept All\";s:23:\"preferences_button_text\";s:11:\"Preferences\";s:18:\"cancel_button_text\";s:6:\"Reject\";s:23:\"preferences_panel_title\";s:18:\"Cookie Preferences\";s:29:\"preferences_panel_description\";s:37:\"Manage your cookie preferences below:\";s:19:\"cookie_policy_title\";s:13:\"Cookie Policy\";s:18:\"cookie_policy_text\";s:74:\"You can find more information in our {cookie_policy} and {privacy_policy}.\";s:28:\"save_preferences_button_text\";s:14:\"Save and Close\";s:17:\"close_button_text\";s:5:\"Close\";s:33:\"content_blocking_placeholder_text\";s:61:\"Click here to accept {category} cookies and load this content\";s:17:\"gpc_toast_message\";s:18:\"GPC Signal Honored\";s:20:\"gpc_override_message\";s:112:\"I understand GPC will be overwritten and want to allow this site to sell or share my personal information anyway\";s:24:\"cookie_table_header_name\";s:4:\"Name\";s:31:\"cookie_table_header_description\";s:11:\"Description\";s:28:\"cookie_table_header_duration\";s:8:\"Duration\";s:31:\"cookie_table_header_service_url\";s:11:\"Service URL\";s:24:\"has_auto_populated_pages\";b:1;}","auto"),
("1186","wpconsent_category_children","a:0:{}","auto"),
("1190","wpconsent_notifications","a:4:{s:6:\"update\";i:1780422682;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}","off"),
("1206","sbi_local_avatars_info","a:2:{s:12:\"frex.digital\";a:2:{s:9:\"file_name\";s:17:\"frex.digital.webp\";s:9:\"mime_type\";s:10:\"image/webp\";}s:10:\"dr_soheila\";a:2:{s:9:\"file_name\";s:15:\"dr_soheila.webp\";s:9:\"mime_type\";s:10:\"image/webp\";}}","auto"),
("1207","sbi_local_avatars","a:2:{s:12:\"frex.digital\";b:1;s:10:\"dr_soheila\";b:1;}","auto"),
("1777","_site_transient_duplicator_translations_duplicator-pro_plugin","O:8:\"stdClass\":2:{s:14:\"duplicator-pro\";a:1:{s:12:\"translations\";a:10:{i:0;a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}i:1;a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}i:2;a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}i:3;a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}i:4;a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:81:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}i:5;a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}i:6;a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}i:7;a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}i:8;a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}i:9;a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2025-03-18T13:27:14+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:84:\"https://translations.duplicator.com/packages/duplicator-pro/duplicator-pro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:13:\"_last_checked\";i:1780680407;}","off"),
("1784","wpcode_usage_tracking_config","a:6:{s:3:\"day\";i:3;s:4:\"hour\";i:8;s:6:\"minute\";i:56;s:6:\"second\";i:58;s:6:\"offset\";i:291418;s:8:\"initsend\";i:1781081818;}","off"),
("1785","ihaf_activated","a:2:{s:6:\"wpcode\";i:1780680414;s:7:\"version\";s:5:\"2.3.6\";}","auto"),
("1787","wpcode_snippets","a:2:{s:16:\"site_wide_header\";a:9:{i:0;a:14:{s:2:\"id\";i:1979;s:5:\"title\";s:8:\"Menu CSS\";s:4:\"code\";s:266:\"@media only screen and (max-width: 800px) {\r\n    .awb-menu__main-ul {\r\n        max-height: calc(100vh - 80px) !important;\r\n        overflow-y: auto !important;\r\n        overflow-x: hidden !important; \r\n        -webkit-overflow-scrolling: touch !important; \r\n    }\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-19 16:20:48\";}i:1;a:14:{s:2:\"id\";i:1978;s:5:\"title\";s:19:\"Caption Gallery CSS\";s:4:\"code\";s:3387:\"<style>\r\n@media only screen and (max-width: 800px) {\r\n    /* ۱. شکستن ساختار گرید جاوااسکریپت آوادا و تبدیل به حالت منعطف */\r\n    .awb-gallery-wrapper .fusion-gallery-layout-grid {\r\n        display: flex !important;\r\n        flex-wrap: wrap !important;\r\n        height: auto !important; /* حذف ارتفاع ثابتی که آوادا میده */\r\n    }\r\n    \r\n    /* ۲. تنظیم ستون‌ها (دو ستونه برای موبایل) و برداشتن پوزیشن ابسولوت */\r\n    .awb-gallery-wrapper .fusion-gallery-column {\r\n        position: relative !important;\r\n        top: auto !important;\r\n        left: auto !important;\r\n        width: 50% !important; /* اگر توی موبایل یک ستونه می‌خوای، این رو 100% کن */\r\n        margin-bottom: 30px !important; /* فاصله از ردیف پایینی */\r\n    }\r\n\r\n    /* ۳. آوردن کپشن به زیر عکس و ایجاد کادر طوسی */\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario a {\r\n        display: flex !important;\r\n        flex-direction: column !important;\r\n        height: 100% !important;\r\n        background-color: #777777 !important; /* کادر طوسی رنگ (می‌تونی کد رنگ رو عوض کنی) */\r\n        padding: 5px !important; /* فاصله کادر طوسی از عکس */\r\n        border-radius: 12px !important; /* گرد کردن گوشه‌های کادر طوسی */\r\n    }\r\n\r\n    /* تنظیمات خود عکس که داخل کادر طوسی قشنگ بشینه */\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario img {\r\n        border-radius: 8px !important; /* کمی گرد شدن گوشه‌های خود عکس */\r\n        width: 100% !important;\r\n        height: auto !important;\r\n    }\r\n\r\n    /* ۴. استایل‌دهی به باکس کپشن که همیشه روشن باشه */\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario .awb-imageframe-caption-container {\r\n        position: relative !important;\r\n        opacity: 1 !important;\r\n        visibility: visible !important;\r\n        transform: none !important;\r\n        background: transparent !important;\r\n        padding: 0 !important;\r\n        height: auto !important;\r\n    }\r\n\r\n    /* ۵. وسط‌چین کردن متن، رنگ سفید و مارجین ۵ پیکسل */\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario .awb-imageframe-caption,\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario .awb-imageframe-caption-title {\r\n        position: relative !important;\r\n        transform: none !important;\r\n        text-align: center !important;\r\n        color: #ffffff !important; /* رنگ سفید برای متن */\r\n        display: block !important;\r\n        top: auto !important;\r\n        left: auto !important;\r\n        bottom: auto !important;\r\n        right: auto !important;\r\n        width: auto !important;\r\n        margin: 5px !important; /* مارجین ۵ پیکسل از همه طرف */\r\n    }\r\n\r\n    /* ۶. حذف هاله مشکی که روی عکس میفتاد */\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario::after,\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario::before,\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario a::after,\r\n    .awb-gallery-wrapper .awb-imageframe-style-dario a::before {\r\n        display: none !important;\r\n    }\r\n}\r\n</style>\";s:9:\"code_type\";s:4:\"html\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-19 16:57:02\";}i:2;a:14:{s:2:\"id\";i:1913;s:5:\"title\";s:14:\"Flip Boxes CSS\";s:4:\"code\";s:132:\".fusion-flip-boxes.row {\r\n    display: flex !important;\r\n    flex-wrap: wrap !important;\r\n    justify-content: center !important;\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-18 14:44:38\";}i:3;a:14:{s:2:\"id\";i:1452;s:5:\"title\";s:13:\"Light Box CSS\";s:4:\"code\";s:752:\".ilightbox-holder,\r\n.ilightbox-holder .ilightbox-container,\r\n.ilightbox-holder .ilightbox-image {\r\n    border-radius: 12px !important;\r\n}\r\n\r\n.ilightbox-holder .ilightbox-container {\r\n    overflow: hidden !important;\r\n    box-shadow: none !important; \r\n}\r\n\r\n.ilightbox-holder .ilightbox-inner-toolbar .ilightbox-title {\r\n    display: block !important;\r\n    color: #ffffff !important;\r\n    font-size: 16px !important;\r\n    font-weight: 500 !important;\r\n    text-align: center !important;\r\n    padding: 12px 10px !important;\r\n    line-height: 1.5 !important;\r\n    text-shadow: 0 2px 4px rgba(0,0,0,0.8) !important;\r\n}\r\n\r\n.ilightbox-holder .ilightbox-inner-toolbar {\r\n    background: transparent !important;\r\n    border-radius: 12px 12px 0 0 !important;\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-12 11:07:16\";}i:4;a:14:{s:2:\"id\";i:1243;s:5:\"title\";s:6:\"GF CSS\";s:4:\"code\";s:5576:\".gform_wrapper .gform_required_legend {\r\n    display: none !important;\r\n}\r\n\r\n.gform_wrapper .gform_footer input[type=\"submit\"],\r\n.gform_wrapper .gform_footer button[type=\"submit\"],\r\n.gform_wrapper .gform_page_footer input[type=\"button\"],\r\n.gform_wrapper .gform_page_footer input[type=\"submit\"],\r\n.gform_wrapper .gform_page_footer button[type=\"submit\"] {\r\n    background-color: #312c29 !important; /* رنگ دکمه */\r\n    color: #efe5dc !important; /* رنگ متن دکمه */\r\n    border: 1px solid #312c29 !important;\r\n    border-radius: 10px !important;\r\n    padding: 14px 32px !important; \r\n    font-size: 16px !important;\r\n    font-weight: normal !important;\r\n    text-transform: none !important;\r\n    transition: all 0.3s ease !important;\r\n    cursor: pointer !important;\r\n    box-shadow: none !important; \r\n}\r\n\r\n.gform_wrapper .gform_footer input[type=\"submit\"]:hover,\r\n.gform_wrapper .gform_footer button[type=\"submit\"]:hover,\r\n.gform_wrapper .gform_page_footer input[type=\"button\"]:hover,\r\n.gform_wrapper .gform_page_footer input[type=\"submit\"]:hover,\r\n.gform_wrapper .gform_page_footer button[type=\"submit\"]:hover {\r\n    background-color: #efe5dc !important; \r\n    color: #312c29 !important;\r\n    border-color: #312c29 !important;\r\n}\r\n\r\n#gform_wrapper_2 .gfield_label {\r\n    color: #312c29 !important; \r\n    font-size: 13px !important;\r\n    text-transform: uppercase !important;\r\n    letter-spacing: 1px !important;\r\n    font-weight: 600 !important;\r\n    margin-bottom: 8px !important;\r\n}\r\n\r\n#gform_wrapper_2 input[type=\"text\"],\r\n#gform_wrapper_2 input[type=\"email\"],\r\n#gform_wrapper_2 input[type=\"tel\"],\r\n#gform_wrapper_2 input[type=\"date\"],\r\n#gform_wrapper_2 input[type=\"number\"],\r\n#gform_wrapper_2 textarea,\r\n#gform_wrapper_2 select {\r\n    background-color: rgba(49, 44, 41, 0.04) !important;\r\n    border: 1px solid rgba(49, 44, 41, 0.15) !important;\r\n    color: #312c29 !important;\r\n    border-radius: 10px !important;\r\n    padding: 14px 18px !important;\r\n    font-size: 15px !important;\r\n    transition: all 0.3s ease-in-out !important;\r\n    box-shadow: none !important;\r\n}\r\n\r\n#gform_wrapper_2 .select-arrow,\r\n#gform_wrapper_2 .gform-theme__select-arrow {\r\n    display: none !important;\r\n}\r\n\r\n#gform_wrapper_2 select {\r\n    appearance: none !important;\r\n    -webkit-appearance: none !important;\r\n    -moz-appearance: none !important;\r\n    /* تغییر رنگ فلش سلکت‌باکس به تیره */\r\n    background-image: url(\'data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"%23312c29\" viewBox=\"0 0 24 24\"><path d=\"M7 10l5 5 5-5z\"/></svg>\') !important;\r\n    background-repeat: no-repeat !important;\r\n    background-position: right 15px center !important;\r\n    background-size: 14px !important;\r\n}\r\n\r\n#gform_wrapper_2 select option {\r\n    background-color: #efe5dc !important;\r\n    color: #312c29 !important;\r\n}\r\n\r\n#gform_wrapper_2 input[type=\"text\"]:focus,\r\n#gform_wrapper_2 input[type=\"email\"]:focus,\r\n#gform_wrapper_2 input[type=\"tel\"]:focus,\r\n#gform_wrapper_2 input[type=\"date\"]:focus,\r\n#gform_wrapper_2 input[type=\"number\"]:focus,\r\n#gform_wrapper_2 textarea:focus,\r\n#gform_wrapper_2 select:focus {\r\n    border-color: #312c29 !important; \r\n    background-color: rgba(49, 44, 41, 0.08) !important;\r\n    box-shadow: 0 0 8px rgba(49, 44, 41, 0.2) !important;\r\n    outline: none !important;\r\n}\r\n\r\n#gform_wrapper_2 ::-webkit-input-placeholder { color: rgba(49, 44, 41, 0.4) !important; }\r\n#gform_wrapper_2 ::-moz-placeholder { color: rgba(49, 44, 41, 0.4) !important; }\r\n#gform_wrapper_2 :-ms-input-placeholder { color: rgba(49, 44, 41, 0.4) !important; }\r\n\r\n#gform_wrapper_2 .ui-datepicker-trigger {\r\n    filter: brightness(0) opacity(0.5) !important; /* تیره کردن آیکون تقویم */\r\n    cursor: pointer !important;\r\n    transition: 0.3s !important;\r\n    margin-left: -35px !important; \r\n}\r\n#gform_wrapper_2 .ui-datepicker-trigger:hover {\r\n    filter: brightness(0) opacity(0.8) !important;\r\n}\r\n\r\n/* =========================================\r\n   VIP Styling for Form Confirmation Message\r\n   ========================================= */\r\n\r\n/* استایل باکس اصلی تاییدیه در تم روشن */\r\n#gform_confirmation_wrapper_2,\r\n.gform_confirmation_wrapper {\r\n    background-color: #efe5dc !important; \r\n    background: rgba(239, 229, 220, 0.95) !important;\r\n    border: 1px solid rgba(49, 44, 41, 0.2) !important;\r\n    border-radius: 12px !important;\r\n    padding: 30px !important;\r\n    margin: 20px auto !important;\r\n    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;\r\n    text-align: center !important;\r\n    max-width: 800px !important;\r\n}\r\n\r\n/* خنثی کردن استایل‌های پیش‌فرض Blockquote قالب آوادا */\r\n#gform_confirmation_wrapper_2 blockquote,\r\n#gform_confirmation_message_2 blockquote {\r\n    background: transparent !important; \r\n    border: none !important; \r\n    padding: 0 !important;\r\n    margin: 0 !important;\r\n    box-shadow: none !important;\r\n}\r\n\r\n/* استایل متن اصلی و پاراگراف داخل پیام */\r\n#gform_confirmation_wrapper_2 p,\r\n#gform_confirmation_message_2 p {\r\n    color: #4a4a4a !important;\r\n    font-size: 18px !important;\r\n    line-height: 1.8 !important;\r\n    margin-bottom: 0 !important;\r\n}\r\n\r\n/* استایل کلمه بولد (Thank You) */\r\n#gform_confirmation_wrapper_2 b,\r\n#gform_confirmation_wrapper_2 strong {\r\n    color: #312c29 !important; \r\n    font-size: 22px !important; \r\n    font-weight: 700 !important;\r\n    display: block !important;\r\n    margin-bottom: 10px !important;\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-14 20:06:33\";}i:5;a:14:{s:2:\"id\";i:1169;s:5:\"title\";s:11:\"Toggles CSS\";s:4:\"code\";s:132:\".fusion-accordian .fusion-panel.fusion-toggle-boxed-mode {\r\n    border-radius: 12px !important;\r\n    overflow: hidden !important;\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-07 10:56:40\";}i:6;a:14:{s:2:\"id\";i:1158;s:5:\"title\";s:14:\"blockquote CSS\";s:4:\"code\";s:99:\".fusion-text blockquote {\r\n    border-radius: 12px !important;\r\n    overflow: hidden !important;\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-06 20:30:56\";}i:7;a:14:{s:2:\"id\";i:1112;s:5:\"title\";s:10:\"Titles CSS\";s:4:\"code\";s:89:\".fusion-title .title-sep.sep-single.sep-solid {\r\n    border-top-width: 2px !important;\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-06 17:14:56\";}i:8;a:14:{s:2:\"id\";i:1091;s:5:\"title\";s:14:\"post cards css\";s:4:\"code\";s:823:\".fusion-post-cards.awb-carousel {\r\n    overflow-x: clip !important; \r\n    overflow-y: visible !important;\r\n    padding-bottom: 85px !important;\r\n    \r\n    padding-left: 20px !important;\r\n    padding-right: 20px !important;\r\n    margin-left: -20px !important;\r\n    margin-right: -20px !important;\r\n    width: calc(100% + 40px) !important;\r\n    max-width: calc(100% + 40px) !important;\r\n}\r\n\r\n.fusion-post-cards.awb-carousel .swiper-wrapper {\r\n    padding-bottom: 0 !important;\r\n    overflow: visible !important;\r\n}\r\n\r\n.fusion-post-cards.awb-carousel .post-card,\r\n.fusion-post-cards.awb-carousel .fusion-carousel-item-wrapper {\r\n    --awb-overflow: visible !important;\r\n    overflow: visible !important;\r\n}\r\n\r\n.fusion-post-cards .post-card > .fusion-column-wrapper {\r\n    border-radius: var(--awb-border-radius) !important;\r\n}\";s:9:\"code_type\";s:3:\"css\";s:8:\"location\";s:16:\"site_wide_header\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-16 13:34:58\";}}s:10:\"everywhere\";a:1:{i:0;a:14:{s:2:\"id\";i:1356;s:5:\"title\";s:16:\"Booking Form PHP\";s:4:\"code\";s:7857:\"\r\n// =========================================================================\r\n// اسکریپت اصلی سیستم رزرو + قفل تقویم با جاوا اسکریپت\r\n// =========================================================================\r\nadd_action( \'wp_footer\', \'dr_soheila_booking_advanced_script\', 99 );\r\nfunction dr_soheila_booking_advanced_script() {\r\n    if ( ! class_exists( \'GFAPI\' ) ) return;\r\n    \r\n    $form_id = 2;\r\n    $date_field_id = 18;\r\n    $time_field_id = 21;\r\n    \r\n    // دریافت تمام نوبت‌های رزرو شده از دیتابیس\r\n    $entries = GFAPI::get_entries( $form_id, array( \'status\' => \'active\', \'paging\' => array( \'page_size\' => 3000 ) ) );\r\n    \r\n    $booked_slots = array();\r\n    foreach ( $entries as $entry ) {\r\n        $date = rgar( $entry, (string)$date_field_id ); \r\n        $time = rgar( $entry, (string)$time_field_id ); \r\n        if ( ! empty( $date ) && ! empty( $time ) ) {\r\n            $booked_slots[$date][] = $time;\r\n        }\r\n    }\r\n    \r\n    $tz = new DateTimeZone(\'Asia/Dubai\');\r\n    $now = new DateTime(\'now\', $tz);\r\n    $today_ymd = $now->format(\'Y-m-d\');\r\n    $server_hour = (int) $now->format(\'H\');\r\n    ?>\r\n    <script type=\"text/javascript\">\r\n    // --- بخش ۱: قفل کردن قطعی روزهای گذشته در تقویم ---\r\n    jQuery(document).ready(function(){\r\n        if(typeof gform !== \'undefined\') {\r\n            gform.addFilter(\'gform_datepicker_options_pre_init\', function(optionsObj, formId, fieldId) {\r\n                if (formId == <?php echo $form_id; ?> && fieldId == <?php echo $date_field_id; ?>) {\r\n                    optionsObj.minDate = 0; // اجازه انتخاب روزهای قبل از امروز را نمیدهد\r\n                }\r\n                return optionsObj;\r\n            });\r\n        }\r\n    });\r\n\r\n    // --- بخش ۲: مدیریت ساعت‌ها و مخفی کردن تایم‌های رزرو شده ---\r\n    jQuery(document).bind(\'gform_post_render\', function(event, formId, currentPage){\r\n        if(formId == <?php echo $form_id; ?>) {\r\n            var bookedSlots = <?php echo json_encode($booked_slots); ?>;\r\n            var serverHour = <?php echo $server_hour; ?>;\r\n            var todayYMD = \"<?php echo $today_ymd; ?>\";\r\n            \r\n            var dateInput = jQuery(\'#input_<?php echo $form_id; ?>_<?php echo $date_field_id; ?>\');\r\n            var timeInput = jQuery(\'#input_<?php echo $form_id; ?>_<?php echo $time_field_id; ?>\');\r\n            \r\n            // قفل ثانویه (برای حالتی که تقویم از نوع HTML5 باشد)\r\n            if(dateInput.attr(\'type\') === \'date\') {\r\n                dateInput.attr(\'min\', todayYMD);\r\n            }\r\n\r\n            function updateTimeSlots() {\r\n                var selectedDate = dateInput.val();\r\n                \r\n                if(!selectedDate) {\r\n                    timeInput.find(\'option\').prop(\'disabled\', false).show();\r\n                    return;\r\n                }\r\n                \r\n                var isToday = false;\r\n                var selectedDateObj = null;\r\n                var formattedYMD = \'\'; \r\n                \r\n                if(dateInput.hasClass(\'hasDatepicker\')) {\r\n                    selectedDateObj = dateInput.datepicker(\'getDate\');\r\n                } else if(dateInput.attr(\'type\') === \'date\') {\r\n                    selectedDateObj = new Date(selectedDate);\r\n                } else {\r\n                    var parts = selectedDate.split(/[-/]/);\r\n                    if(parts.length === 3 && parts[2].length === 4) { \r\n                        selectedDateObj = new Date(parts[2], parts[1]-1, parts[0]);\r\n                    } else if(parts.length === 3 && parts[0].length === 4) {\r\n                        selectedDateObj = new Date(parts[0], parts[1]-1, parts[2]);\r\n                    }\r\n                }\r\n                \r\n                if(selectedDateObj) {\r\n                    var y = selectedDateObj.getFullYear();\r\n                    var m = (\'0\' + (selectedDateObj.getMonth() + 1)).slice(-2);\r\n                    var d = (\'0\' + selectedDateObj.getDate()).slice(-2);\r\n                    formattedYMD = y + \'-\' + m + \'-\' + d;\r\n                    \r\n                    if(formattedYMD === todayYMD) {\r\n                        isToday = true;\r\n                    }\r\n                }\r\n\r\n                timeInput.find(\'option\').prop(\'disabled\', false).show();\r\n                \r\n                timeInput.find(\'option\').each(function() {\r\n                    var opt = jQuery(this);\r\n                    var val = opt.val();\r\n                    if(!val) return;\r\n                    \r\n                    var disable = false;\r\n                    var optHour = parseInt(val.split(\':\')[0], 10);\r\n                    \r\n                    if(isToday && optHour <= serverHour) {\r\n                        disable = true;\r\n                    }\r\n                    \r\n                    var dbMatches = bookedSlots[selectedDate] || bookedSlots[formattedYMD] || null;\r\n                    if(dbMatches && dbMatches.indexOf(val) !== -1) {\r\n                        disable = true;\r\n                    }\r\n                    \r\n                    if(disable) {\r\n                        opt.prop(\'disabled\', true).hide();\r\n                    }\r\n                });\r\n                \r\n                if(timeInput.find(\'option:selected\').prop(\'disabled\')) {\r\n                    timeInput.val(\'\');\r\n                }\r\n            }\r\n            \r\n            dateInput.on(\'change input\', updateTimeSlots);\r\n            \r\n            if(dateInput.hasClass(\'hasDatepicker\')) {\r\n                dateInput.datepicker(\'option\', \'onSelect\', function(dateText, inst) {\r\n                    dateInput.val(dateText);\r\n                    updateTimeSlots();\r\n                });\r\n            }\r\n            \r\n            setTimeout(updateTimeSlots, 200);\r\n        }\r\n    });\r\n    </script>\r\n    <?php\r\n}\r\n\r\n// =========================================================================\r\n// 3. اعتبارسنجی سمت سرور جهت جلوگیری از رزرو تکراری\r\n// =========================================================================\r\nadd_filter( \'gform_validation_2\', \'dr_soheila_prevent_double_booking_v4\' );\r\nfunction dr_soheila_prevent_double_booking_v4( $validation_result ) {\r\n    $form = $validation_result[\'form\'];\r\n    $submitted_date = rgpost( \'input_18\' ); \r\n    $submitted_time = rgpost( \'input_21\' );\r\n\r\n    if ( ! empty( $submitted_date ) && ! empty( $submitted_time ) ) {\r\n        $formatted_submitted = $submitted_date;\r\n        if(strpos($submitted_date, \'/\') !== false) {\r\n            $parts = explode(\'/\', $submitted_date);\r\n            if(strlen($parts[2]) == 4) {\r\n                $formatted_submitted = $parts[2] . \'-\' . $parts[1] . \'-\' . $parts[0];\r\n            }\r\n        }\r\n\r\n        $entries = GFAPI::get_entries( 2, array( \'status\' => \'active\', \'paging\' => array(\'page_size\' => 3000) ) );\r\n\r\n        foreach($entries as $entry) {\r\n            $db_date = rgar($entry, \'18\');\r\n            $db_time = rgar($entry, \'21\');\r\n\r\n            if(($db_date === $submitted_date || $db_date === $formatted_submitted) && $db_time === $submitted_time) {\r\n                $validation_result[\'is_valid\'] = false;\r\n                foreach( $form[\'fields\'] as &$field ) {\r\n                    if ( $field->id == \'21\' ) {\r\n                        $field->failed_validation = true;\r\n                        $field->validation_message = \'متأسفانه این ساعت به تازگی رزرو شد. لطفاً ساعت دیگری انتخاب کنید.\';\r\n                        break;\r\n                    }\r\n                }\r\n                $validation_result[\'form\'] = $form;\r\n                break;\r\n            }\r\n        }\r\n    }\r\n    return $validation_result;\r\n}\";s:9:\"code_type\";s:3:\"php\";s:8:\"location\";s:10:\"everywhere\";s:11:\"auto_insert\";i:1;s:13:\"insert_number\";i:1;s:9:\"use_rules\";b:0;s:5:\"rules\";a:0:{}s:8:\"priority\";i:10;s:14:\"location_extra\";s:0:\"\";s:20:\"shortcode_attributes\";a:0:{}s:13:\"compiled_code\";s:0:\"\";s:8:\"modified\";s:19:\"2026-06-09 14:34:33\";}}}","auto"),
("1789","wpcode_admin_notices","a:2:{s:14:\"review_request\";a:2:{s:4:\"time\";i:1780680414;s:9:\"dismissed\";b:0;}s:15:\"suggest_plugins\";a:2:{s:4:\"time\";i:1780680414;s:9:\"dismissed\";b:0;}}","auto"),
("1790","_transient_wpcode_used_library_snippets","a:1:{i:12;i:1090;}","on"),
("1792","wpcode_notifications","a:4:{s:6:\"update\";i:1781883714;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}","off"),
("2009","_transient_health-check-site-status-result","{\"good\":20,\"recommended\":6,\"critical\":0}","on"),
("2529","element_category_children","a:0:{}","auto"),
("2718","rg_gforms_key","B5E0B5F8DD8689E6ACA49DD6E6E1A930","auto"),
("2719","gf_db_version","2.10.2","off"),
("2720","rg_form_version","2.10.2","off"),
("2721","gform_enable_background_updates","1","auto"),
("2722","auto_update_plugins","a:1:{i:0;s:29:\"gravityforms/gravityforms.php\";}","off"),
("2723","rg_gforms_default_theme","gravity-theme","off"),
("2724","rg_form_original_version","2.10.2","off"),
("2725","gform_enable_async_notifications","1","off"),
("2726","_site_transient_t15s-registry-gforms","O:8:\"stdClass\":2:{s:8:\"projects\";a:59:{s:26:\"gravityformsactivecampaign\";a:1:{s:12:\"translations\";a:26:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T14:15:16+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T07:57:07+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T11:15:47+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2024-11-09T11:31:32+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2022-06-27T08:31:49+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-05T14:57:41+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-05T14:57:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:05+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-10-09T08:22:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T09:20:30+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-05T14:57:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-24T15:09:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-05T14:57:46+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T14:59:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-04-02T06:44:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:11+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T15:58:58+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T18:39:07+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-04-02T13:27:41+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-29T17:58:14+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-20T19:24:04+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T12:47:21+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-30T21:18:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-30T22:29:04+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsaweber\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-19T14:35:08+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-19T08:03:28+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-19T11:19:40+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:50+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-19T07:37:20+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-19T15:24:00+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-08-16T11:26:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-24T15:14:51+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-18T15:09:53+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-04-01T06:34:42+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-18T15:56:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-18T18:10:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-04-02T13:44:34+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-29T17:52:10+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-20T19:27:52+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-19T12:51:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-27T15:08:02+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2025-03-30T22:22:32+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsagilecrm\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-19T14:37:01+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-19T08:01:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-19T11:18:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2024-11-09T11:31:32+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:36:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:36:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T08:36:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-11-06T08:44:20+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-19T09:20:53+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-06T16:56:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-24T15:13:08+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2026-01-15T14:40:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-04-01T06:35:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-18T15:45:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-18T18:39:20+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-04-02T13:43:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-29T17:54:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-20T19:26:30+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-19T12:49:31+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-30T21:23:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2025-03-30T22:24:10+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsauthorizenet\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2024-03-20T12:51:36+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-12-28T11:16:35+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2024-09-12T11:38:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-29T15:48:18+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:05:17+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:04:01+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-02T20:29:58+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-21T11:50:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:21+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:39+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:45+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-14T17:38:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2021-09-13T20:54:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:32+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:49+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-11-05T09:28:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-11-09T01:30:51+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsbatchbook\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2024-03-20T12:53:19+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:51:40+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:14:25+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:36+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2025-11-06T08:44:47+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:24+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-01-22T16:00:21+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:48+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:40:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:41+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-10-21T18:08:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:59+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-09T01:26:27+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsbreeze\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T14:38:33+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T08:03:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T11:20:05+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T07:33:49+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T09:21:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T16:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-24T15:15:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T15:11:29+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-01T06:33:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T16:04:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T18:39:39+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T13:45:16+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-29T17:49:19+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-20T19:28:07+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T12:53:20+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-27T15:05:01+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-30T22:19:44+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformscampaignmonitor\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-19T14:38:54+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2024-11-09T11:58:24+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-19T08:04:30+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-19T11:20:27+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-19T07:37:42+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-19T09:21:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2020-10-27T15:32:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-24T15:16:23+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-18T15:12:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-04-01T06:33:17+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-18T16:04:53+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-18T18:40:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-04-02T13:45:29+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-29T18:51:09+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-20T16:43:56+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-19T13:16:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-27T15:04:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:25:\"2025-03-30T22:52:50+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformscampfire\";a:1:{s:12:\"translations\";a:24:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2024-03-20T12:55:41+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:39+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:51+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:34+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T09:53:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-18T11:26:09+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-01-22T16:22:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-14T17:44:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:59+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:44:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-13T09:15:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-11-09T01:41:12+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformscapsulecrm\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T14:41:03+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:26+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T08:05:52+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T11:21:13+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2024-11-09T11:31:33+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2022-06-27T08:52:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2022-06-27T08:52:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-11-06T08:43:59+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T09:22:00+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-01-06T17:03:14+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-24T15:18:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T15:20:01+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-04-01T06:33:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T16:07:43+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T18:40:30+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-04-02T13:46:44+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-29T18:53:38+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-20T19:29:19+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T13:18:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-30T21:28:54+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-30T22:52:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformschainedselects\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2024-03-26T11:38:44+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-04-14T18:06:58+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-11-20T07:22:44+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:04:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-10-27T15:57:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-11-04T16:39:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-11-04T16:39:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-10-27T15:56:33+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-11-04T16:40:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-12-17T14:50:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2021-09-13T21:00:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-12-17T15:03:03+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-12-17T15:55:04+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-11-04T16:40:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:04:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-10-21T17:43:40+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2020-10-27T15:55:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-11-10T01:29:52+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformscleverreach\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T14:41:52+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T08:06:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T11:21:40+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2022-06-27T08:54:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2022-06-27T08:54:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2023-01-06T17:05:28+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T07:38:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T09:22:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2023-01-06T17:05:34+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-24T15:20:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-18T15:25:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-04-02T06:43:20+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-18T16:06:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-18T18:40:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-04-02T13:47:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-29T18:54:26+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-20T19:29:40+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T13:19:11+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-30T21:26:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-30T22:50:24+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformscoupons\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-19T14:42:29+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:14+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-19T08:07:30+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-19T11:27:01+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:34+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-19T07:38:40+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-19T09:23:19+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-26T15:44:36+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-18T15:26:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-04-02T06:34:19+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:14+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-18T16:05:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-18T18:40:36+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2024-09-08T00:13:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-29T19:00:30+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-20T16:43:37+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-22T07:24:43+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-27T15:06:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.5.1\";s:7:\"updated\";s:25:\"2025-03-30T22:45:00+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsdropbox\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-19T16:09:14+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2024-09-02T08:18:20+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-19T14:46:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-19T11:28:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:07:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-19T10:35:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-19T09:23:32+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-26T15:45:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-18T15:34:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-04-02T06:33:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2023-11-03T10:13:15+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-18T16:02:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-18T18:40:58+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-04-02T15:53:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-29T19:16:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-20T20:05:17+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-22T07:26:02+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-30T21:31:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.3.1\";s:7:\"updated\";s:25:\"2025-03-30T22:44:36+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsemma\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T16:12:50+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T15:01:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T11:29:52+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:50+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:51+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:54+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T09:23:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T14:10:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-26T15:49:47+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T15:49:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-04-02T06:32:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:14+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T15:50:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T18:41:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-04-02T15:29:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-29T19:14:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-20T20:16:33+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-22T07:29:16+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-30T06:27:41+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-30T22:41:32+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsfreshbooks\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2024-03-20T13:24:54+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:29+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-02-20T14:36:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-10-21T11:51:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:52+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:11+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-03-14T17:49:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-09-14T09:32:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T15:53:03+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:39+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:59+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-02-08T11:26:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-11-29T02:21:29+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformsgetresponse\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T16:13:42+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T15:03:09+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T11:30:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2022-06-27T08:58:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2022-06-27T08:58:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:13+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T07:40:50+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-19T09:24:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2023-01-06T17:11:18+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-26T15:50:57+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-18T16:08:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-04-02T07:37:54+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-18T16:02:48+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-18T18:45:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-04-02T15:55:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-29T19:12:36+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-20T20:06:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-22T07:29:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-30T21:24:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.9.0\";s:7:\"updated\";s:25:\"2025-03-30T22:39:14+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformshelpscout\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2024-03-20T13:26:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-24T07:42:04+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:38:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:40+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:42+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:19+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:20:17+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-05T09:45:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:27+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:50:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-28T21:10:33+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:48+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:03:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-20T06:44:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:39:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:13:00+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-11-29T02:37:34+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformshighrise\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2024-03-20T13:28:49+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:59:10+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:14:26+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:25+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:27+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2025-11-06T08:43:37+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:33+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:51:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:54+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:56+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-08-02T17:30:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-11-19T23:28:15+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshipchat\";a:1:{s:12:\"translations\";a:25:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2024-03-20T13:29:15+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:44+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2022-06-27T10:00:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:00+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-02T20:33:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-21T13:28:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:55+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-21T12:24:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-01-25T07:46:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:18+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-14T17:51:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:23+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-08-02T17:31:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-13T09:22:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-11-19T23:25:08+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsmadmimi\";a:1:{s:12:\"translations\";a:34:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-20T13:31:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:17+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:27+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:32+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:07+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:20+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:06+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2020-10-21T11:52:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-09-25T12:09:30+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:27+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:13+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:30+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-03-14T17:52:56+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:15+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-10-02T10:46:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:11+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2020-12-17T15:55:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:47+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:14:16+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-03T10:11:53+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:15:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2021-08-02T17:35:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:16:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-11-09T01:39:35+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsmailchimp\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2024-03-20T13:32:12+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2026-01-19T10:28:52+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2022-06-27T08:43:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-03-02T20:28:02+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2021-10-25T16:35:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2021-10-17T13:48:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:05+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-02-04T16:58:16+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-11-03T10:13:13+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-11-28T21:13:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:19+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2021-10-25T23:02:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:25+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:16:47+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:29+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-01-06T17:17:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.7.2\";s:7:\"updated\";s:25:\"2023-11-25T20:33:22+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformspartialentries\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-11-23T11:07:56+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-04-14T17:10:56+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2024-11-09T11:58:41+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-11-26T19:03:02+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:18:21+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2024-11-09T11:31:43+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-10-21T13:19:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:17:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-09-25T12:09:31+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-10-17T13:38:00+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:18:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:18:05+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2024-11-08T17:21:07+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:18:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-12-17T14:50:15+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2021-09-14T09:48:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:18:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-12-17T15:55:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:18:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-01-06T17:17:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2021-08-02T17:40:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2020-11-05T09:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.8\";s:7:\"updated\";s:25:\"2023-11-25T20:27:12+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:29:\"gravityformspaypalpaymentspro\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2024-03-20T13:33:43+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-12-28T11:16:35+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-11-26T19:04:21+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:48+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-02T20:27:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-03-24T14:22:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:07:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:10+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-14T17:54:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-14T09:52:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:29+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-12-17T14:13:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:10:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-29T18:02:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-11-25T20:24:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformspaypal\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2024-03-20T15:01:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:51+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T10:05:05+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-02T20:27:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-10-21T11:52:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:19:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:15+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-14T17:54:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-14T09:52:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-12-17T15:54:54+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:46+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-12-01T23:37:46+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformspaypalpro\";a:1:{s:12:\"translations\";a:30:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2025-11-06T14:08:36+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-04-15T14:48:04+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-28T11:11:03+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-28T11:16:36+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:54+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:59:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:02+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:18+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2025-10-23T13:44:10+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-30T13:48:05+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-09-25T12:58:34+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-10-17T13:40:59+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:41:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-01-27T16:56:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:29+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-14T17:55:20+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2019-12-10T13:19:22+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-09-14T09:53:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:53:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:57:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-11-04T18:47:08+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:42:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-12-01T23:55:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformspolls\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-03-20T15:15:58+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-11-27T04:51:47+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-11-05T15:15:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:10+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:12+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:20+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-03-02T20:51:24+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-10-21T13:43:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-11-05T15:13:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-11-05T15:17:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-12-17T14:20:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-12-17T14:19:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-11-05T15:18:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2020-06-29T08:29:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-12-02T00:08:37+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformspostmark\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-24T12:00:03+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-27T04:54:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-24T11:44:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-25T21:03:26+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-31T19:40:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-03-29T18:54:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-22T09:30:48+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-26T12:48:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-04T08:26:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-09-14T09:55:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-31T04:01:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-04-11T21:20:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-20T16:53:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-01T17:59:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-06-05T06:35:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2021-05-26T23:45:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-25T20:16:29+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsquiz\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-07T08:40:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-17T12:15:00+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-06T18:20:38+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-07-10T08:01:14+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-07-10T08:01:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-07-10T08:01:15+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-07-10T08:01:12+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-17T15:15:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-19T07:49:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-07-10T08:01:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-26T10:46:55+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-17T20:51:56+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-10-02T06:51:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-10T10:06:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-06T19:10:38+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-11T23:20:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-15T19:21:44+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-24T12:53:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-22T19:36:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-17T09:14:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2024-09-15T19:21:20+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformssignature\";a:1:{s:12:\"translations\";a:25:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-19T16:17:23+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2023-02-20T14:32:41+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2022-06-27T10:11:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-24T08:43:38+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-19T11:44:44+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2024-11-09T11:33:00+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2021-08-12T08:00:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:38+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-19T07:42:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-19T09:28:09+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2023-03-02T20:55:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-26T16:52:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2024-09-02T08:48:32+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-18T16:56:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-04-02T07:03:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-18T16:06:03+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-18T19:08:56+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-04-02T16:07:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-29T18:33:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-20T16:45:25+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-22T07:55:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-30T12:11:45+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.9.0\";s:7:\"updated\";s:25:\"2025-03-30T23:01:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformsslack\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T16:18:46+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-04-14T18:11:09+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-24T08:44:34+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T11:45:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-01-06T17:26:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T07:48:34+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T09:27:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-01-06T17:26:48+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-26T16:52:08+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T16:57:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-04-02T07:03:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T16:08:17+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T22:09:43+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-04-02T15:58:47+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-29T18:35:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-20T16:49:20+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-22T07:56:35+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-30T21:31:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-31T00:49:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsstripe\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:57+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:02+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:00+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:02+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:02+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:01+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:01+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:02+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:00+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:14:00+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:57+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:59+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:59+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:59+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-11-03T17:55:20+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:59+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:58+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:25:\"2025-06-05T08:13:58+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformssurvey\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-20T15:11:13+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2023-04-14T18:14:00+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-09-02T08:43:26+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2022-06-23T19:14:15+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-20T05:58:48+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-15T15:32:19+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2023-03-02T20:57:55+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2025-11-06T08:40:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-28T10:17:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2023-09-25T12:51:08+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2023-10-17T13:14:03+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2020-11-06T13:17:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-04-01T11:10:01+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-11-08T17:20:20+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-19T16:32:17+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-04-01T05:03:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-18T10:41:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-21T23:00:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-31T22:09:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-20T22:24:23+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-25T10:52:40+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-04-02T20:12:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-20T18:41:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.2.2\";s:7:\"updated\";s:25:\"2024-03-20T22:24:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformstrello\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T16:47:20+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2024-09-02T08:18:24+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T13:28:46+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T11:53:16+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-01-06T17:29:56+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T15:26:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-19T09:27:15+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2023-01-06T17:30:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-26T16:54:51+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T17:00:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-04-02T06:56:40+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T16:04:33+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-18T22:10:14+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-04-02T16:08:09+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-29T18:29:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-20T20:39:11+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-22T08:10:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-27T15:04:50+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:25:\"2025-03-30T23:00:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformstwilio\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-19T16:46:45+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-18T13:28:16+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-19T11:53:28+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2023-01-05T16:46:39+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-18T15:26:24+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-19T09:27:02+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:12+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-27T09:14:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-18T17:01:55+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-04-02T06:56:24+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-18T16:03:43+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-18T22:10:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-04-02T16:07:47+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-29T18:29:10+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-20T20:39:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-22T08:11:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-27T15:05:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.1.1\";s:7:\"updated\";s:25:\"2025-03-30T23:00:32+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:28:\"gravityformsuserregistration\";a:1:{s:12:\"translations\";a:23:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-19T16:46:08+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2024-09-02T08:18:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2023-01-06T17:32:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-24T08:49:32+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-19T11:54:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2022-06-27T10:16:33+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2022-06-27T10:16:36+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2026-02-27T06:01:26+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2023-03-02T20:28:46+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-10-07T07:40:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2024-03-29T13:44:16+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2021-03-29T19:18:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-27T09:23:57+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-19T19:34:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-04-02T06:56:06+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-18T15:47:00+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-18T22:32:36+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-04-02T16:03:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-29T18:28:28+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-20T21:04:43+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-22T08:12:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-30T21:30:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.3.3\";s:7:\"updated\";s:25:\"2025-03-30T23:00:05+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformszapier\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-19T16:50:44+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-18T13:22:40+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-19T11:55:18+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2022-06-27T09:18:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2022-06-27T09:18:32+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2022-06-27T09:18:39+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-18T15:19:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-19T09:26:32+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:33:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-27T09:12:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-19T19:38:52+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-04-02T06:53:00+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-18T15:27:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-18T22:10:46+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-04-02T15:19:59+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-29T18:24:13+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-20T20:59:29+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-22T08:15:36+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-30T21:16:01+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.5.0\";s:7:\"updated\";s:25:\"2025-03-30T22:56:56+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformszohocrm\";a:1:{s:12:\"translations\";a:20:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-19T16:54:27+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-18T13:18:24+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-19T11:56:01+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:34:25+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-18T15:16:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-19T09:26:21+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:34:31+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-27T09:09:58+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-19T19:41:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-04-02T06:52:06+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-18T15:23:21+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-18T22:10:50+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-04-02T16:06:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-29T18:20:53+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-20T19:57:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-22T20:46:20+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-30T21:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.4.0\";s:7:\"updated\";s:25:\"2025-03-30T22:55:02+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsicontact\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T18:08:34+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T13:49:03+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T15:10:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T11:33:12+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T13:49:08+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T13:49:09+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T13:49:14+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T08:17:20+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-19T15:27:13+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-05T13:49:17+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-26T15:57:01+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T16:22:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-04-02T07:37:34+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T15:35:16+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-18T18:37:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-04-02T13:55:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-29T19:22:07+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-20T20:31:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-22T07:43:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-30T06:22:23+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.8.0\";s:7:\"updated\";s:25:\"2025-03-31T01:10:39+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsemailoctopus\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-19T18:11:07+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-19T14:47:14+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-19T11:29:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:36:53+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-19T07:40:08+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-19T09:23:47+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2020-06-23T13:15:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-26T15:46:55+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-18T15:37:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-04-02T06:32:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:17+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-18T15:49:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-18T18:41:01+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-04-02T15:22:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-29T19:01:57+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-20T20:06:00+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-22T07:27:27+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-30T21:16:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2025-03-30T22:42:48+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsmailgun\";a:1:{s:12:\"translations\";a:24:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-07T08:52:25+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:11:02+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T10:02:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-13T09:22:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T08:15:20+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:14:06+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2022-06-27T10:01:47+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-12-28T11:13:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-03-02T20:46:07+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-06T12:42:42+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T11:37:35+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:38:07+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-04T17:13:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-15T07:35:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-24T06:29:14+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-06T09:42:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-23T16:10:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-19T21:36:35+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-09T14:20:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-15T21:52:07+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-22T17:42:52+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-17T22:15:18+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.0\";s:7:\"updated\";s:25:\"2024-05-09T14:20:57+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformssendgrid\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-24T14:25:24+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-23T19:14:16+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-26T19:07:24+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:05:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-10-21T13:18:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:06:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-01-26T16:08:21+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-07-04T20:05:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-06-28T10:45:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:12:16+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-05-23T18:18:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:07:21+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-03T10:13:12+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2021-09-14T09:57:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-12-17T14:33:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-12-17T14:32:57+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:06:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-04T22:55:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-11-06T09:05:23+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2020-05-15T07:53:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.0\";s:7:\"updated\";s:25:\"2023-11-09T01:37:59+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformssquare\";a:1:{s:12:\"translations\";a:19:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-19T18:16:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-18T13:35:08+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-19T11:46:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2022-06-27T09:13:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2022-06-27T09:13:16+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-19T11:23:16+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-19T09:27:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-05T15:16:17+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-27T09:21:10+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-18T16:59:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-04-02T07:01:53+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-18T15:48:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-18T22:33:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-04-02T15:50:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-29T19:04:48+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-20T20:38:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-22T07:58:10+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-30T21:22:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.5.0\";s:7:\"updated\";s:25:\"2025-03-31T00:48:40+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshubspot\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-03-20T15:34:55+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-11-24T12:35:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2024-09-12T12:00:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:00:32+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-11-09T10:59:10+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-20T14:30:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:41:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-05T15:02:53+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-15T15:57:06+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-18T06:09:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-11-28T21:19:11+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-22T18:52:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-05T17:03:26+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-10T17:12:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-16T22:26:43+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-06-30T06:42:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-05-11T14:43:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.2.1\";s:7:\"updated\";s:25:\"2023-11-29T02:47:06+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformsppcp\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-20T09:43:02+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-24T08:39:31+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-19T11:42:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-11-06T08:51:11+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-19T15:27:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2024-09-02T08:18:52+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-27T09:33:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-18T16:49:14+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-04-02T07:11:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-18T15:55:09+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-18T22:09:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-04-02T15:41:01+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-29T19:12:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-20T20:49:21+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-22T07:53:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-30T21:19:19+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2025-03-31T00:55:53+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsmollie\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-20T09:54:21+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-24T08:31:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-19T11:37:44+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-11-06T08:50:50+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-19T15:27:31+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2020-11-01T09:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-26T16:05:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-18T16:40:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-04-02T07:26:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-18T15:38:26+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-18T22:09:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-04-02T14:07:13+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-29T19:29:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-20T20:45:27+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-22T07:49:31+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-30T06:25:21+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:7:\"1.7.0.1\";s:7:\"updated\";s:25:\"2025-03-31T01:02:22+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityforms2checkout\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-20T10:16:35+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-05T13:57:22+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-19T07:54:21+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-19T11:14:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2022-06-23T19:15:48+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2023-02-19T14:45:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-18T15:03:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-19T09:20:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2021-02-02T19:49:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-24T15:08:16+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-18T14:56:03+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-04-02T06:46:34+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-18T15:44:09+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-18T18:39:01+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-04-02T13:25:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-20T19:20:42+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-19T12:45:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-30T21:13:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.4.1\";s:7:\"updated\";s:25:\"2025-03-31T00:53:30+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:32:\"gravityformsadvancedpostcreation\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-20T10:20:12+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-05T15:04:11+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2023-01-06T17:46:19+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-19T07:59:59+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-19T11:17:39+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-11-09T11:31:18+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-05T15:04:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-05T15:04:14+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-05T15:04:17+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-18T15:12:01+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-19T09:20:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-05T15:04:19+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-24T15:11:42+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-09-02T08:46:48+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-18T15:02:17+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-04-01T06:36:29+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-18T16:00:21+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-18T18:39:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-04-02T13:40:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-11-09T11:39:19+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-29T17:55:50+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-11-09T11:50:56+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-11-08T16:08:06+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-20T19:25:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-19T12:52:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-30T21:32:16+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2025-03-30T22:26:15+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformswebhooks\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-20T10:21:50+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2024-09-02T08:43:58+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T13:23:06+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T11:54:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T15:20:05+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T09:26:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2023-01-06T17:46:51+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-27T09:13:30+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-19T19:35:52+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T06:53:13+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T16:04:03+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-18T22:10:34+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-04-02T16:07:59+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-29T18:25:08+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-20T20:40:00+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-22T08:13:16+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-27T15:05:11+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.0\";s:7:\"updated\";s:25:\"2025-03-30T22:57:21+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:16:\"gravityformspipe\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-20T10:25:04+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-24T08:41:11+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-19T11:43:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-19T07:54:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-19T09:25:47+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-11-01T10:02:06+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-26T16:53:58+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-18T16:53:29+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-04-02T07:06:11+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-18T15:57:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-18T19:08:44+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-04-02T15:45:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-29T18:32:41+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-20T20:36:52+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-22T07:54:52+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-30T21:26:13+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2025-03-30T23:03:42+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformsconstantcontact\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-05-07T08:20:57+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:11:18+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-09-02T08:18:23+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:14:28+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-16T07:57:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2024-09-12T11:46:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:20+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:12:06+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T11:36:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:43+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:11:27+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:00+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-25T15:55:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:12:17+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:46:28+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-03T10:13:13+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-29T05:29:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:51+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-23T18:56:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:39+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-11-09T01:53:49+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:12:\"gravityforms\";a:1:{s:12:\"translations\";a:31:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-01T16:45:48+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-03-05T10:47:56+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-10-16T21:14:24+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-08-14T12:30:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-03-05T10:49:15+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-06T09:30:43+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-01T19:24:05+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-10-15T14:33:52+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-10-15T06:20:10+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-02-27T06:22:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-01-19T10:51:27+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-03T17:57:23+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-02T09:50:19+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-09T14:25:50+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:14:\"de-ch/informal\";a:7:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2023-09-25T13:01:31+00:00\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH_informal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:5:\"de-ch\";a:7:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-03-05T10:48:01+00:00\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_CH.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-10-16T21:03:01+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-02T15:02:49+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-10-16T20:41:14+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-08T09:18:09+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-08T06:38:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-03-05T10:48:59+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-10T08:00:51+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-01T16:23:43+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-04T18:58:47+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-03T17:38:00+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sk\";a:7:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-03-18T08:14:12+00:00\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sk_SK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sk\";i:1;s:3:\"slk\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-04T15:35:17+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-07T01:19:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2026-04-01T21:59:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:8:\"2.9.30.1\";s:7:\"updated\";s:25:\"2025-10-16T21:41:48+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsrecaptcha\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-20T13:53:42+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-24T08:42:51+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-19T11:44:18+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-19T07:42:11+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-19T09:26:04+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2021-06-02T13:26:50+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-24T15:22:17+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-18T16:55:31+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-04-02T07:04:32+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-18T16:03:07+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-18T19:08:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-04-02T15:57:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-29T18:36:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-20T16:45:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-22T07:55:19+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-30T21:25:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.0.2\";s:7:\"updated\";s:25:\"2025-03-30T23:02:23+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsmoderation\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-20T13:59:13+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-24T08:22:59+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-19T11:35:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-19T11:04:22+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-19T09:24:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-27T09:27:24+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-18T16:27:34+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-04-02T07:33:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-18T15:53:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-18T19:18:57+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-04-02T15:32:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-29T19:24:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-20T20:34:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-22T20:50:18+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-30T21:17:58+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.3.0\";s:7:\"updated\";s:25:\"2025-03-31T01:04:54+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:23:\"gravityformsgeolocation\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-02-23T15:42:07+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-20T05:48:38+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-15T15:46:27+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-18T14:03:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-28T10:20:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-04-01T11:12:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-19T16:31:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-04-01T06:09:41+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-18T10:45:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-21T23:02:09+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-31T00:08:17+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-22T15:55:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-25T10:54:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-04-02T20:07:13+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-18T20:50:19+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.0\";s:7:\"updated\";s:25:\"2024-03-22T15:55:38+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:31:\"gravityformsconversationalforms\";a:1:{s:12:\"translations\";a:18:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-09T10:30:04+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-09T08:14:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-06T18:14:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-05-03T08:43:40+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-23T12:50:51+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-19T07:05:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-05-03T08:43:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-26T10:39:25+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-17T20:46:11+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-10-03T06:51:46+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-10T11:39:42+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-17T16:16:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-08T00:11:41+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-15T21:52:57+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-24T12:54:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-22T19:39:55+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-17T09:13:03+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.3\";s:7:\"updated\";s:25:\"2024-09-15T21:52:23+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsconvertkit\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-20T15:22:27+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-19T08:12:59+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-19T11:26:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-19T07:33:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-19T15:26:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-05T14:03:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-26T15:43:54+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-18T15:58:29+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-04-02T06:42:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-18T15:32:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-18T18:18:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-04-02T14:41:29+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-29T19:00:05+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-20T20:26:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-22T07:21:27+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-30T06:26:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2025-03-30T22:50:03+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsconvertkit/gravityformsconvertkit-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:11:\"gravitysmtp\";a:1:{s:12:\"translations\";a:16:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:21+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:28+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:28+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:24+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:25+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:23+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:26+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:26+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:25+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:27+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:24+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:25+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:85:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.1.5\";s:7:\"updated\";s:25:\"2025-06-05T09:12:21+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:82:\"https://packages.translationspress.com/rocketgenius/gravitysmtp/gravitysmtp-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformsakismet\";a:1:{s:12:\"translations\";a:30:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-09T08:57:30+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T16:10:43+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T15:43:04+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"cs\";a:7:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T16:14:50+00:00\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-cs_CZ.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"cs\";i:1;s:3:\"ces\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-13T09:10:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T18:50:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T10:41:44+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T10:44:15+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T10:45:19+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T10:41:21+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-13T09:32:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-21T08:45:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"el\";a:7:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T16:14:11+00:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-el.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"el\";i:1;s:3:\"ell\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T10:41:28+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-08T12:27:32+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T10:41:34+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-15T07:17:28+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-24T04:38:07+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"fa\";a:7:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T16:08:07+00:00\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-fa_IR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fa\";i:1;s:3:\"fas\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-08T10:26:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-23T15:53:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-21T10:01:11+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T15:42:58+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-09T14:18:02+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T15:42:59+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-07T15:42:48+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-15T21:54:18+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-22T17:38:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-17T22:12:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.1.0\";s:7:\"updated\";s:25:\"2024-05-09T14:30:18+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsakismet/gravityformsakismet-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:17:\"gravityformsbrevo\";a:1:{s:12:\"translations\";a:17:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-20T08:53:39+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-27T08:43:30+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-19T11:09:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-27T08:45:18+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-18T13:06:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-19T09:18:34+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-24T09:49:27+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-27T08:43:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-04-01T06:30:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-18T14:50:35+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-18T19:08:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-23T08:49:53+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-23T08:50:10+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-04-02T09:03:11+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-19T13:13:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-27T15:03:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.0.0\";s:7:\"updated\";s:25:\"2025-03-23T08:50:23+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsbrevo/gravityformsbrevo-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}}s:13:\"_last_checked\";i:1782984081;}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("2727","gravityformsaddon_gravityformswebapi_version","1.0","auto"),
("2728","widget_gform_widget","a:1:{s:12:\"_multiwidget\";i:1;}","auto"),
("2732","_transient_timeout_rg_gforms_license","1783070481","off"),
("2733","_transient_rg_gforms_license","a:19:{s:15:\"license_key_md5\";s:32:\"B5E0B5F8DD8689E6ACA49DD6E6E1A930\";s:12:\"date_created\";s:19:\"2023-01-01 00:00:00\";s:12:\"date_expires\";s:19:\"2035-01-01 00:00:00\";s:12:\"renewal_date\";s:19:\"2034-12-01 00:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:7:\"GFELITE\";s:12:\"product_name\";s:27:\"Gravity Forms Elite License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:3650;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:12:\"is_perpetual\";b:0;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:105;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}","off"),
("2741","_transient_GFCache_aa5fe6e030e733f54d9f1165499370db","a:2:{s:17:\"gravityforms_cron\";a:3:{i:0;i:1783008838;i:1;i:1782929602;i:2;i:1782846968;}s:30:\"wp_gf_telemetry_processor_cron\";a:1:{i:0;i:1782855353;}}","on"),
("2742","gf_last_telemetry_run","1782846968","auto"),
("2743","gf_telemetry_data","a:2:{s:8:\"snapshot\";O:64:\"Gravity_Forms\\Gravity_Forms\\Telemetry\\GF_Telemetry_Snapshot_Data\":3:{s:4:\"data\";a:31:{s:3:\"key\";s:32:\"B5E0B5F8DD8689E6ACA49DD6E6E1A930\";s:10:\"wp_version\";s:3:\"7.0\";s:11:\"php_version\";s:6:\"8.2.31\";s:13:\"mysql_version\";s:8:\"10.11.18\";s:7:\"plugins\";a:15:{i:0;a:4:{s:4:\"name\";s:26:\"Advanced Custom Fields PRO\";s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:7:\"version\";s:5:\"6.8.2\";s:9:\"is_active\";b:1;}i:1;a:4:{s:4:\"name\";s:34:\"Akismet Anti-spam: Spam Protection\";s:4:\"slug\";s:7:\"akismet\";s:7:\"version\";s:3:\"5.7\";s:9:\"is_active\";b:0;}i:2;a:4:{s:4:\"name\";s:13:\"Avada Builder\";s:4:\"slug\";s:14:\"fusion-builder\";s:7:\"version\";s:6:\"3.13.0\";s:9:\"is_active\";b:1;}i:3;a:4:{s:4:\"name\";s:10:\"Avada Core\";s:4:\"slug\";s:11:\"fusion-core\";s:7:\"version\";s:6:\"5.13.0\";s:9:\"is_active\";b:1;}i:4;a:4:{s:4:\"name\";s:14:\"Duplicate Page\";s:4:\"slug\";s:14:\"duplicate-page\";s:7:\"version\";s:5:\"4.5.9\";s:9:\"is_active\";b:1;}i:5;a:4:{s:4:\"name\";s:10:\"Duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:7:\"version\";s:8:\"1.5.16.1\";s:9:\"is_active\";b:1;}i:6;a:4:{s:4:\"name\";s:14:\"Duplicator Pro\";s:4:\"slug\";s:14:\"duplicator-pro\";s:7:\"version\";s:8:\"4.5.24.2\";s:9:\"is_active\";b:0;}i:7;a:4:{s:4:\"name\";s:15:\"Float Menu Lite\";s:4:\"slug\";s:10:\"float-menu\";s:7:\"version\";s:5:\"7.2.4\";s:9:\"is_active\";b:1;}i:8;a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:4:\"slug\";s:12:\"gravityforms\";s:7:\"version\";s:6:\"2.10.2\";s:9:\"is_active\";b:1;}i:9;a:4:{s:4:\"name\";s:11:\"Hello Dolly\";s:4:\"slug\";s:5:\"hello\";s:7:\"version\";s:5:\"1.7.2\";s:9:\"is_active\";b:0;}i:10;a:4:{s:4:\"name\";s:16:\"Imunify Security\";s:4:\"slug\";s:16:\"imunify-security\";s:7:\"version\";s:5:\"4.0.1\";s:9:\"is_active\";b:1;}i:11;a:4:{s:4:\"name\";s:28:\"Smash Balloon Instagram Feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:7:\"version\";s:6:\"6.11.0\";s:9:\"is_active\";b:1;}i:12;a:4:{s:4:\"name\";s:11:\"WPCode Lite\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:7:\"version\";s:5:\"2.3.6\";s:9:\"is_active\";b:1;}i:13;a:4:{s:4:\"name\";s:9:\"WPConsent\";s:4:\"slug\";s:38:\"wpconsent-cookies-banner-privacy-suite\";s:7:\"version\";s:5:\"1.1.6\";s:9:\"is_active\";b:1;}i:14;a:4:{s:4:\"name\";s:9:\"WP Rocket\";s:4:\"slug\";s:9:\"wp-rocket\";s:7:\"version\";s:6:\"3.21.3\";s:9:\"is_active\";b:1;}}s:10:\"theme_name\";s:11:\"Avada Child\";s:9:\"theme_uri\";s:0:\"\";s:13:\"theme_version\";s:5:\"1.0.0\";s:12:\"theme_author\";s:11:\"ThemeFusion\";s:16:\"theme_author_uri\";s:24:\"https://theme-fusion.com\";s:12:\"is_multisite\";b:0;s:11:\"total_forms\";i:2;s:13:\"total_entries\";s:1:\"8\";s:11:\"emails_sent\";s:2:\"13\";s:9:\"api_calls\";i:0;s:16:\"entry_meta_count\";i:89;s:19:\"entry_details_count\";i:89;s:17:\"entry_notes_count\";i:13;s:4:\"lang\";s:5:\"en_US\";s:2:\"db\";s:7:\"MariaDB\";s:10:\"autoUpdate\";i:1;s:8:\"currency\";s:3:\"USD\";s:14:\"dataCollection\";i:0;s:5:\"email\";b:0;s:9:\"formTypes\";s:0:\"\";s:14:\"formTypesOther\";b:0;s:11:\"hideLicense\";i:0;s:12:\"organization\";b:0;s:17:\"organizationOther\";b:0;s:8:\"services\";s:0:\"\";s:13:\"servicesOther\";b:0;}s:3:\"key\";s:8:\"snapshot\";s:15:\"data_collection\";s:1:\"0\";}s:6:\"events\";a:0:{}}","off"),
("2866","gform_version_info","a:12:{s:12:\"is_valid_key\";b:1;s:6:\"reason\";s:0:\"\";s:7:\"version\";s:7:\"2.2.6.5\";s:3:\"url\";s:65:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms.zip\";s:15:\"expiration_time\";i:4936513150;s:9:\"offerings\";a:83:{s:12:\"gravityforms\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:7:\"2.2.6.5\";s:14:\"version_latest\";s:7:\"2.2.6.5\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:65:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms.zip\";s:10:\"url_latest\";s:65:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms.zip\";}s:10:\"gravitycrm\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";s:20:\"minimum_requirements\";a:0:{}}s:21:\"gravityforms2checkout\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.1\";s:14:\"version_latest\";s:5:\"2.4.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms2checkout.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms2checkout.zip\";}s:26:\"gravityformsactivecampaign\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsactivecampaign.zip\";s:10:\"url_latest\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsactivecampaign.zip\";}s:32:\"gravityformsadvancedpostcreation\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.1\";s:14:\"version_latest\";s:7:\"1.6.1.1\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.9.24\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:32:\"gravityformsadvancedpostcreation\";s:12:\"parent_title\";s:29:\"Advanced Post Creation Add-On\";}}s:3:\"url\";s:85:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsadvancedpostcreation.zip\";s:10:\"url_latest\";s:85:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsadvancedpostcreation.zip\";}s:20:\"gravityformsagilecrm\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsagilecrm.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsagilecrm.zip\";}s:19:\"gravityformsakismet\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsakismet.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsakismet.zip\";}s:24:\"gravityformsauthorizenet\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsauthorizenet.zip\";s:10:\"url_latest\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsauthorizenet.zip\";}s:18:\"gravityformsaweber\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.2.0\";s:14:\"version_latest\";s:5:\"4.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsaweber.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsaweber.zip\";}s:21:\"gravityformsbatchbook\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbatchbook.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbatchbook.zip\";}s:18:\"gravityformsbreeze\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbreeze.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbreeze.zip\";}s:17:\"gravityformsbrevo\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbrevo.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbrevo.zip\";}s:27:\"gravityformscampaignmonitor\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.1.1\";s:14:\"version_latest\";s:5:\"4.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscampaignmonitor.zip\";s:10:\"url_latest\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscampaignmonitor.zip\";}s:20:\"gravityformscampfire\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:20:\"minimum_requirements\";a:0:{}}s:22:\"gravityformscapsulecrm\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscapsulecrm.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscapsulecrm.zip\";}s:15:\"gravityformscf7\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.0-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscf7.zip\";s:10:\"url_latest\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscf7.zip\";}s:26:\"gravityformschainedselects\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:7:\"1.8.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformschainedselects.zip\";s:10:\"url_latest\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformschainedselects.zip\";}s:23:\"gravityformscleverreach\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.9.0\";s:14:\"version_latest\";s:5:\"1.9.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscleverreach.zip\";s:10:\"url_latest\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscleverreach.zip\";}s:15:\"gravityformscli\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscli.zip\";s:10:\"url_latest\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscli.zip\";}s:27:\"gravityformsconstantcontact\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:7:\"1.8.0.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconstantcontact.zip\";s:10:\"url_latest\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconstantcontact.zip\";}s:31:\"gravityformsconversationalforms\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.1\";s:14:\"version_latest\";s:5:\"1.7.1\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.9.24\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:31:\"gravityformsconversationalforms\";s:12:\"parent_title\";s:27:\"Conversational Forms Add-On\";}}s:3:\"url\";s:84:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconversationalforms.zip\";s:10:\"url_latest\";s:84:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconversationalforms.zip\";}s:22:\"gravityformsconvertkit\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.0.1\";s:14:\"version_latest\";s:5:\"2.0.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconvertkit.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconvertkit.zip\";}s:19:\"gravityformscoupons\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.5.1\";s:14:\"version_latest\";s:7:\"3.5.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscoupons.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscoupons.zip\";}s:17:\"gravityformsdebug\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0.beta12\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdebug.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdebug.zip\";}s:16:\"gravityformsdrip\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdrip.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdrip.zip\";}s:19:\"gravityformsdropbox\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.3.1\";s:14:\"version_latest\";s:7:\"3.3.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdropbox.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdropbox.zip\";}s:24:\"gravityformsemailoctopus\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.0.0\";s:14:\"version_latest\";s:5:\"2.0.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemailoctopus.zip\";s:10:\"url_latest\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemailoctopus.zip\";}s:16:\"gravityformsemma\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemma.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemma.zip\";}s:20:\"gravityformsfeedback\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfeedback.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfeedback.zip\";}s:22:\"gravityformsfreshbooks\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfreshbooks.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfreshbooks.zip\";}s:23:\"gravityformsgeolocation\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.2\";s:14:\"version_latest\";s:5:\"1.5.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgeolocation.zip\";s:10:\"url_latest\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgeolocation.zip\";}s:23:\"gravityformsgetresponse\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.9.1\";s:14:\"version_latest\";s:5:\"1.9.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgetresponse.zip\";s:10:\"url_latest\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgetresponse.zip\";}s:27:\"gravityformsgoogleanalytics\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.1\";s:14:\"version_latest\";s:5:\"2.4.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogleanalytics.zip\";s:10:\"url_latest\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogleanalytics.zip\";}s:22:\"gravityformsgoogledocs\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogledocs.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogledocs.zip\";}s:24:\"gravityformsgooglesheets\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgooglesheets.zip\";s:10:\"url_latest\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgooglesheets.zip\";}s:21:\"gravityformsgutenberg\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgutenberg.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgutenberg.zip\";}s:21:\"gravityformshelpscout\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:7:\"2.4.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshelpscout.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshelpscout.zip\";}s:20:\"gravityformshighrise\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshighrise.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshighrise.zip\";}s:19:\"gravityformshipchat\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:20:\"minimum_requirements\";a:0:{}}s:19:\"gravityformshubspot\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.0.3\";s:14:\"version_latest\";s:5:\"3.0.3\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshubspot.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshubspot.zip\";}s:20:\"gravityformsicontact\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsicontact.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsicontact.zip\";}s:19:\"gravityformsklaviyo\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:12:\"0.1.0-beta.1\";s:14:\"version_latest\";s:12:\"0.1.0-beta.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsklaviyo.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsklaviyo.zip\";}s:19:\"gravityformslogging\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformslogging.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformslogging.zip\";}s:19:\"gravityformsmadmimi\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmadmimi.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmadmimi.zip\";}s:21:\"gravityformsmailchimp\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.7.2\";s:14:\"version_latest\";s:5:\"5.7.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailchimp.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailchimp.zip\";}s:22:\"gravityformsmailerlite\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailerlite.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailerlite.zip\";}s:19:\"gravityformsmailgun\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailgun.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailgun.zip\";}s:19:\"gravityformsmailjet\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailjet.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailjet.zip\";}s:22:\"gravityformsmoderation\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmoderation.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmoderation.zip\";}s:18:\"gravityformsmollie\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.2\";s:14:\"version_latest\";s:5:\"1.8.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmollie.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmollie.zip\";}s:18:\"gravityformsnotion\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.0-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsnotion.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsnotion.zip\";}s:26:\"gravityformspartialentries\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspartialentries.zip\";s:10:\"url_latest\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspartialentries.zip\";}s:18:\"gravityformspaypal\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypal.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypal.zip\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:82:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpaymentspro.zip\";s:10:\"url_latest\";s:82:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpaymentspro.zip\";}s:21:\"gravityformspaypalpro\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpro.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpro.zip\";}s:20:\"gravityformspicatcha\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";s:20:\"minimum_requirements\";a:0:{}}s:16:\"gravityformspipe\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspipe.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspipe.zip\";}s:17:\"gravityformspolls\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.4.0\";s:14:\"version_latest\";s:5:\"4.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspolls.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspolls.zip\";}s:18:\"gravityformspopups\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspopups.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspopups.zip\";}s:20:\"gravityformspostmark\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspostmark.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspostmark.zip\";}s:16:\"gravityformsppcp\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.2\";s:14:\"version_latest\";s:5:\"4.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsppcp.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsppcp.zip\";}s:16:\"gravityformsquiz\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.1\";s:14:\"version_latest\";s:5:\"4.3.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsquiz.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsquiz.zip\";}s:21:\"gravityformsrecaptcha\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.2\";s:14:\"version_latest\";s:5:\"2.2.2\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:5:\"2.9.5\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:21:\"gravityformsrecaptcha\";s:12:\"parent_title\";s:16:\"reCAPTCHA Add-On\";}}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrecaptcha.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrecaptcha.zip\";}s:19:\"gravityformsrestapi\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrestapi.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrestapi.zip\";}s:22:\"gravityformssalesforce\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.0.0\";s:14:\"version_latest\";s:5:\"2.0.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssalesforce.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssalesforce.zip\";}s:20:\"gravityformssendgrid\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssendgrid.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssendgrid.zip\";}s:21:\"gravityformssignature\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.9.0\";s:14:\"version_latest\";s:7:\"4.9.1.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssignature.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssignature.zip\";}s:17:\"gravityformsslack\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsslack.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsslack.zip\";}s:18:\"gravityformssquare\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.5.1\";s:14:\"version_latest\";s:5:\"2.5.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssquare.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssquare.zip\";}s:18:\"gravityformsstripe\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"6.0.3\";s:14:\"version_latest\";s:5:\"6.0.3\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.9.26\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:18:\"gravityformsstripe\";s:12:\"parent_title\";s:13:\"Stripe Add-On\";}}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsstripe.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsstripe.zip\";}s:18:\"gravityformssurvey\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.2.1\";s:14:\"version_latest\";s:5:\"4.2.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssurvey.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssurvey.zip\";}s:18:\"gravityformstrello\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:7:\"2.2.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstrello.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstrello.zip\";}s:21:\"gravityformsturnstile\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsturnstile.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsturnstile.zip\";}s:18:\"gravityformstwilio\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.1.1\";s:14:\"version_latest\";s:5:\"3.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstwilio.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstwilio.zip\";}s:28:\"gravityformsuserregistration\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.5.0\";s:14:\"version_latest\";s:5:\"5.5.0\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.10.3\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:28:\"gravityformsuserregistration\";s:12:\"parent_title\";s:24:\"User Registration Add-On\";}}s:3:\"url\";s:81:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsuserregistration.zip\";s:10:\"url_latest\";s:81:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsuserregistration.zip\";}s:22:\"gravityformsversioning\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsversioning.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsversioning.zip\";}s:20:\"gravityformswebhooks\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswebhooks.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswebhooks.zip\";}s:19:\"gravityformswpforms\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.0-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswpforms.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswpforms.zip\";}s:18:\"gravityformszapier\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.5.1\";s:14:\"version_latest\";s:5:\"4.5.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszapier.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszapier.zip\";}s:19:\"gravityformszohocrm\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:7:\"2.4.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszohocrm.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszohocrm.zip\";}s:11:\"gravitysmtp\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:64:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravitysmtp.zip\";s:10:\"url_latest\";s:64:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravitysmtp.zip\";}s:7:\"testing\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:5:\"1.www\";s:20:\"minimum_requirements\";a:0:{}}}s:9:\"is_active\";s:1:\"1\";s:12:\"product_code\";s:7:\"GFLTDEV\";s:12:\"date_created\";s:19:\"2026-07-01 19:09:10\";s:14:\"version_latest\";s:7:\"2.2.6.5\";s:10:\"url_latest\";s:65:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms.zip\";s:9:\"timestamp\";i:1782984081;}","off"),
("2867","rg_gforms_currency","USD","auto"),
("2868","gform_enable_dashboard_widget","1","auto"),
("2869","rg_gforms_dataCollection","0","auto"),
("3500","gform_email_count","13","auto"),
("3658","sb_instagram_feed_notices","a:5:{i:45;a:24:{s:2:\"id\";i:45;s:4:\"type\";s:11:\"information\";s:7:\"message\";s:541:\"Hey there! We\'re excited to share something new from the Smash Balloon team. Knowing how important direct connection is, we built WPChat. It’s the easiest way to chat with your site visitors on WhatsApp, Messenger, and Telegram, helping you provide instant, personal support. It\'s completely free to get started. The free version includes live chat for one agent via WhatsApp, Facebook Messenger or Telegram, AI-Powered Smart FAQs to automatically answer questions, and a beautiful, customizable chat widget that looks great on any device.\";s:5:\"title\";a:2:{s:4:\"text\";s:48:\"Add a Free WhatsApp Chat to Your Site in Minutes\";s:5:\"class\";s:5:\"title\";}s:4:\"icon\";s:0:\"\";s:5:\"class\";s:7:\"message\";s:11:\"dismissible\";b:1;s:8:\"priority\";i:100;s:10:\"start_date\";s:19:\"2025-10-30 00:00:00\";s:8:\"end_date\";s:19:\"2026-10-30 23:59:59\";s:10:\"wrap_class\";s:22:\"sbi-notifications-wrap\";s:7:\"wrap_id\";s:17:\"sbi-notifications\";s:4:\"page\";a:6:{i:0;s:16:\"sbi-feed-builder\";i:1;s:12:\"sbi-settings\";i:2;s:19:\"sbi-oembeds-manager\";i:3;s:22:\"sbi-extensions-manager\";i:4;s:12:\"sbi-about-us\";i:5;s:11:\"sbi-support\";}s:10:\"capability\";a:2:{i:0;s:29:\"manage_instagram_feed_options\";i:1;s:14:\"manage_options\";}s:7:\"dismiss\";a:5:{s:5:\"class\";s:7:\"dismiss\";s:5:\"title\";s:20:\"Dismiss this message\";s:4:\"icon\";s:95:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-dismiss-icon.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"href\";s:0:\"\";}s:3:\"nav\";b:1;s:10:\"navigation\";a:3:{s:5:\"class\";s:10:\"navigation\";s:3:\"tag\";s:3:\"div\";s:5:\"items\";a:2:{s:4:\"prev\";a:5:{s:5:\"class\";s:13:\"prev disabled\";s:5:\"title\";s:16:\"Previous message\";s:4:\"icon\";s:96:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-carousel-prev.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"attr\";s:0:\"\";}s:4:\"next\";a:5:{s:5:\"class\";s:13:\"next disabled\";s:5:\"title\";s:12:\"Next message\";s:4:\"icon\";s:96:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-carousel-next.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"attr\";s:0:\"\";}}}s:11:\"wrap_schema\";s:164:\"<div {wrap_id} {wrap_class}>{dismiss}{navigation}<div class=\"messages\"><div {class} {data}>{image}{title}<p class=\"content\">{message}</p>{buttons}</div></div></div>\";s:4:\"data\";a:1:{s:10:\"message-id\";s:2:\"45\";}s:5:\"image\";a:3:{s:3:\"src\";s:86:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/balloon.svg\";s:3:\"alt\";s:6:\"notice\";s:4:\"wrap\";s:41:\"<div class=\"bell\"><img {src} {alt}></div>\";}s:7:\"buttons\";a:2:{i:0;a:6:{s:5:\"class\";s:21:\"sbi-btn sbi-btn-green\";s:3:\"url\";s:187:\"https://wpchat.com/how-to-get-free-whatsapp-chat-plugin-wordpress/?utm_source=Instagram Feed-free&utm_medium=plugin-dashboard-notices&utm_campaign=wpchatlaunch&utm_content=try-wpchat-free\";s:6:\"target\";s:6:\"_blank\";s:3:\"rel\";s:8:\"noopener\";s:4:\"text\";s:19:\"Try WPChat for Free\";s:3:\"tag\";s:1:\"a\";}i:1;a:6:{s:5:\"class\";s:20:\"sbi-btn sbi-btn-grey\";s:3:\"url\";s:185:\"https://wpchat.com/how-to-get-free-whatsapp-chat-plugin-wordpress/?utm_source=Instagram Feed-free&utm_medium=plugin-dashboard-notices&utm_campaign=wpchatlaunch&utm_content=add-free-chat\";s:6:\"target\";s:6:\"_blank\";s:3:\"rel\";s:8:\"noopener\";s:4:\"text\";s:17:\"Add Free Chat Now\";s:3:\"tag\";s:1:\"a\";}}s:18:\"buttons_wrap_start\";s:21:\"<div class=\"buttons\">\";s:16:\"buttons_wrap_end\";s:6:\"</div>\";s:5:\"group\";s:9:\"marketing\";}s:23:\"review_step_1_all_pages\";a:17:{s:2:\"id\";s:23:\"review_step_1_all_pages\";s:4:\"type\";s:11:\"information\";s:7:\"message\";s:43:\"Are you enjoying the Instagram Feed Plugin?\";s:5:\"title\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:5:\"class\";s:35:\"sbi_notice sbi_review_notice_step_1\";s:11:\"dismissible\";b:0;s:8:\"priority\";i:50;s:10:\"start_date\";b:0;s:8:\"end_date\";b:0;s:12:\"page_exclude\";a:6:{i:0;s:16:\"sbi-feed-builder\";i:1;s:12:\"sbi-settings\";i:2;s:19:\"sbi-oembeds-manager\";i:3;s:22:\"sbi-extensions-manager\";i:4;s:12:\"sbi-about-us\";i:5;s:11:\"sbi-support\";}s:10:\"capability\";a:2:{i:0;s:29:\"manage_instagram_feed_options\";i:1;s:14:\"manage_options\";}s:5:\"image\";a:3:{s:3:\"src\";s:87:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-icon.png\";s:3:\"alt\";s:6:\"notice\";s:4:\"wrap\";s:46:\"<div class=\"sbi_thumb\"><img {src} {alt}></div>\";}s:7:\"buttons\";a:2:{i:0;a:4:{s:4:\"text\";s:3:\"Yes\";s:5:\"class\";s:12:\"sbi-btn-link\";s:2:\"id\";s:22:\"sbi_review_consent_yes\";s:3:\"tag\";s:6:\"button\";}i:1;a:6:{s:4:\"text\";s:2:\"No\";s:5:\"class\";s:12:\"sbi-btn-link\";s:2:\"id\";s:21:\"sbi_review_consent_no\";s:6:\"target\";s:6:\"_blank\";s:3:\"url\";s:124:\"https://smashballoon.com/feedback/?plugin=instagram-free&utm_campaign=instagram-free&utm_source=new-user&utm_medium=feedback\";s:3:\"tag\";s:1:\"a\";}}s:18:\"buttons_wrap_start\";s:37:\"<div class=\"sbi-notice-consent-btns\">\";s:16:\"buttons_wrap_end\";s:6:\"</div>\";s:11:\"wrap_schema\";s:112:\"<div {class}>{image}<div class=\"sbi-notice-text\"><p class=\"sbi-notice-text-p\">{message}</p></div>{buttons}</div>\";}s:23:\"review_step_2_all_pages\";a:19:{s:2:\"id\";s:23:\"review_step_2_all_pages\";s:4:\"type\";s:11:\"information\";s:7:\"message\";s:73:\"It really helps to support the plugin and help others to discover it too!\";s:5:\"title\";a:2:{s:4:\"text\";s:79:\"Glad to hear you are enjoying it. Would you consider leaving a positive review?\";s:5:\"class\";s:22:\"sbi-notice-text-header\";}s:4:\"icon\";s:0:\"\";s:5:\"class\";s:42:\"sbi_notice_op sbi_notice sbi_review_notice\";s:11:\"dismissible\";b:1;s:8:\"priority\";i:51;s:10:\"start_date\";b:0;s:8:\"end_date\";b:0;s:12:\"page_exclude\";a:6:{i:0;s:16:\"sbi-feed-builder\";i:1;s:12:\"sbi-settings\";i:2;s:19:\"sbi-oembeds-manager\";i:3;s:22:\"sbi-extensions-manager\";i:4;s:12:\"sbi-about-us\";i:5;s:11:\"sbi-support\";}s:10:\"capability\";a:2:{i:0;s:29:\"manage_instagram_feed_options\";i:1;s:14:\"manage_options\";}s:5:\"image\";a:3:{s:3:\"src\";s:87:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-icon.png\";s:3:\"alt\";s:6:\"notice\";s:4:\"wrap\";s:46:\"<div class=\"sbi_thumb\"><img {src} {alt}></div>\";}s:7:\"buttons\";a:4:{i:0;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-blue sbi_notice_dismiss\";s:3:\"url\";s:60:\"https://wordpress.org/support/plugin/instagram-feed/reviews/\";s:6:\"target\";s:6:\"_blank\";s:3:\"rel\";s:8:\"noopener\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";s:3:\"tag\";s:1:\"a\";}i:1;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-grey sbi_notice_dismiss\";s:3:\"url\";a:2:{s:4:\"args\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:6:\"action\";s:10:\"sbi-review\";}s:6:\"target\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:4:\"text\";s:9:\"No thanks\";s:3:\"tag\";s:1:\"a\";}i:2;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-grey sbi_notice_dismiss\";s:3:\"url\";a:2:{s:4:\"args\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:6:\"action\";s:10:\"sbi-review\";}s:6:\"target\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:4:\"text\";s:27:\"I\'ve already given a review\";s:3:\"tag\";s:1:\"a\";}i:3;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-grey sbi_notice_dismiss\";s:3:\"url\";a:2:{s:4:\"args\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:6:\"action\";s:10:\"sbi-review\";}s:6:\"target\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:4:\"text\";s:12:\"Ask Me Later\";s:3:\"tag\";s:1:\"a\";}}s:18:\"buttons_wrap_start\";s:62:\"<div class=\"sbi-notice-btns-wrap\"><p class=\"sbi-notice-links\">\";s:16:\"buttons_wrap_end\";s:10:\"</p></div>\";s:6:\"styles\";a:1:{s:7:\"display\";a:3:{s:9:\"condition\";a:4:{s:3:\"key\";s:6:\"option\";s:4:\"name\";s:18:\"sbi_review_consent\";s:7:\"compare\";s:3:\"===\";s:5:\"value\";s:3:\"yes\";}s:4:\"true\";s:0:\"\";s:5:\"false\";s:4:\"none\";}}s:7:\"dismiss\";a:4:{s:5:\"class\";s:18:\"sbi-notice-dismiss\";s:4:\"icon\";s:95:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-dismiss-icon.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"href\";a:2:{s:4:\"args\";a:1:{s:11:\"sbi_dismiss\";s:6:\"review\";}s:6:\"action\";s:10:\"sbi-review\";}}s:11:\"wrap_schema\";s:185:\"<div {class} {styles}>{image}<div class=\"sbi-notice-text\">\n						<div class=\"sbi-notice-text-inner\">{title}<p class=\"sbi-notice-text-p\">{message}</p></div>{buttons}</div>{dismiss}</div>\";}s:13:\"review_step_1\";a:24:{s:2:\"id\";s:13:\"review_step_1\";s:4:\"type\";s:11:\"information\";s:7:\"message\";s:0:\"\";s:5:\"title\";a:2:{s:4:\"text\";s:43:\"Are you enjoying the Instagram Feed Plugin?\";s:5:\"class\";s:5:\"title\";}s:4:\"icon\";s:0:\"\";s:5:\"class\";s:31:\"sbi_review_step1_notice message\";s:11:\"dismissible\";b:1;s:8:\"priority\";i:50;s:10:\"start_date\";b:0;s:8:\"end_date\";b:0;s:10:\"wrap_class\";s:40:\"sbi-notifications-wrap sbi_review_notice\";s:7:\"wrap_id\";s:17:\"sbi-notifications\";s:4:\"page\";a:6:{i:0;s:16:\"sbi-feed-builder\";i:1;s:12:\"sbi-settings\";i:2;s:19:\"sbi-oembeds-manager\";i:3;s:22:\"sbi-extensions-manager\";i:4;s:12:\"sbi-about-us\";i:5;s:11:\"sbi-support\";}s:10:\"capability\";a:2:{i:0;s:29:\"manage_instagram_feed_options\";i:1;s:14:\"manage_options\";}s:7:\"dismiss\";a:5:{s:5:\"class\";s:7:\"dismiss\";s:5:\"title\";s:20:\"Dismiss this message\";s:4:\"icon\";s:95:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-dismiss-icon.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"href\";a:2:{s:4:\"args\";a:1:{s:11:\"sbi_dismiss\";s:6:\"review\";}s:6:\"action\";s:10:\"sbi-review\";}}s:3:\"nav\";b:1;s:10:\"navigation\";a:3:{s:5:\"class\";s:10:\"navigation\";s:3:\"tag\";s:3:\"div\";s:5:\"items\";a:2:{s:4:\"prev\";a:5:{s:5:\"class\";s:13:\"prev disabled\";s:5:\"title\";s:16:\"Previous message\";s:4:\"icon\";s:96:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-carousel-prev.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"attr\";s:0:\"\";}s:4:\"next\";a:5:{s:5:\"class\";s:13:\"next disabled\";s:5:\"title\";s:12:\"Next message\";s:4:\"icon\";s:96:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-carousel-next.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"attr\";s:0:\"\";}}}s:11:\"wrap_schema\";s:132:\"<div {wrap_id} {wrap_class}>{dismiss}{navigation}<div class=\"messages\"><div {class} {data}>{image}{title}{buttons}</div></div></div>\";s:4:\"data\";a:1:{s:10:\"message-id\";s:6:\"review\";}s:5:\"image\";a:3:{s:3:\"src\";s:87:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-icon.png\";s:3:\"alt\";s:6:\"notice\";s:4:\"wrap\";s:41:\"<div class=\"bell\"><img {src} {alt}></div>\";}s:7:\"buttons\";a:2:{i:0;a:4:{s:4:\"text\";s:3:\"Yes\";s:5:\"class\";s:12:\"sbi-btn-link\";s:2:\"id\";s:22:\"sbi_review_consent_yes\";s:3:\"tag\";s:6:\"button\";}i:1;a:6:{s:4:\"text\";s:2:\"No\";s:5:\"class\";s:12:\"sbi-btn-link\";s:2:\"id\";s:21:\"sbi_review_consent_no\";s:6:\"target\";s:6:\"_blank\";s:3:\"url\";s:129:\"https://smashballoon.com/feedback/?plugin=instagram-lite&utm_campaign=instagram-free&utm_source=notifications&utm_medium=feedback\";s:3:\"tag\";s:1:\"a\";}}s:18:\"buttons_wrap_start\";s:32:\"<div class=\"review-step-1-btns\">\";s:16:\"buttons_wrap_end\";s:6:\"</div>\";s:5:\"group\";s:9:\"marketing\";}s:13:\"review_step_2\";a:25:{s:2:\"id\";s:13:\"review_step_2\";s:4:\"type\";s:11:\"information\";s:7:\"message\";s:73:\"It really helps to support the plugin and help others to discover it too!\";s:5:\"title\";a:2:{s:4:\"text\";s:79:\"Glad to hear you are enjoying it. Would you consider leaving a positive review?\";s:5:\"class\";s:5:\"title\";}s:4:\"icon\";s:0:\"\";s:5:\"class\";s:17:\"message rn_step_2\";s:11:\"dismissible\";b:1;s:8:\"priority\";i:51;s:10:\"start_date\";b:0;s:8:\"end_date\";b:0;s:10:\"wrap_class\";s:40:\"sbi-notifications-wrap sbi_review_notice\";s:7:\"wrap_id\";s:17:\"sbi-notifications\";s:4:\"page\";a:6:{i:0;s:16:\"sbi-feed-builder\";i:1;s:12:\"sbi-settings\";i:2;s:19:\"sbi-oembeds-manager\";i:3;s:22:\"sbi-extensions-manager\";i:4;s:12:\"sbi-about-us\";i:5;s:11:\"sbi-support\";}s:10:\"capability\";a:2:{i:0;s:29:\"manage_instagram_feed_options\";i:1;s:14:\"manage_options\";}s:7:\"dismiss\";a:5:{s:5:\"class\";s:7:\"dismiss\";s:5:\"title\";s:20:\"Dismiss this message\";s:4:\"icon\";s:95:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-dismiss-icon.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"href\";a:2:{s:4:\"args\";a:1:{s:11:\"sbi_dismiss\";s:6:\"review\";}s:6:\"action\";s:10:\"sbi-review\";}}s:3:\"nav\";b:1;s:10:\"navigation\";a:3:{s:5:\"class\";s:10:\"navigation\";s:3:\"tag\";s:3:\"div\";s:5:\"items\";a:2:{s:4:\"prev\";a:5:{s:5:\"class\";s:13:\"prev disabled\";s:5:\"title\";s:16:\"Previous message\";s:4:\"icon\";s:96:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-carousel-prev.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"attr\";s:0:\"\";}s:4:\"next\";a:5:{s:5:\"class\";s:13:\"next disabled\";s:5:\"title\";s:12:\"Next message\";s:4:\"icon\";s:96:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-carousel-next.svg\";s:3:\"tag\";s:1:\"a\";s:4:\"attr\";s:0:\"\";}}}s:11:\"wrap_schema\";s:173:\"<div {wrap_id} {wrap_class}>{dismiss}{navigation}<div class=\"messages\"><div {class} {data} {styles}>{image}{title}<p class=\"content\">{message}</p>{buttons}</div></div></div>\";s:4:\"data\";a:1:{s:10:\"message-id\";s:6:\"review\";}s:5:\"image\";a:3:{s:3:\"src\";s:87:\"https://dr.frex.digital/wp-content/plugins/instagram-feed/admin/assets/img/sbi-icon.png\";s:3:\"alt\";s:6:\"notice\";s:4:\"wrap\";s:41:\"<div class=\"bell\"><img {src} {alt}></div>\";}s:7:\"buttons\";a:4:{i:0;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-blue sbi_notice_dismiss\";s:3:\"url\";s:60:\"https://wordpress.org/support/plugin/instagram-feed/reviews/\";s:6:\"target\";s:6:\"_blank\";s:3:\"rel\";s:8:\"noopener\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";s:3:\"tag\";s:1:\"a\";}i:1;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-grey sbi_notice_dismiss\";s:3:\"url\";a:2:{s:4:\"args\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:6:\"action\";s:10:\"sbi-review\";}s:6:\"target\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:4:\"text\";s:9:\"No thanks\";s:3:\"tag\";s:1:\"a\";}i:2;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-grey sbi_notice_dismiss\";s:3:\"url\";a:2:{s:4:\"args\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:6:\"action\";s:10:\"sbi-review\";}s:6:\"target\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:4:\"text\";s:27:\"I\'ve already given a review\";s:3:\"tag\";s:1:\"a\";}i:3;a:6:{s:5:\"class\";s:39:\"sbi-btn sbi-btn-grey sbi_notice_dismiss\";s:3:\"url\";a:2:{s:4:\"args\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:6:\"action\";s:10:\"sbi-review\";}s:6:\"target\";s:0:\"\";s:3:\"rel\";s:0:\"\";s:4:\"text\";s:12:\"Ask Me Later\";s:3:\"tag\";s:1:\"a\";}}s:18:\"buttons_wrap_start\";s:21:\"<div class=\"buttons\">\";s:16:\"buttons_wrap_end\";s:6:\"</div>\";s:6:\"styles\";a:1:{s:7:\"display\";a:3:{s:9:\"condition\";a:4:{s:3:\"key\";s:6:\"option\";s:4:\"name\";s:18:\"sbi_review_consent\";s:7:\"compare\";s:3:\"===\";s:5:\"value\";s:3:\"yes\";}s:4:\"true\";s:0:\"\";s:5:\"false\";s:4:\"none\";}}s:5:\"group\";s:9:\"marketing\";}}","auto"),
("3659","sb_instagram_feed_group_notices","a:1:{s:9:\"marketing\";a:3:{i:0;i:45;i:1;s:13:\"review_step_1\";i:2;s:13:\"review_step_2\";}}","auto"),
("4023","imunify_bots_mu_checked","1783016656","on"),
("4210","wow_fmp_db_version","7.0","off"),
("4452","duplicator_version_plugin","1.5.16.1","auto"),
("4454","duplicator_install_info","a:3:{s:7:\"version\";s:8:\"1.5.16.1\";s:4:\"time\";i:1781263013;s:10:\"updateTime\";i:1781263013;}","off"),
("4455","duplicator_uninstall_package","1","auto"),
("4456","duplicator_uninstall_settings","1","auto"),
("4457","duplicator_settings","a:22:{s:7:\"version\";s:8:\"1.5.16.1\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:13:\"package_debug\";b:0;s:23:\"email_summary_frequency\";s:6:\"weekly\";s:9:\"amNotices\";b:1;s:17:\"package_mysqldump\";s:1:\"1\";s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:4:\"2000\";s:17:\"package_zip_flush\";s:1:\"0\";s:19:\"installer_name_mode\";s:6:\"simple\";s:16:\"storage_position\";s:6:\"wpcont\";s:20:\"storage_htaccess_off\";b:0;s:18:\"archive_build_mode\";s:1:\"2\";s:17:\"skip_archive_scan\";b:0;s:21:\"unhook_third_party_js\";b:0;s:22:\"unhook_third_party_css\";b:0;s:17:\"active_package_id\";i:-1;s:14:\"usage_tracking\";b:0;i:0;b:0;s:12:\"last_updated\";s:19:\"2026-07-02-18-33-35\";s:18:\"package_ui_created\";s:1:\"1\";}","auto"),
("4458","duplicator_plugin_data_stats","{\n    \"lastSendTime\": 0,\n    \"identifier\": \"dLwU7&hNk5Tb=djsCUc27&TsSvMDo&H4sQ2vGUD3Tghe\",\n    \"plugin\": \"dup-lite\",\n    \"pluginStatus\": \"inactive\",\n    \"buildCount\": 0,\n    \"buildLastDate\": 0,\n    \"buildFailedCount\": 2,\n    \"buildFailedLastDate\": 1783015994,\n    \"siteSizeMB\": 795.200000000000045474735088646411895751953125,\n    \"siteNumFiles\": 25300,\n    \"siteDbSizeMB\": 135.1399999999999863575794734060764312744140625,\n    \"siteDbNumTables\": 48\n}","auto"),
("4461","duplicator_ui_view_state","a:2:{s:22:\"dup-pack-archive-panel\";s:1:\"0\";s:24:\"dup-pack-installer-panel\";s:1:\"0\";}","auto"),
("4462","duplicator_package_active","O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2026-07-02 18:14:11\";s:7:\"Version\";s:8:\"1.5.16.1\";s:9:\"VersionWP\";s:3:\"7.0\";s:9:\"VersionDB\";s:8:\"10.11.18\";s:10:\"VersionPHP\";s:6:\"8.2.31\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20260612_drsoheila\";s:4:\"Hash\";s:35:\"c03690a19ec3123c2431_20260702181411\";s:8:\"NameHash\";s:54:\"20260612_drsoheila_c03690a19ec3123c2431_20260702181411\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";s:64:\"20260612_drsoheila_c03690a19ec3123c2431_20260702181411_scan.json\";s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":27:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:30:\"/home/cugzileb/dr.frex.digital\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:9:\"dirsCount\";i:2653;s:5:\"Files\";a:0:{}s:10:\"filesCount\";i:22647;s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":7:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:10:\"AddonSites\";a:0:{}s:4:\"Size\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":7:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:10:\"AddonSites\";a:0:{}s:4:\"Size\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":3:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"file_count\";i:-1;s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2026-07-02 18:14:11\";s:7:\"Version\";s:8:\"1.5.16.1\";s:9:\"VersionWP\";s:3:\"7.0\";s:9:\"VersionDB\";s:8:\"10.11.18\";s:10:\"VersionPHP\";s:6:\"8.2.31\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20260612_drsoheila\";s:4:\"Hash\";s:35:\"c03690a19ec3123c2431_20260702181411\";s:8:\"NameHash\";s:54:\"20260612_drsoheila_c03690a19ec3123c2431_20260702181411\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";N;s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";r:21;s:9:\"Installer\";O:13:\"DUP_Installer\":15:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:13:\"OptsDBCharset\";s:0:\"\";s:15:\"OptsDBCollation\";s:0:\"\";s:12:\"OptsSecureOn\";i:0;s:14:\"OptsSecurePass\";s:0:\"\";s:13:\"numFilesAdded\";i:0;s:12:\"numDirsAdded\";i:0;s:10:\"\0*\0Package\";r:66;s:17:\"\0*\0origFileManger\";N;s:32:\"\0DUP_Installer\0configTransformer\";O:44:\"Duplicator\\Libs\\WpConfig\\WPConfigTransformer\":3:{s:17:\"\0*\0wp_config_path\";s:44:\"/home/cugzileb/dr.frex.digital/wp-config.php\";s:16:\"\0*\0wp_config_src\";N;s:13:\"\0*\0wp_configs\";a:0:{}}}s:8:\"Database\";O:12:\"DUP_Database\":15:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:14:\"MariaDB Server\";s:19:\"sameNameTableExists\";N;s:4:\"info\";O:16:\"DUP_DatabaseInfo\":23:{s:9:\"buildMode\";s:3:\"PHP\";s:11:\"charSetList\";a:0:{}s:13:\"collationList\";a:0:{}s:10:\"engineList\";a:0:{}s:17:\"isTablesUpperCase\";b:0;s:15:\"isNameUpperCase\";b:0;s:4:\"name\";s:0:\"\";s:15:\"tablesBaseCount\";i:0;s:16:\"tablesFinalCount\";i:0;s:20:\"muFilteredTableCount\";i:0;s:14:\"tablesRowCount\";i:0;s:16:\"tablesSizeOnDisk\";i:0;s:10:\"tablesList\";a:0:{}s:19:\"lowerCaseTableNames\";i:0;s:8:\"dbEngine\";s:0:\"\";s:7:\"version\";i:0;s:14:\"versionComment\";i:0;s:9:\"viewCount\";i:0;s:9:\"procCount\";i:0;s:9:\"funcCount\";i:0;s:11:\"triggerList\";a:0:{}s:33:\"\0DUP_DatabaseInfo\0intFieldsStruct\";a:0:{}s:42:\"\0DUP_DatabaseInfo\0indexProcessedSchemaSize\";a:0:{}}s:10:\"\0*\0Package\";r:66;s:24:\"\0DUP_Database\0tempDbPath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}s:13:\"BuildProgress\";O:18:\"DUP_Build_Progress\":12:{s:17:\"thread_start_time\";N;s:11:\"initialized\";b:0;s:15:\"installer_built\";b:0;s:15:\"archive_started\";b:0;s:20:\"archive_has_database\";b:0;s:13:\"archive_built\";b:0;s:21:\"database_script_built\";b:0;s:6:\"failed\";b:0;s:7:\"retries\";i:0;s:14:\"build_failures\";a:0:{}s:19:\"validation_failures\";a:0:{}s:27:\"\0DUP_Build_Progress\0package\";r:66;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:3:{i:0;s:39:\"/home/cugzileb/dr.frex.digital/wp-admin\";i:1;s:42:\"/home/cugzileb/dr.frex.digital/wp-includes\";i:2;s:51:\"/home/cugzileb/dr.frex.digital/wp-content/languages\";}s:29:\"\0DUP_Archive\0wpCoreExactPaths\";a:7:{i:0;s:30:\"/home/cugzileb/dr.frex.digital\";i:1;s:30:\"/home/cugzileb/dr.frex.digital\";i:2;s:41:\"/home/cugzileb/dr.frex.digital/wp-content\";i:3;s:49:\"/home/cugzileb/dr.frex.digital/wp-content/uploads\";i:4;s:49:\"/home/cugzileb/dr.frex.digital/wp-content/plugins\";i:5;s:52:\"/home/cugzileb/dr.frex.digital/wp-content/mu-plugins\";i:6;s:48:\"/home/cugzileb/dr.frex.digital/wp-content/themes\";}s:31:\"\0DUP_Archive\0relativeFiltersDir\";a:3:{i:0;s:62:\"/home/cugzileb/dr.frex.digital/wp-content/backups-dup-lite/tmp\";i:1;s:15:\"backups-dup-pro\";i:2;s:18:\"duplicator-backups\";}s:24:\"\0DUP_Archive\0listFileObj\";N;s:23:\"\0DUP_Archive\0listDirObj\";N;s:38:\"\0DUP_Archive\0wpContentDirNormalizePath\";N;}s:9:\"Installer\";r:87;s:8:\"Database\";r:106;s:13:\"BuildProgress\";r:145;}","auto"),
("4464","duplicator_email_summary_info","{\"CL_-=_-=\":\"Duplicator\\\\Utils\\\\Email\\\\EmailSummary\",\"manualPackageIds\":[],\"failedPackageIds\":[2]}","auto"),
("4467","action_scheduler_hybrid_store_demarkation","1461","auto"),
("4468","schema-ActionScheduler_StoreSchema","7.0.1781263555","auto"),
("4469","schema-ActionScheduler_LoggerSchema","3.0.1781263555","auto"),
("4472","_transient_timeout_wp_rocket_customer_data","1783103861","off"),
("4473","_transient_wp_rocket_customer_data","O:8:\"stdClass\":7:{s:15:\"licence_account\";i:-1;s:18:\"licence_expiration\";i:3359817461;s:7:\"licence\";O:8:\"stdClass\":1:{s:4:\"name\";s:8:\"Infinite\";}s:6:\"status\";s:5:\"valid\";s:14:\"has_auto_renew\";b:1;s:12:\"date_created\";i:1780425461;s:22:\"performance_monitoring\";O:8:\"stdClass\":5:{s:10:\"expiration\";i:3359817461;s:12:\"cancelled_at\";N;s:10:\"manage_url\";N;s:10:\"active_sku\";s:21:\"perf-monitor-advanced\";s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":10:{s:3:\"sku\";s:21:\"perf-monitor-advanced\";s:5:\"price\";s:4:\"8.99\";s:5:\"limit\";s:2:\"10\";s:5:\"title\";s:8:\"Advanced\";s:8:\"subtitle\";s:87:\"See how your top pages perform and quickly spot and optimize what slows your site down.\";s:11:\"description\";s:33:\"Up to 10 pages • Weekly updates\";s:7:\"billing\";s:72:\"* Billed monthly. You can cancel at any time, each month started is due.\";s:10:\"highlights\";a:4:{i:0;s:22:\"Up to 10 pages tracked\";i:1;s:32:\"Automatic performance monitoring\";i:2;s:25:\"Unlimited on-demand tests\";i:3;s:33:\"Full GTmetrix performance reports\";}s:6:\"status\";s:6:\"active\";s:6:\"button\";O:8:\"stdClass\":3:{s:5:\"label\";s:9:\"Your plan\";s:6:\"action\";s:4:\"none\";s:3:\"url\";N;}}}}}","off"),
("4476","wpr_rocket_cache_version","20220927","auto"),
("4483","action_scheduler_lock_async-request-runner","6a46afd0e4f8f7.67249953|1783017484","no"),
("4488","wp_rocket_no_licence","0","auto"),
("4491","wpr_rucss_used_css_version","20231031","auto"),
("4492","wpr_performance_monitoring_version","20260212","auto"),
("4493","wpr_above_the_fold_version","20240313","auto"),
("4494","wpr_lazy_render_content_version","20240812","auto"),
("4496","wpr_preload_fonts_version","20250204","auto"),
("4499","wpr_preconnect_external_domains_version","20250217","auto"),
("4514","wp_rocket_debug","a:1:{s:20:\"last_rucss_job_added\";s:0:\"\";}","auto"),
("4519","wp_rocket_settings","a:78:{s:41:\"performance_monitoring_schedule_frequency\";s:5:\"86400\";s:11:\"exclude_css\";a:0:{}s:26:\"remove_unused_css_safelist\";a:0:{}s:12:\"critical_css\";s:0:\"\";s:17:\"exclude_inline_js\";a:0:{}s:10:\"exclude_js\";a:0:{}s:16:\"exclude_defer_js\";a:0:{}s:19:\"delay_js_exclusions\";a:0:{}s:16:\"exclude_lazyload\";a:0:{}s:14:\"manual_preload\";i:1;s:20:\"preload_excluded_uri\";a:0:{}s:13:\"preload_links\";s:1:\"1\";s:19:\"purge_cron_interval\";i:10;s:15:\"purge_cron_unit\";s:15:\"HOUR_IN_SECONDS\";s:16:\"cache_reject_uri\";a:0:{}s:20:\"cache_reject_cookies\";a:0:{}s:15:\"cache_reject_ua\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:27:\"automatic_cleanup_frequency\";s:5:\"daily\";s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:17:\"control_heartbeat\";i:1;s:24:\"heartbeat_admin_behavior\";s:18:\"reduce_periodicity\";s:25:\"heartbeat_editor_behavior\";s:18:\"reduce_periodicity\";s:23:\"heartbeat_site_behavior\";s:18:\"reduce_periodicity\";s:16:\"cloudflare_email\";s:0:\"\";s:18:\"sucury_waf_api_key\";s:0:\"\";s:12:\"consumer_key\";s:8:\"NULLCAVC\";s:14:\"consumer_email\";s:17:\"noreply@gmail.com\";s:10:\"secret_key\";s:8:\"c1171a5c\";s:7:\"license\";i:1782998283;s:16:\"secret_cache_key\";s:22:\"6a2becc5c83e7212356834\";s:14:\"minify_css_key\";s:22:\"6a466bada9f2d825026907\";s:13:\"minify_js_key\";s:22:\"6a466bada9f35077199841\";s:7:\"version\";s:6:\"3.21.3\";s:16:\"previous_version\";s:0:\"\";s:23:\"cloudflare_old_settings\";s:0:\"\";s:9:\"cache_ssl\";i:1;s:19:\"minify_google_fonts\";i:1;s:5:\"emoji\";i:1;s:17:\"remove_unused_css\";i:0;s:9:\"async_css\";i:0;s:12:\"cache_mobile\";i:1;s:23:\"do_caching_mobile_files\";i:1;s:22:\"minify_concatenate_css\";s:0:\"\";s:18:\"cloudflare_api_key\";s:0:\"\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:12:\"dns_prefetch\";a:0:{}s:16:\"async_css_mobile\";s:1:\"1\";s:17:\"cache_logged_user\";i:0;s:10:\"minify_css\";i:0;s:9:\"minify_js\";i:0;s:21:\"minify_concatenate_js\";i:0;s:12:\"defer_all_js\";i:0;s:8:\"lazyload\";i:0;s:16:\"lazyload_iframes\";i:0;s:16:\"lazyload_youtube\";i:0;s:18:\"database_revisions\";i:0;s:20:\"database_auto_drafts\";i:0;s:22:\"database_trashed_posts\";i:0;s:22:\"database_spam_comments\";i:0;s:25:\"database_trashed_comments\";i:0;s:23:\"database_all_transients\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:21:\"sucury_waf_cache_sync\";i:0;s:3:\"cdn\";i:0;s:18:\"varnish_auto_purge\";i:0;s:16:\"image_dimensions\";i:0;s:18:\"host_fonts_locally\";i:0;s:18:\"auto_preload_fonts\";i:0;s:8:\"delay_js\";i:0;s:28:\"delay_js_execution_safe_mode\";i:0;s:28:\"delay_js_exclusions_selected\";a:0:{}s:39:\"delay_js_exclusions_selected_exclusions\";a:0:{}s:6:\"ignore\";b:1;}","auto"),
("4522","wp_rocket_last_base_url","aHR0cHM6Ly9kci5mcmV4LmRpZ2l0YWwv","on"),
("4523","wp_rocket_insights_current_plan","perf-monitor-advanced","auto"),
("4524","_transient_timeout_wp_rocket_remote_settings_timeout","1783588901","off"),
("4525","_transient_wp_rocket_remote_settings_timeout","86400","off"),
("4542","rocket_analytics_notice_displayed","1","auto"),
("10652","wpcode_snippets_errors","a:0:{}","auto"),
("11536","sbi_refresh_report","a:2:{s:5:\"notes\";a:1:{s:8:\"time_ran\";s:19:\"2026-06-22 19:47:06\";}i:17841449712306985;a:1:{s:10:\"did_update\";b:1;}}","off"),
("11833","_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(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot);src:url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot?#iefix) format(\"embedded-opentype\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2) format(\"woff2\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff) format(\"woff\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.ttf) format(\"truetype\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format(\"svg\");font-display: swap;}.fab{font-family:\"Font Awesome 5 Brands\"}@font-face{font-family:\"Font Awesome 5 Free\";font-style:normal;font-weight:400;src:url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot);src:url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot?#iefix) format(\"embedded-opentype\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2) format(\"woff2\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff) format(\"woff\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.ttf) format(\"truetype\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format(\"svg\");font-display: swap;}.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(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot);src:url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot?#iefix) format(\"embedded-opentype\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2) format(\"woff2\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff) format(\"woff\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.ttf) format(\"truetype\"),url(//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format(\"svg\");font-display: swap;}.fa,.fas{font-family:\"Font Awesome 5 Free\";font-weight:900}.fa-500px:before{content:\"\\f26e\"}.fa-accessible-icon:before{content:\"\\f368\"}.fa-accusoft:before{content:\"\\f369\"}.fa-acquisitions-incorporated:before{content:\"\\f6af\"}.fa-ad:before{content:\"\\f641\"}.fa-address-book:before{content:\"\\f2b9\"}.fa-address-card:before{content:\"\\f2bb\"}.fa-adjust:before{content:\"\\f042\"}.fa-adn:before{content:\"\\f170\"}.fa-adversal:before{content:\"\\f36a\"}.fa-affiliatetheme:before{content:\"\\f36b\"}.fa-air-freshener:before{content:\"\\f5d0\"}.fa-airbnb:before{content:\"\\f834\"}.fa-algolia:before{content:\"\\f36c\"}.fa-align-center:before{content:\"\\f037\"}.fa-align-justify:before{content:\"\\f039\"}.fa-align-left:before{content:\"\\f036\"}.fa-align-right:before{content:\"\\f038\"}.fa-alipay:before{content:\"\\f642\"}.fa-allergies:before{content:\"\\f461\"}.fa-amazon:before{content:\"\\f270\"}.fa-amazon-pay:before{content:\"\\f42c\"}.fa-ambulance:before{content:\"\\f0f9\"}.fa-american-sign-language-interpreting:before{content:\"\\f2a3\"}.fa-amilia:before{content:\"\\f36d\"}.fa-anchor:before{content:\"\\f13d\"}.fa-android:before{content:\"\\f17b\"}.fa-angellist:before{content:\"\\f209\"}.fa-angle-double-down:before{content:\"\\f103\"}.fa-angle-double-left:before{content:\"\\f100\"}.fa-angle-double-right:before{content:\"\\f101\"}.fa-angle-double-up:before{content:\"\\f102\"}.fa-angle-down:before{content:\"\\f107\"}.fa-angle-left:before{content:\"\\f104\"}.fa-angle-right:before{content:\"\\f105\"}.fa-angle-up:before{content:\"\\f106\"}.fa-angry:before{content:\"\\f556\"}.fa-angrycreative:before{content:\"\\f36e\"}.fa-angular:before{content:\"\\f420\"}.fa-ankh:before{content:\"\\f644\"}.fa-app-store:before{content:\"\\f36f\"}.fa-app-store-ios:before{content:\"\\f370\"}.fa-apper:before{content:\"\\f371\"}.fa-apple:before{content:\"\\f179\"}.fa-apple-alt:before{content:\"\\f5d1\"}.fa-apple-pay:before{content:\"\\f415\"}.fa-archive:before{content:\"\\f187\"}.fa-archway:before{content:\"\\f557\"}.fa-arrow-alt-circle-down:before{content:\"\\f358\"}.fa-arrow-alt-circle-left:before{content:\"\\f359\"}.fa-arrow-alt-circle-right:before{content:\"\\f35a\"}.fa-arrow-alt-circle-up:before{content:\"\\f35b\"}.fa-arrow-circle-down:before{content:\"\\f0ab\"}.fa-arrow-circle-left:before{content:\"\\f0a8\"}.fa-arrow-circle-right:before{content:\"\\f0a9\"}.fa-arrow-circle-up:before{content:\"\\f0aa\"}.fa-arrow-down:before{content:\"\\f063\"}.fa-arrow-left:before{content:\"\\f060\"}.fa-arrow-right:before{content:\"\\f061\"}.fa-arrow-up:before{content:\"\\f062\"}.fa-arrows-alt:before{content:\"\\f0b2\"}.fa-arrows-alt-h:before{content:\"\\f337\"}.fa-arrows-alt-v:before{content:\"\\f338\"}.fa-artstation:before{content:\"\\f77a\"}.fa-assistive-listening-systems:before{content:\"\\f2a2\"}.fa-asterisk:before{content:\"\\f069\"}.fa-asymmetrik:before{content:\"\\f372\"}.fa-at:before{content:\"\\f1fa\"}.fa-atlas:before{content:\"\\f558\"}.fa-atlassian:before{content:\"\\f77b\"}.fa-atom:before{content:\"\\f5d2\"}.fa-audible:before{content:\"\\f373\"}.fa-audio-description:before{content:\"\\f29e\"}.fa-autoprefixer:before{content:\"\\f41c\"}.fa-avianex:before{content:\"\\f374\"}.fa-aviato:before{content:\"\\f421\"}.fa-award:before{content:\"\\f559\"}.fa-aws:before{content:\"\\f375\"}.fa-baby:before{content:\"\\f77c\"}.fa-baby-carriage:before{content:\"\\f77d\"}.fa-backspace:before{content:\"\\f55a\"}.fa-backward:before{content:\"\\f04a\"}.fa-bacon:before{content:\"\\f7e5\"}.fa-bacteria:before{content:\"\\e059\"}.fa-bacterium:before{content:\"\\e05a\"}.fa-bahai:before{content:\"\\f666\"}.fa-balance-scale:before{content:\"\\f24e\"}.fa-balance-scale-left:before{content:\"\\f515\"}.fa-balance-scale-right:before{content:\"\\f516\"}.fa-ban:before{content:\"\\f05e\"}.fa-band-aid:before{content:\"\\f462\"}.fa-bandcamp:before{content:\"\\f2d5\"}.fa-barcode:before{content:\"\\f02a\"}.fa-bars:before{content:\"\\f0c9\"}.fa-baseball-ball:before{content:\"\\f433\"}.fa-basketball-ball:before{content:\"\\f434\"}.fa-bath:before{content:\"\\f2cd\"}.fa-battery-empty:before{content:\"\\f244\"}.fa-battery-full:before{content:\"\\f240\"}.fa-battery-half:before{content:\"\\f242\"}.fa-battery-quarter:before{content:\"\\f243\"}.fa-battery-three-quarters:before{content:\"\\f241\"}.fa-battle-net:before{content:\"\\f835\"}.fa-bed:before{content:\"\\f236\"}.fa-beer:before{content:\"\\f0fc\"}.fa-behance:before{content:\"\\f1b4\"}.fa-behance-square:before{content:\"\\f1b5\"}.fa-bell:before{content:\"\\f0f3\"}.fa-bell-slash:before{content:\"\\f1f6\"}.fa-bezier-curve:before{content:\"\\f55b\"}.fa-bible:before{content:\"\\f647\"}.fa-bicycle:before{content:\"\\f206\"}.fa-biking:before{content:\"\\f84a\"}.fa-bimobject:before{content:\"\\f378\"}.fa-binoculars:before{content:\"\\f1e5\"}.fa-biohazard:before{content:\"\\f780\"}.fa-birthday-cake:before{content:\"\\f1fd\"}.fa-bitbucket:before{content:\"\\f171\"}.fa-bitcoin:before{content:\"\\f379\"}.fa-bity:before{content:\"\\f37a\"}.fa-black-tie:before{content:\"\\f27e\"}.fa-blackberry:before{content:\"\\f37b\"}.fa-blender:before{content:\"\\f517\"}.fa-blender-phone:before{content:\"\\f6b6\"}.fa-blind:before{content:\"\\f29d\"}.fa-blog:before{content:\"\\f781\"}.fa-blogger:before{content:\"\\f37c\"}.fa-blogger-b:before{content:\"\\f37d\"}.fa-bluetooth:before{content:\"\\f293\"}.fa-bluetooth-b:before{content:\"\\f294\"}.fa-bold:before{content:\"\\f032\"}.fa-bolt:before{content:\"\\f0e7\"}.fa-bomb:before{content:\"\\f1e2\"}.fa-bone:before{content:\"\\f5d7\"}.fa-bong:before{content:\"\\f55c\"}.fa-book:before{content:\"\\f02d\"}.fa-book-dead:before{content:\"\\f6b7\"}.fa-book-medical:before{content:\"\\f7e6\"}.fa-book-open:before{content:\"\\f518\"}.fa-book-reader:before{content:\"\\f5da\"}.fa-bookmark:before{content:\"\\f02e\"}.fa-bootstrap:before{content:\"\\f836\"}.fa-border-all:before{content:\"\\f84c\"}.fa-border-none:before{content:\"\\f850\"}.fa-border-style:before{content:\"\\f853\"}.fa-bowling-ball:before{content:\"\\f436\"}.fa-box:before{content:\"\\f466\"}.fa-box-open:before{content:\"\\f49e\"}.fa-box-tissue:before{content:\"\\e05b\"}.fa-boxes:before{content:\"\\f468\"}.fa-braille:before{content:\"\\f2a1\"}.fa-brain:before{content:\"\\f5dc\"}.fa-bread-slice:before{content:\"\\f7ec\"}.fa-briefcase:before{content:\"\\f0b1\"}.fa-briefcase-medical:before{content:\"\\f469\"}.fa-broadcast-tower:before{content:\"\\f519\"}.fa-broom:before{content:\"\\f51a\"}.fa-brush:before{content:\"\\f55d\"}.fa-btc:before{content:\"\\f15a\"}.fa-buffer:before{content:\"\\f837\"}.fa-bug:before{content:\"\\f188\"}.fa-building:before{content:\"\\f1ad\"}.fa-bullhorn:before{content:\"\\f0a1\"}.fa-bullseye:before{content:\"\\f140\"}.fa-burn:before{content:\"\\f46a\"}.fa-buromobelexperte:before{content:\"\\f37f\"}.fa-bus:before{content:\"\\f207\"}.fa-bus-alt:before{content:\"\\f55e\"}.fa-business-time:before{content:\"\\f64a\"}.fa-buy-n-large:before{content:\"\\f8a6\"}.fa-buysellads:before{content:\"\\f20d\"}.fa-calculator:before{content:\"\\f1ec\"}.fa-calendar:before{content:\"\\f133\"}.fa-calendar-alt:before{content:\"\\f073\"}.fa-calendar-check:before{content:\"\\f274\"}.fa-calendar-day:before{content:\"\\f783\"}.fa-calendar-minus:before{content:\"\\f272\"}.fa-calendar-plus:before{content:\"\\f271\"}.fa-calendar-times:before{content:\"\\f273\"}.fa-calendar-week:before{content:\"\\f784\"}.fa-camera:before{content:\"\\f030\"}.fa-camera-retro:before{content:\"\\f083\"}.fa-campground:before{content:\"\\f6bb\"}.fa-canadian-maple-leaf:before{content:\"\\f785\"}.fa-candy-cane:before{content:\"\\f786\"}.fa-cannabis:before{content:\"\\f55f\"}.fa-capsules:before{content:\"\\f46b\"}.fa-car:before{content:\"\\f1b9\"}.fa-car-alt:before{content:\"\\f5de\"}.fa-car-battery:before{content:\"\\f5df\"}.fa-car-crash:before{content:\"\\f5e1\"}.fa-car-side:before{content:\"\\f5e4\"}.fa-caravan:before{content:\"\\f8ff\"}.fa-caret-down:before{content:\"\\f0d7\"}.fa-caret-left:before{content:\"\\f0d9\"}.fa-caret-right:before{content:\"\\f0da\"}.fa-caret-square-down:before{content:\"\\f150\"}.fa-caret-square-left:before{content:\"\\f191\"}.fa-caret-square-right:before{content:\"\\f152\"}.fa-caret-square-up:before{content:\"\\f151\"}.fa-caret-up:before{content:\"\\f0d8\"}.fa-carrot:before{content:\"\\f787\"}.fa-cart-arrow-down:before{content:\"\\f218\"}.fa-cart-plus:before{content:\"\\f217\"}.fa-cash-register:before{content:\"\\f788\"}.fa-cat:before{content:\"\\f6be\"}.fa-cc-amazon-pay:before{content:\"\\f42d\"}.fa-cc-amex:before{content:\"\\f1f3\"}.fa-cc-apple-pay:before{content:\"\\f416\"}.fa-cc-diners-club:before{content:\"\\f24c\"}.fa-cc-discover:before{content:\"\\f1f2\"}.fa-cc-jcb:before{content:\"\\f24b\"}.fa-cc-mastercard:before{content:\"\\f1f1\"}.fa-cc-paypal:before{content:\"\\f1f4\"}.fa-cc-stripe:before{content:\"\\f1f5\"}.fa-cc-visa:before{content:\"\\f1f0\"}.fa-centercode:before{content:\"\\f380\"}.fa-centos:before{content:\"\\f789\"}.fa-certificate:before{content:\"\\f0a3\"}.fa-chair:before{content:\"\\f6c0\"}.fa-chalkboard:before{content:\"\\f51b\"}.fa-chalkboard-teacher:before{content:\"\\f51c\"}.fa-charging-station:before{content:\"\\f5e7\"}.fa-chart-area:before{content:\"\\f1fe\"}.fa-chart-bar:before{content:\"\\f080\"}.fa-chart-line:before{content:\"\\f201\"}.fa-chart-pie:before{content:\"\\f200\"}.fa-check:before{content:\"\\f00c\"}.fa-check-circle:before{content:\"\\f058\"}.fa-check-double:before{content:\"\\f560\"}.fa-check-square:before{content:\"\\f14a\"}.fa-cheese:before{content:\"\\f7ef\"}.fa-chess:before{content:\"\\f439\"}.fa-chess-bishop:before{content:\"\\f43a\"}.fa-chess-board:before{content:\"\\f43c\"}.fa-chess-king:before{content:\"\\f43f\"}.fa-chess-knight:before{content:\"\\f441\"}.fa-chess-pawn:before{content:\"\\f443\"}.fa-chess-queen:before{content:\"\\f445\"}.fa-chess-rook:before{content:\"\\f447\"}.fa-chevron-circle-down:before{content:\"\\f13a\"}.fa-chevron-circle-left:before{content:\"\\f137\"}.fa-chevron-circle-right:before{content:\"\\f138\"}.fa-chevron-circle-up:before{content:\"\\f139\"}.fa-chevron-down:before{content:\"\\f078\"}.fa-chevron-left:before{content:\"\\f053\"}.fa-chevron-right:before{content:\"\\f054\"}.fa-chevron-up:before{content:\"\\f077\"}.fa-child:before{content:\"\\f1ae\"}.fa-chrome:before{content:\"\\f268\"}.fa-chromecast:before{content:\"\\f838\"}.fa-church:before{content:\"\\f51d\"}.fa-circle:before{content:\"\\f111\"}.fa-circle-notch:before{content:\"\\f1ce\"}.fa-city:before{content:\"\\f64f\"}.fa-clinic-medical:before{content:\"\\f7f2\"}.fa-clipboard:before{content:\"\\f328\"}.fa-clipboard-check:before{content:\"\\f46c\"}.fa-clipboard-list:before{content:\"\\f46d\"}.fa-clock:before{content:\"\\f017\"}.fa-clone:before{content:\"\\f24d\"}.fa-closed-captioning:before{content:\"\\f20a\"}.fa-cloud:before{content:\"\\f0c2\"}.fa-cloud-download-alt:before{content:\"\\f381\"}.fa-cloud-meatball:before{content:\"\\f73b\"}.fa-cloud-moon:before{content:\"\\f6c3\"}.fa-cloud-moon-rain:before{content:\"\\f73c\"}.fa-cloud-rain:before{content:\"\\f73d\"}.fa-cloud-showers-heavy:before{content:\"\\f740\"}.fa-cloud-sun:before{content:\"\\f6c4\"}.fa-cloud-sun-rain:before{content:\"\\f743\"}.fa-cloud-upload-alt:before{content:\"\\f382\"}.fa-cloudflare:before{content:\"\\e07d\"}.fa-cloudscale:before{content:\"\\f383\"}.fa-cloudsmith:before{content:\"\\f384\"}.fa-cloudversify:before{content:\"\\f385\"}.fa-cocktail:before{content:\"\\f561\"}.fa-code:before{content:\"\\f121\"}.fa-code-branch:before{content:\"\\f126\"}.fa-codepen:before{content:\"\\f1cb\"}.fa-codiepie:before{content:\"\\f284\"}.fa-coffee:before{content:\"\\f0f4\"}.fa-cog:before{content:\"\\f013\"}.fa-cogs:before{content:\"\\f085\"}.fa-coins:before{content:\"\\f51e\"}.fa-columns:before{content:\"\\f0db\"}.fa-comment:before{content:\"\\f075\"}.fa-comment-alt:before{content:\"\\f27a\"}.fa-comment-dollar:before{content:\"\\f651\"}.fa-comment-dots:before{content:\"\\f4ad\"}.fa-comment-medical:before{content:\"\\f7f5\"}.fa-comment-slash:before{content:\"\\f4b3\"}.fa-comments:before{content:\"\\f086\"}.fa-comments-dollar:before{content:\"\\f653\"}.fa-compact-disc:before{content:\"\\f51f\"}.fa-compass:before{content:\"\\f14e\"}.fa-compress:before{content:\"\\f066\"}.fa-compress-alt:before{content:\"\\f422\"}.fa-compress-arrows-alt:before{content:\"\\f78c\"}.fa-concierge-bell:before{content:\"\\f562\"}.fa-confluence:before{content:\"\\f78d\"}.fa-connectdevelop:before{content:\"\\f20e\"}.fa-contao:before{content:\"\\f26d\"}.fa-cookie:before{content:\"\\f563\"}.fa-cookie-bite:before{content:\"\\f564\"}.fa-copy:before{content:\"\\f0c5\"}.fa-copyright:before{content:\"\\f1f9\"}.fa-cotton-bureau:before{content:\"\\f89e\"}.fa-couch:before{content:\"\\f4b8\"}.fa-cpanel:before{content:\"\\f388\"}.fa-creative-commons:before{content:\"\\f25e\"}.fa-creative-commons-by:before{content:\"\\f4e7\"}.fa-creative-commons-nc:before{content:\"\\f4e8\"}.fa-creative-commons-nc-eu:before{content:\"\\f4e9\"}.fa-creative-commons-nc-jp:before{content:\"\\f4ea\"}.fa-creative-commons-nd:before{content:\"\\f4eb\"}.fa-creative-commons-pd:before{content:\"\\f4ec\"}.fa-creative-commons-pd-alt:before{content:\"\\f4ed\"}.fa-creative-commons-remix:before{content:\"\\f4ee\"}.fa-creative-commons-sa:before{content:\"\\f4ef\"}.fa-creative-commons-sampling:before{content:\"\\f4f0\"}.fa-creative-commons-sampling-plus:before{content:\"\\f4f1\"}.fa-creative-commons-share:before{content:\"\\f4f2\"}.fa-creative-commons-zero:before{content:\"\\f4f3\"}.fa-credit-card:before{content:\"\\f09d\"}.fa-critical-role:before{content:\"\\f6c9\"}.fa-crop:before{content:\"\\f125\"}.fa-crop-alt:before{content:\"\\f565\"}.fa-cross:before{content:\"\\f654\"}.fa-crosshairs:before{content:\"\\f05b\"}.fa-crow:before{content:\"\\f520\"}.fa-crown:before{content:\"\\f521\"}.fa-crutch:before{content:\"\\f7f7\"}.fa-css3:before{content:\"\\f13c\"}.fa-css3-alt:before{content:\"\\f38b\"}.fa-cube:before{content:\"\\f1b2\"}.fa-cubes:before{content:\"\\f1b3\"}.fa-cut:before{content:\"\\f0c4\"}.fa-cuttlefish:before{content:\"\\f38c\"}.fa-d-and-d:before{content:\"\\f38d\"}.fa-d-and-d-beyond:before{content:\"\\f6ca\"}.fa-dailymotion:before{content:\"\\e052\"}.fa-dashcube:before{content:\"\\f210\"}.fa-database:before{content:\"\\f1c0\"}.fa-deaf:before{content:\"\\f2a4\"}.fa-deezer:before{content:\"\\e077\"}.fa-delicious:before{content:\"\\f1a5\"}.fa-democrat:before{content:\"\\f747\"}.fa-deploydog:before{content:\"\\f38e\"}.fa-deskpro:before{content:\"\\f38f\"}.fa-desktop:before{content:\"\\f108\"}.fa-dev:before{content:\"\\f6cc\"}.fa-deviantart:before{content:\"\\f1bd\"}.fa-dharmachakra:before{content:\"\\f655\"}.fa-dhl:before{content:\"\\f790\"}.fa-diagnoses:before{content:\"\\f470\"}.fa-diaspora:before{content:\"\\f791\"}.fa-dice:before{content:\"\\f522\"}.fa-dice-d20:before{content:\"\\f6cf\"}.fa-dice-d6:before{content:\"\\f6d1\"}.fa-dice-five:before{content:\"\\f523\"}.fa-dice-four:before{content:\"\\f524\"}.fa-dice-one:before{content:\"\\f525\"}.fa-dice-six:before{content:\"\\f526\"}.fa-dice-three:before{content:\"\\f527\"}.fa-dice-two:before{content:\"\\f528\"}.fa-digg:before{content:\"\\f1a6\"}.fa-digital-ocean:before{content:\"\\f391\"}.fa-digital-tachograph:before{content:\"\\f566\"}.fa-directions:before{content:\"\\f5eb\"}.fa-discord:before{content:\"\\f392\"}.fa-discourse:before{content:\"\\f393\"}.fa-disease:before{content:\"\\f7fa\"}.fa-divide:before{content:\"\\f529\"}.fa-dizzy:before{content:\"\\f567\"}.fa-dna:before{content:\"\\f471\"}.fa-dochub:before{content:\"\\f394\"}.fa-docker:before{content:\"\\f395\"}.fa-dog:before{content:\"\\f6d3\"}.fa-dollar-sign:before{content:\"\\f155\"}.fa-dolly:before{content:\"\\f472\"}.fa-dolly-flatbed:before{content:\"\\f474\"}.fa-donate:before{content:\"\\f4b9\"}.fa-door-closed:before{content:\"\\f52a\"}.fa-door-open:before{content:\"\\f52b\"}.fa-dot-circle:before{content:\"\\f192\"}.fa-dove:before{content:\"\\f4ba\"}.fa-download:before{content:\"\\f019\"}.fa-draft2digital:before{content:\"\\f396\"}.fa-drafting-compass:before{content:\"\\f568\"}.fa-dragon:before{content:\"\\f6d5\"}.fa-draw-polygon:before{content:\"\\f5ee\"}.fa-dribbble:before{content:\"\\f17d\"}.fa-dribbble-square:before{content:\"\\f397\"}.fa-dropbox:before{content:\"\\f16b\"}.fa-drum:before{content:\"\\f569\"}.fa-drum-steelpan:before{content:\"\\f56a\"}.fa-drumstick-bite:before{content:\"\\f6d7\"}.fa-drupal:before{content:\"\\f1a9\"}.fa-dumbbell:before{content:\"\\f44b\"}.fa-dumpster:before{content:\"\\f793\"}.fa-dumpster-fire:before{content:\"\\f794\"}.fa-dungeon:before{content:\"\\f6d9\"}.fa-dyalog:before{content:\"\\f399\"}.fa-earlybirds:before{content:\"\\f39a\"}.fa-ebay:before{content:\"\\f4f4\"}.fa-edge:before{content:\"\\f282\"}.fa-edge-legacy:before{content:\"\\e078\"}.fa-edit:before{content:\"\\f044\"}.fa-egg:before{content:\"\\f7fb\"}.fa-eject:before{content:\"\\f052\"}.fa-elementor:before{content:\"\\f430\"}.fa-ellipsis-h:before{content:\"\\f141\"}.fa-ellipsis-v:before{content:\"\\f142\"}.fa-ello:before{content:\"\\f5f1\"}.fa-ember:before{content:\"\\f423\"}.fa-empire:before{content:\"\\f1d1\"}.fa-envelope:before{content:\"\\f0e0\"}.fa-envelope-open:before{content:\"\\f2b6\"}.fa-envelope-open-text:before{content:\"\\f658\"}.fa-envelope-square:before{content:\"\\f199\"}.fa-envira:before{content:\"\\f299\"}.fa-equals:before{content:\"\\f52c\"}.fa-eraser:before{content:\"\\f12d\"}.fa-erlang:before{content:\"\\f39d\"}.fa-ethereum:before{content:\"\\f42e\"}.fa-ethernet:before{content:\"\\f796\"}.fa-etsy:before{content:\"\\f2d7\"}.fa-euro-sign:before{content:\"\\f153\"}.fa-evernote:before{content:\"\\f839\"}.fa-exchange-alt:before{content:\"\\f362\"}.fa-exclamation:before{content:\"\\f12a\"}.fa-exclamation-circle:before{content:\"\\f06a\"}.fa-exclamation-triangle:before{content:\"\\f071\"}.fa-expand:before{content:\"\\f065\"}.fa-expand-alt:before{content:\"\\f424\"}.fa-expand-arrows-alt:before{content:\"\\f31e\"}.fa-expeditedssl:before{content:\"\\f23e\"}.fa-external-link-alt:before{content:\"\\f35d\"}.fa-external-link-square-alt:before{content:\"\\f360\"}.fa-eye:before{content:\"\\f06e\"}.fa-eye-dropper:before{content:\"\\f1fb\"}.fa-eye-slash:before{content:\"\\f070\"}.fa-facebook:before{content:\"\\f09a\"}.fa-facebook-f:before{content:\"\\f39e\"}.fa-facebook-messenger:before{content:\"\\f39f\"}.fa-facebook-square:before{content:\"\\f082\"}.fa-fan:before{content:\"\\f863\"}.fa-fantasy-flight-games:before{content:\"\\f6dc\"}.fa-fast-backward:before{content:\"\\f049\"}.fa-fast-forward:before{content:\"\\f050\"}.fa-faucet:before{content:\"\\e005\"}.fa-fax:before{content:\"\\f1ac\"}.fa-feather:before{content:\"\\f52d\"}.fa-feather-alt:before{content:\"\\f56b\"}.fa-fedex:before{content:\"\\f797\"}.fa-fedora:before{content:\"\\f798\"}.fa-female:before{content:\"\\f182\"}.fa-fighter-jet:before{content:\"\\f0fb\"}.fa-figma:before{content:\"\\f799\"}.fa-file:before{content:\"\\f15b\"}.fa-file-alt:before{content:\"\\f15c\"}.fa-file-archive:before{content:\"\\f1c6\"}.fa-file-audio:before{content:\"\\f1c7\"}.fa-file-code:before{content:\"\\f1c9\"}.fa-file-contract:before{content:\"\\f56c\"}.fa-file-csv:before{content:\"\\f6dd\"}.fa-file-download:before{content:\"\\f56d\"}.fa-file-excel:before{content:\"\\f1c3\"}.fa-file-export:before{content:\"\\f56e\"}.fa-file-image:before{content:\"\\f1c5\"}.fa-file-import:before{content:\"\\f56f\"}.fa-file-invoice:before{content:\"\\f570\"}.fa-file-invoice-dollar:before{content:\"\\f571\"}.fa-file-medical:before{content:\"\\f477\"}.fa-file-medical-alt:before{content:\"\\f478\"}.fa-file-pdf:before{content:\"\\f1c1\"}.fa-file-powerpoint:before{content:\"\\f1c4\"}.fa-file-prescription:before{content:\"\\f572\"}.fa-file-signature:before{content:\"\\f573\"}.fa-file-upload:before{content:\"\\f574\"}.fa-file-video:before{content:\"\\f1c8\"}.fa-file-word:before{content:\"\\f1c2\"}.fa-fill:before{content:\"\\f575\"}.fa-fill-drip:before{content:\"\\f576\"}.fa-film:before{content:\"\\f008\"}.fa-filter:before{content:\"\\f0b0\"}.fa-fingerprint:before{content:\"\\f577\"}.fa-fire:before{content:\"\\f06d\"}.fa-fire-alt:before{content:\"\\f7e4\"}.fa-fire-extinguisher:before{content:\"\\f134\"}.fa-firefox:before{content:\"\\f269\"}.fa-firefox-browser:before{content:\"\\e007\"}.fa-first-aid:before{content:\"\\f479\"}.fa-first-order:before{content:\"\\f2b0\"}.fa-first-order-alt:before{content:\"\\f50a\"}.fa-firstdraft:before{content:\"\\f3a1\"}.fa-fish:before{content:\"\\f578\"}.fa-fist-raised:before{content:\"\\f6de\"}.fa-flag:before{content:\"\\f024\"}.fa-flag-checkered:before{content:\"\\f11e\"}.fa-flag-usa:before{content:\"\\f74d\"}.fa-flask:before{content:\"\\f0c3\"}.fa-flickr:before{content:\"\\f16e\"}.fa-flipboard:before{content:\"\\f44d\"}.fa-flushed:before{content:\"\\f579\"}.fa-fly:before{content:\"\\f417\"}.fa-folder:before{content:\"\\f07b\"}.fa-folder-minus:before{content:\"\\f65d\"}.fa-folder-open:before{content:\"\\f07c\"}.fa-folder-plus:before{content:\"\\f65e\"}.fa-font:before{content:\"\\f031\"}.fa-font-awesome:before{content:\"\\f2b4\"}.fa-font-awesome-alt:before{content:\"\\f35c\"}.fa-font-awesome-flag:before{content:\"\\f425\"}.fa-fonticons:before{content:\"\\f280\"}.fa-fonticons-fi:before{content:\"\\f3a2\"}.fa-football-ball:before{content:\"\\f44e\"}.fa-fort-awesome:before{content:\"\\f286\"}.fa-fort-awesome-alt:before{content:\"\\f3a3\"}.fa-forumbee:before{content:\"\\f211\"}.fa-forward:before{content:\"\\f04e\"}.fa-foursquare:before{content:\"\\f180\"}.fa-free-code-camp:before{content:\"\\f2c5\"}.fa-freebsd:before{content:\"\\f3a4\"}.fa-frog:before{content:\"\\f52e\"}.fa-frown:before{content:\"\\f119\"}.fa-frown-open:before{content:\"\\f57a\"}.fa-fulcrum:before{content:\"\\f50b\"}.fa-funnel-dollar:before{content:\"\\f662\"}.fa-futbol:before{content:\"\\f1e3\"}.fa-galactic-republic:before{content:\"\\f50c\"}.fa-galactic-senate:before{content:\"\\f50d\"}.fa-gamepad:before{content:\"\\f11b\"}.fa-gas-pump:before{content:\"\\f52f\"}.fa-gavel:before{content:\"\\f0e3\"}.fa-gem:before{content:\"\\f3a5\"}.fa-genderless:before{content:\"\\f22d\"}.fa-get-pocket:before{content:\"\\f265\"}.fa-gg:before{content:\"\\f260\"}.fa-gg-circle:before{content:\"\\f261\"}.fa-ghost:before{content:\"\\f6e2\"}.fa-gift:before{content:\"\\f06b\"}.fa-gifts:before{content:\"\\f79c\"}.fa-git:before{content:\"\\f1d3\"}.fa-git-alt:before{content:\"\\f841\"}.fa-git-square:before{content:\"\\f1d2\"}.fa-github:before{content:\"\\f09b\"}.fa-github-alt:before{content:\"\\f113\"}.fa-github-square:before{content:\"\\f092\"}.fa-gitkraken:before{content:\"\\f3a6\"}.fa-gitlab:before{content:\"\\f296\"}.fa-gitter:before{content:\"\\f426\"}.fa-glass-cheers:before{content:\"\\f79f\"}.fa-glass-martini:before{content:\"\\f000\"}.fa-glass-martini-alt:before{content:\"\\f57b\"}.fa-glass-whiskey:before{content:\"\\f7a0\"}.fa-glasses:before{content:\"\\f530\"}.fa-glide:before{content:\"\\f2a5\"}.fa-glide-g:before{content:\"\\f2a6\"}.fa-globe:before{content:\"\\f0ac\"}.fa-globe-africa:before{content:\"\\f57c\"}.fa-globe-americas:before{content:\"\\f57d\"}.fa-globe-asia:before{content:\"\\f57e\"}.fa-globe-europe:before{content:\"\\f7a2\"}.fa-gofore:before{content:\"\\f3a7\"}.fa-golf-ball:before{content:\"\\f450\"}.fa-goodreads:before{content:\"\\f3a8\"}.fa-goodreads-g:before{content:\"\\f3a9\"}.fa-google:before{content:\"\\f1a0\"}.fa-google-drive:before{content:\"\\f3aa\"}.fa-google-pay:before{content:\"\\e079\"}.fa-google-play:before{content:\"\\f3ab\"}.fa-google-plus:before{content:\"\\f2b3\"}.fa-google-plus-g:before{content:\"\\f0d5\"}.fa-google-plus-square:before{content:\"\\f0d4\"}.fa-google-wallet:before{content:\"\\f1ee\"}.fa-gopuram:before{content:\"\\f664\"}.fa-graduation-cap:before{content:\"\\f19d\"}.fa-gratipay:before{content:\"\\f184\"}.fa-grav:before{content:\"\\f2d6\"}.fa-greater-than:before{content:\"\\f531\"}.fa-greater-than-equal:before{content:\"\\f532\"}.fa-grimace:before{content:\"\\f57f\"}.fa-grin:before{content:\"\\f580\"}.fa-grin-alt:before{content:\"\\f581\"}.fa-grin-beam:before{content:\"\\f582\"}.fa-grin-beam-sweat:before{content:\"\\f583\"}.fa-grin-hearts:before{content:\"\\f584\"}.fa-grin-squint:before{content:\"\\f585\"}.fa-grin-squint-tears:before{content:\"\\f586\"}.fa-grin-stars:before{content:\"\\f587\"}.fa-grin-tears:before{content:\"\\f588\"}.fa-grin-tongue:before{content:\"\\f589\"}.fa-grin-tongue-squint:before{content:\"\\f58a\"}.fa-grin-tongue-wink:before{content:\"\\f58b\"}.fa-grin-wink:before{content:\"\\f58c\"}.fa-grip-horizontal:before{content:\"\\f58d\"}.fa-grip-lines:before{content:\"\\f7a4\"}.fa-grip-lines-vertical:before{content:\"\\f7a5\"}.fa-grip-vertical:before{content:\"\\f58e\"}.fa-gripfire:before{content:\"\\f3ac\"}.fa-grunt:before{content:\"\\f3ad\"}.fa-guilded:before{content:\"\\e07e\"}.fa-guitar:before{content:\"\\f7a6\"}.fa-gulp:before{content:\"\\f3ae\"}.fa-h-square:before{content:\"\\f0fd\"}.fa-hacker-news:before{content:\"\\f1d4\"}.fa-hacker-news-square:before{content:\"\\f3af\"}.fa-hackerrank:before{content:\"\\f5f7\"}.fa-hamburger:before{content:\"\\f805\"}.fa-hammer:before{content:\"\\f6e3\"}.fa-hamsa:before{content:\"\\f665\"}.fa-hand-holding:before{content:\"\\f4bd\"}.fa-hand-holding-heart:before{content:\"\\f4be\"}.fa-hand-holding-medical:before{content:\"\\e05c\"}.fa-hand-holding-usd:before{content:\"\\f4c0\"}.fa-hand-holding-water:before{content:\"\\f4c1\"}.fa-hand-lizard:before{content:\"\\f258\"}.fa-hand-middle-finger:before{content:\"\\f806\"}.fa-hand-paper:before{content:\"\\f256\"}.fa-hand-peace:before{content:\"\\f25b\"}.fa-hand-point-down:before{content:\"\\f0a7\"}.fa-hand-point-left:before{content:\"\\f0a5\"}.fa-hand-point-right:before{content:\"\\f0a4\"}.fa-hand-point-up:before{content:\"\\f0a6\"}.fa-hand-pointer:before{content:\"\\f25a\"}.fa-hand-rock:before{content:\"\\f255\"}.fa-hand-scissors:before{content:\"\\f257\"}.fa-hand-sparkles:before{content:\"\\e05d\"}.fa-hand-spock:before{content:\"\\f259\"}.fa-hands:before{content:\"\\f4c2\"}.fa-hands-helping:before{content:\"\\f4c4\"}.fa-hands-wash:before{content:\"\\e05e\"}.fa-handshake:before{content:\"\\f2b5\"}.fa-handshake-alt-slash:before{content:\"\\e05f\"}.fa-handshake-slash:before{content:\"\\e060\"}.fa-hanukiah:before{content:\"\\f6e6\"}.fa-hard-hat:before{content:\"\\f807\"}.fa-hashtag:before{content:\"\\f292\"}.fa-hat-cowboy:before{content:\"\\f8c0\"}.fa-hat-cowboy-side:before{content:\"\\f8c1\"}.fa-hat-wizard:before{content:\"\\f6e8\"}.fa-hdd:before{content:\"\\f0a0\"}.fa-head-side-cough:before{content:\"\\e061\"}.fa-head-side-cough-slash:before{content:\"\\e062\"}.fa-head-side-mask:before{content:\"\\e063\"}.fa-head-side-virus:before{content:\"\\e064\"}.fa-heading:before{content:\"\\f1dc\"}.fa-headphones:before{content:\"\\f025\"}.fa-headphones-alt:before{content:\"\\f58f\"}.fa-headset:before{content:\"\\f590\"}.fa-heart:before{content:\"\\f004\"}.fa-heart-broken:before{content:\"\\f7a9\"}.fa-heartbeat:before{content:\"\\f21e\"}.fa-helicopter:before{content:\"\\f533\"}.fa-highlighter:before{content:\"\\f591\"}.fa-hiking:before{content:\"\\f6ec\"}.fa-hippo:before{content:\"\\f6ed\"}.fa-hips:before{content:\"\\f452\"}.fa-hire-a-helper:before{content:\"\\f3b0\"}.fa-history:before{content:\"\\f1da\"}.fa-hive:before{content:\"\\e07f\"}.fa-hockey-puck:before{content:\"\\f453\"}.fa-holly-berry:before{content:\"\\f7aa\"}.fa-home:before{content:\"\\f015\"}.fa-hooli:before{content:\"\\f427\"}.fa-hornbill:before{content:\"\\f592\"}.fa-horse:before{content:\"\\f6f0\"}.fa-horse-head:before{content:\"\\f7ab\"}.fa-hospital:before{content:\"\\f0f8\"}.fa-hospital-alt:before{content:\"\\f47d\"}.fa-hospital-symbol:before{content:\"\\f47e\"}.fa-hospital-user:before{content:\"\\f80d\"}.fa-hot-tub:before{content:\"\\f593\"}.fa-hotdog:before{content:\"\\f80f\"}.fa-hotel:before{content:\"\\f594\"}.fa-hotjar:before{content:\"\\f3b1\"}.fa-hourglass:before{content:\"\\f254\"}.fa-hourglass-end:before{content:\"\\f253\"}.fa-hourglass-half:before{content:\"\\f252\"}.fa-hourglass-start:before{content:\"\\f251\"}.fa-house-damage:before{content:\"\\f6f1\"}.fa-house-user:before{content:\"\\e065\"}.fa-houzz:before{content:\"\\f27c\"}.fa-hryvnia:before{content:\"\\f6f2\"}.fa-html5:before{content:\"\\f13b\"}.fa-hubspot:before{content:\"\\f3b2\"}.fa-i-cursor:before{content:\"\\f246\"}.fa-ice-cream:before{content:\"\\f810\"}.fa-icicles:before{content:\"\\f7ad\"}.fa-icons:before{content:\"\\f86d\"}.fa-id-badge:before{content:\"\\f2c1\"}.fa-id-card:before{content:\"\\f2c2\"}.fa-id-card-alt:before{content:\"\\f47f\"}.fa-ideal:before{content:\"\\e013\"}.fa-igloo:before{content:\"\\f7ae\"}.fa-image:before{content:\"\\f03e\"}.fa-images:before{content:\"\\f302\"}.fa-imdb:before{content:\"\\f2d8\"}.fa-inbox:before{content:\"\\f01c\"}.fa-indent:before{content:\"\\f03c\"}.fa-industry:before{content:\"\\f275\"}.fa-infinity:before{content:\"\\f534\"}.fa-info:before{content:\"\\f129\"}.fa-info-circle:before{content:\"\\f05a\"}.fa-innosoft:before{content:\"\\e080\"}.fa-instagram:before{content:\"\\f16d\"}.fa-instagram-square:before{content:\"\\e055\"}.fa-instalod:before{content:\"\\e081\"}.fa-intercom:before{content:\"\\f7af\"}.fa-internet-explorer:before{content:\"\\f26b\"}.fa-invision:before{content:\"\\f7b0\"}.fa-ioxhost:before{content:\"\\f208\"}.fa-italic:before{content:\"\\f033\"}.fa-itch-io:before{content:\"\\f83a\"}.fa-itunes:before{content:\"\\f3b4\"}.fa-itunes-note:before{content:\"\\f3b5\"}.fa-java:before{content:\"\\f4e4\"}.fa-jedi:before{content:\"\\f669\"}.fa-jedi-order:before{content:\"\\f50e\"}.fa-jenkins:before{content:\"\\f3b6\"}.fa-jira:before{content:\"\\f7b1\"}.fa-joget:before{content:\"\\f3b7\"}.fa-joint:before{content:\"\\f595\"}.fa-joomla:before{content:\"\\f1aa\"}.fa-journal-whills:before{content:\"\\f66a\"}.fa-js:before{content:\"\\f3b8\"}.fa-js-square:before{content:\"\\f3b9\"}.fa-jsfiddle:before{content:\"\\f1cc\"}.fa-kaaba:before{content:\"\\f66b\"}.fa-kaggle:before{content:\"\\f5fa\"}.fa-key:before{content:\"\\f084\"}.fa-keybase:before{content:\"\\f4f5\"}.fa-keyboard:before{content:\"\\f11c\"}.fa-keycdn:before{content:\"\\f3ba\"}.fa-khanda:before{content:\"\\f66d\"}.fa-kickstarter:before{content:\"\\f3bb\"}.fa-kickstarter-k:before{content:\"\\f3bc\"}.fa-kiss:before{content:\"\\f596\"}.fa-kiss-beam:before{content:\"\\f597\"}.fa-kiss-wink-heart:before{content:\"\\f598\"}.fa-kiwi-bird:before{content:\"\\f535\"}.fa-korvue:before{content:\"\\f42f\"}.fa-landmark:before{content:\"\\f66f\"}.fa-language:before{content:\"\\f1ab\"}.fa-laptop:before{content:\"\\f109\"}.fa-laptop-code:before{content:\"\\f5fc\"}.fa-laptop-house:before{content:\"\\e066\"}.fa-laptop-medical:before{content:\"\\f812\"}.fa-laravel:before{content:\"\\f3bd\"}.fa-lastfm:before{content:\"\\f202\"}.fa-lastfm-square:before{content:\"\\f203\"}.fa-laugh:before{content:\"\\f599\"}.fa-laugh-beam:before{content:\"\\f59a\"}.fa-laugh-squint:before{content:\"\\f59b\"}.fa-laugh-wink:before{content:\"\\f59c\"}.fa-layer-group:before{content:\"\\f5fd\"}.fa-leaf:before{content:\"\\f06c\"}.fa-leanpub:before{content:\"\\f212\"}.fa-lemon:before{content:\"\\f094\"}.fa-less:before{content:\"\\f41d\"}.fa-less-than:before{content:\"\\f536\"}.fa-less-than-equal:before{content:\"\\f537\"}.fa-level-down-alt:before{content:\"\\f3be\"}.fa-level-up-alt:before{content:\"\\f3bf\"}.fa-life-ring:before{content:\"\\f1cd\"}.fa-lightbulb:before{content:\"\\f0eb\"}.fa-line:before{content:\"\\f3c0\"}.fa-link:before{content:\"\\f0c1\"}.fa-linkedin:before{content:\"\\f08c\"}.fa-linkedin-in:before{content:\"\\f0e1\"}.fa-linode:before{content:\"\\f2b8\"}.fa-linux:before{content:\"\\f17c\"}.fa-lira-sign:before{content:\"\\f195\"}.fa-list:before{content:\"\\f03a\"}.fa-list-alt:before{content:\"\\f022\"}.fa-list-ol:before{content:\"\\f0cb\"}.fa-list-ul:before{content:\"\\f0ca\"}.fa-location-arrow:before{content:\"\\f124\"}.fa-lock:before{content:\"\\f023\"}.fa-lock-open:before{content:\"\\f3c1\"}.fa-long-arrow-alt-down:before{content:\"\\f309\"}.fa-long-arrow-alt-left:before{content:\"\\f30a\"}.fa-long-arrow-alt-right:before{content:\"\\f30b\"}.fa-long-arrow-alt-up:before{content:\"\\f30c\"}.fa-low-vision:before{content:\"\\f2a8\"}.fa-luggage-cart:before{content:\"\\f59d\"}.fa-lungs:before{content:\"\\f604\"}.fa-lungs-virus:before{content:\"\\e067\"}.fa-lyft:before{content:\"\\f3c3\"}.fa-magento:before{content:\"\\f3c4\"}.fa-magic:before{content:\"\\f0d0\"}.fa-magnet:before{content:\"\\f076\"}.fa-mail-bulk:before{content:\"\\f674\"}.fa-mailchimp:before{content:\"\\f59e\"}.fa-male:before{content:\"\\f183\"}.fa-mandalorian:before{content:\"\\f50f\"}.fa-map:before{content:\"\\f279\"}.fa-map-marked:before{content:\"\\f59f\"}.fa-map-marked-alt:before{content:\"\\f5a0\"}.fa-map-marker:before{content:\"\\f041\"}.fa-map-marker-alt:before{content:\"\\f3c5\"}.fa-map-pin:before{content:\"\\f276\"}.fa-map-signs:before{content:\"\\f277\"}.fa-markdown:before{content:\"\\f60f\"}.fa-marker:before{content:\"\\f5a1\"}.fa-mars:before{content:\"\\f222\"}.fa-mars-double:before{content:\"\\f227\"}.fa-mars-stroke:before{content:\"\\f229\"}.fa-mars-stroke-h:before{content:\"\\f22b\"}.fa-mars-stroke-v:before{content:\"\\f22a\"}.fa-mask:before{content:\"\\f6fa\"}.fa-mastodon:before{content:\"\\f4f6\"}.fa-maxcdn:before{content:\"\\f136\"}.fa-mdb:before{content:\"\\f8ca\"}.fa-medal:before{content:\"\\f5a2\"}.fa-medapps:before{content:\"\\f3c6\"}.fa-medium:before{content:\"\\f23a\"}.fa-medium-m:before{content:\"\\f3c7\"}.fa-medkit:before{content:\"\\f0fa\"}.fa-medrt:before{content:\"\\f3c8\"}.fa-meetup:before{content:\"\\f2e0\"}.fa-megaport:before{content:\"\\f5a3\"}.fa-meh:before{content:\"\\f11a\"}.fa-meh-blank:before{content:\"\\f5a4\"}.fa-meh-rolling-eyes:before{content:\"\\f5a5\"}.fa-memory:before{content:\"\\f538\"}.fa-mendeley:before{content:\"\\f7b3\"}.fa-menorah:before{content:\"\\f676\"}.fa-mercury:before{content:\"\\f223\"}.fa-meteor:before{content:\"\\f753\"}.fa-microblog:before{content:\"\\e01a\"}.fa-microchip:before{content:\"\\f2db\"}.fa-microphone:before{content:\"\\f130\"}.fa-microphone-alt:before{content:\"\\f3c9\"}.fa-microphone-alt-slash:before{content:\"\\f539\"}.fa-microphone-slash:before{content:\"\\f131\"}.fa-microscope:before{content:\"\\f610\"}.fa-microsoft:before{content:\"\\f3ca\"}.fa-minus:before{content:\"\\f068\"}.fa-minus-circle:before{content:\"\\f056\"}.fa-minus-square:before{content:\"\\f146\"}.fa-mitten:before{content:\"\\f7b5\"}.fa-mix:before{content:\"\\f3cb\"}.fa-mixcloud:before{content:\"\\f289\"}.fa-mixer:before{content:\"\\e056\"}.fa-mizuni:before{content:\"\\f3cc\"}.fa-mobile:before{content:\"\\f10b\"}.fa-mobile-alt:before{content:\"\\f3cd\"}.fa-modx:before{content:\"\\f285\"}.fa-monero:before{content:\"\\f3d0\"}.fa-money-bill:before{content:\"\\f0d6\"}.fa-money-bill-alt:before{content:\"\\f3d1\"}.fa-money-bill-wave:before{content:\"\\f53a\"}.fa-money-bill-wave-alt:before{content:\"\\f53b\"}.fa-money-check:before{content:\"\\f53c\"}.fa-money-check-alt:before{content:\"\\f53d\"}.fa-monument:before{content:\"\\f5a6\"}.fa-moon:before{content:\"\\f186\"}.fa-mortar-pestle:before{content:\"\\f5a7\"}.fa-mosque:before{content:\"\\f678\"}.fa-motorcycle:before{content:\"\\f21c\"}.fa-mountain:before{content:\"\\f6fc\"}.fa-mouse:before{content:\"\\f8cc\"}.fa-mouse-pointer:before{content:\"\\f245\"}.fa-mug-hot:before{content:\"\\f7b6\"}.fa-music:before{content:\"\\f001\"}.fa-napster:before{content:\"\\f3d2\"}.fa-neos:before{content:\"\\f612\"}.fa-network-wired:before{content:\"\\f6ff\"}.fa-neuter:before{content:\"\\f22c\"}.fa-newspaper:before{content:\"\\f1ea\"}.fa-nimblr:before{content:\"\\f5a8\"}.fa-node:before{content:\"\\f419\"}.fa-node-js:before{content:\"\\f3d3\"}.fa-not-equal:before{content:\"\\f53e\"}.fa-notes-medical:before{content:\"\\f481\"}.fa-npm:before{content:\"\\f3d4\"}.fa-ns8:before{content:\"\\f3d5\"}.fa-nutritionix:before{content:\"\\f3d6\"}.fa-object-group:before{content:\"\\f247\"}.fa-object-ungroup:before{content:\"\\f248\"}.fa-octopus-deploy:before{content:\"\\e082\"}.fa-odnoklassniki:before{content:\"\\f263\"}.fa-odnoklassniki-square:before{content:\"\\f264\"}.fa-oil-can:before{content:\"\\f613\"}.fa-old-republic:before{content:\"\\f510\"}.fa-om:before{content:\"\\f679\"}.fa-opencart:before{content:\"\\f23d\"}.fa-openid:before{content:\"\\f19b\"}.fa-opera:before{content:\"\\f26a\"}.fa-optin-monster:before{content:\"\\f23c\"}.fa-orcid:before{content:\"\\f8d2\"}.fa-osi:before{content:\"\\f41a\"}.fa-otter:before{content:\"\\f700\"}.fa-outdent:before{content:\"\\f03b\"}.fa-page4:before{content:\"\\f3d7\"}.fa-pagelines:before{content:\"\\f18c\"}.fa-pager:before{content:\"\\f815\"}.fa-paint-brush:before{content:\"\\f1fc\"}.fa-paint-roller:before{content:\"\\f5aa\"}.fa-palette:before{content:\"\\f53f\"}.fa-palfed:before{content:\"\\f3d8\"}.fa-pallet:before{content:\"\\f482\"}.fa-paper-plane:before{content:\"\\f1d8\"}.fa-paperclip:before{content:\"\\f0c6\"}.fa-parachute-box:before{content:\"\\f4cd\"}.fa-paragraph:before{content:\"\\f1dd\"}.fa-parking:before{content:\"\\f540\"}.fa-passport:before{content:\"\\f5ab\"}.fa-pastafarianism:before{content:\"\\f67b\"}.fa-paste:before{content:\"\\f0ea\"}.fa-patreon:before{content:\"\\f3d9\"}.fa-pause:before{content:\"\\f04c\"}.fa-pause-circle:before{content:\"\\f28b\"}.fa-paw:before{content:\"\\f1b0\"}.fa-paypal:before{content:\"\\f1ed\"}.fa-peace:before{content:\"\\f67c\"}.fa-pen:before{content:\"\\f304\"}.fa-pen-alt:before{content:\"\\f305\"}.fa-pen-fancy:before{content:\"\\f5ac\"}.fa-pen-nib:before{content:\"\\f5ad\"}.fa-pen-square:before{content:\"\\f14b\"}.fa-pencil-alt:before{content:\"\\f303\"}.fa-pencil-ruler:before{content:\"\\f5ae\"}.fa-penny-arcade:before{content:\"\\f704\"}.fa-people-arrows:before{content:\"\\e068\"}.fa-people-carry:before{content:\"\\f4ce\"}.fa-pepper-hot:before{content:\"\\f816\"}.fa-perbyte:before{content:\"\\e083\"}.fa-percent:before{content:\"\\f295\"}.fa-percentage:before{content:\"\\f541\"}.fa-periscope:before{content:\"\\f3da\"}.fa-person-booth:before{content:\"\\f756\"}.fa-phabricator:before{content:\"\\f3db\"}.fa-phoenix-framework:before{content:\"\\f3dc\"}.fa-phoenix-squadron:before{content:\"\\f511\"}.fa-phone:before{content:\"\\f095\"}.fa-phone-alt:before{content:\"\\f879\"}.fa-phone-slash:before{content:\"\\f3dd\"}.fa-phone-square:before{content:\"\\f098\"}.fa-phone-square-alt:before{content:\"\\f87b\"}.fa-phone-volume:before{content:\"\\f2a0\"}.fa-photo-video:before{content:\"\\f87c\"}.fa-php:before{content:\"\\f457\"}.fa-pied-piper:before{content:\"\\f2ae\"}.fa-pied-piper-alt:before{content:\"\\f1a8\"}.fa-pied-piper-hat:before{content:\"\\f4e5\"}.fa-pied-piper-pp:before{content:\"\\f1a7\"}.fa-pied-piper-square:before{content:\"\\e01e\"}.fa-piggy-bank:before{content:\"\\f4d3\"}.fa-pills:before{content:\"\\f484\"}.fa-pinterest:before{content:\"\\f0d2\"}.fa-pinterest-p:before{content:\"\\f231\"}.fa-pinterest-square:before{content:\"\\f0d3\"}.fa-pizza-slice:before{content:\"\\f818\"}.fa-place-of-worship:before{content:\"\\f67f\"}.fa-plane:before{content:\"\\f072\"}.fa-plane-arrival:before{content:\"\\f5af\"}.fa-plane-departure:before{content:\"\\f5b0\"}.fa-plane-slash:before{content:\"\\e069\"}.fa-play:before{content:\"\\f04b\"}.fa-play-circle:before{content:\"\\f144\"}.fa-playstation:before{content:\"\\f3df\"}.fa-plug:before{content:\"\\f1e6\"}.fa-plus:before{content:\"\\f067\"}.fa-plus-circle:before{content:\"\\f055\"}.fa-plus-square:before{content:\"\\f0fe\"}.fa-podcast:before{content:\"\\f2ce\"}.fa-poll:before{content:\"\\f681\"}.fa-poll-h:before{content:\"\\f682\"}.fa-poo:before{content:\"\\f2fe\"}.fa-poo-storm:before{content:\"\\f75a\"}.fa-poop:before{content:\"\\f619\"}.fa-portrait:before{content:\"\\f3e0\"}.fa-pound-sign:before{content:\"\\f154\"}.fa-power-off:before{content:\"\\f011\"}.fa-pray:before{content:\"\\f683\"}.fa-praying-hands:before{content:\"\\f684\"}.fa-prescription:before{content:\"\\f5b1\"}.fa-prescription-bottle:before{content:\"\\f485\"}.fa-prescription-bottle-alt:before{content:\"\\f486\"}.fa-print:before{content:\"\\f02f\"}.fa-procedures:before{content:\"\\f487\"}.fa-product-hunt:before{content:\"\\f288\"}.fa-project-diagram:before{content:\"\\f542\"}.fa-pump-medical:before{content:\"\\e06a\"}.fa-pump-soap:before{content:\"\\e06b\"}.fa-pushed:before{content:\"\\f3e1\"}.fa-puzzle-piece:before{content:\"\\f12e\"}.fa-python:before{content:\"\\f3e2\"}.fa-qq:before{content:\"\\f1d6\"}.fa-qrcode:before{content:\"\\f029\"}.fa-question:before{content:\"\\f128\"}.fa-question-circle:before{content:\"\\f059\"}.fa-quidditch:before{content:\"\\f458\"}.fa-quinscape:before{content:\"\\f459\"}.fa-quora:before{content:\"\\f2c4\"}.fa-quote-left:before{content:\"\\f10d\"}.fa-quote-right:before{content:\"\\f10e\"}.fa-quran:before{content:\"\\f687\"}.fa-r-project:before{content:\"\\f4f7\"}.fa-radiation:before{content:\"\\f7b9\"}.fa-radiation-alt:before{content:\"\\f7ba\"}.fa-rainbow:before{content:\"\\f75b\"}.fa-random:before{content:\"\\f074\"}.fa-raspberry-pi:before{content:\"\\f7bb\"}.fa-ravelry:before{content:\"\\f2d9\"}.fa-react:before{content:\"\\f41b\"}.fa-reacteurope:before{content:\"\\f75d\"}.fa-readme:before{content:\"\\f4d5\"}.fa-rebel:before{content:\"\\f1d0\"}.fa-receipt:before{content:\"\\f543\"}.fa-record-vinyl:before{content:\"\\f8d9\"}.fa-recycle:before{content:\"\\f1b8\"}.fa-red-river:before{content:\"\\f3e3\"}.fa-reddit:before{content:\"\\f1a1\"}.fa-reddit-alien:before{content:\"\\f281\"}.fa-reddit-square:before{content:\"\\f1a2\"}.fa-redhat:before{content:\"\\f7bc\"}.fa-redo:before{content:\"\\f01e\"}.fa-redo-alt:before{content:\"\\f2f9\"}.fa-registered:before{content:\"\\f25d\"}.fa-remove-format:before{content:\"\\f87d\"}.fa-renren:before{content:\"\\f18b\"}.fa-reply:before{content:\"\\f3e5\"}.fa-reply-all:before{content:\"\\f122\"}.fa-replyd:before{content:\"\\f3e6\"}.fa-republican:before{content:\"\\f75e\"}.fa-researchgate:before{content:\"\\f4f8\"}.fa-resolving:before{content:\"\\f3e7\"}.fa-restroom:before{content:\"\\f7bd\"}.fa-retweet:before{content:\"\\f079\"}.fa-rev:before{content:\"\\f5b2\"}.fa-ribbon:before{content:\"\\f4d6\"}.fa-ring:before{content:\"\\f70b\"}.fa-road:before{content:\"\\f018\"}.fa-robot:before{content:\"\\f544\"}.fa-rocket:before{content:\"\\f135\"}.fa-rocketchat:before{content:\"\\f3e8\"}.fa-rockrms:before{content:\"\\f3e9\"}.fa-route:before{content:\"\\f4d7\"}.fa-rss:before{content:\"\\f09e\"}.fa-rss-square:before{content:\"\\f143\"}.fa-ruble-sign:before{content:\"\\f158\"}.fa-ruler:before{content:\"\\f545\"}.fa-ruler-combined:before{content:\"\\f546\"}.fa-ruler-horizontal:before{content:\"\\f547\"}.fa-ruler-vertical:before{content:\"\\f548\"}.fa-running:before{content:\"\\f70c\"}.fa-rupee-sign:before{content:\"\\f156\"}.fa-rust:before{content:\"\\e07a\"}.fa-sad-cry:before{content:\"\\f5b3\"}.fa-sad-tear:before{content:\"\\f5b4\"}.fa-safari:before{content:\"\\f267\"}.fa-salesforce:before{content:\"\\f83b\"}.fa-sass:before{content:\"\\f41e\"}.fa-satellite:before{content:\"\\f7bf\"}.fa-satellite-dish:before{content:\"\\f7c0\"}.fa-save:before{content:\"\\f0c7\"}.fa-schlix:before{content:\"\\f3ea\"}.fa-school:before{content:\"\\f549\"}.fa-screwdriver:before{content:\"\\f54a\"}.fa-scribd:before{content:\"\\f28a\"}.fa-scroll:before{content:\"\\f70e\"}.fa-sd-card:before{content:\"\\f7c2\"}.fa-search:before{content:\"\\f002\"}.fa-search-dollar:before{content:\"\\f688\"}.fa-search-location:before{content:\"\\f689\"}.fa-search-minus:before{content:\"\\f010\"}.fa-search-plus:before{content:\"\\f00e\"}.fa-searchengin:before{content:\"\\f3eb\"}.fa-seedling:before{content:\"\\f4d8\"}.fa-sellcast:before{content:\"\\f2da\"}.fa-sellsy:before{content:\"\\f213\"}.fa-server:before{content:\"\\f233\"}.fa-servicestack:before{content:\"\\f3ec\"}.fa-shapes:before{content:\"\\f61f\"}.fa-share:before{content:\"\\f064\"}.fa-share-alt:before{content:\"\\f1e0\"}.fa-share-alt-square:before{content:\"\\f1e1\"}.fa-share-square:before{content:\"\\f14d\"}.fa-shekel-sign:before{content:\"\\f20b\"}.fa-shield-alt:before{content:\"\\f3ed\"}.fa-shield-virus:before{content:\"\\e06c\"}.fa-ship:before{content:\"\\f21a\"}.fa-shipping-fast:before{content:\"\\f48b\"}.fa-shirtsinbulk:before{content:\"\\f214\"}.fa-shoe-prints:before{content:\"\\f54b\"}.fa-shopify:before{content:\"\\e057\"}.fa-shopping-bag:before{content:\"\\f290\"}.fa-shopping-basket:before{content:\"\\f291\"}.fa-shopping-cart:before{content:\"\\f07a\"}.fa-shopware:before{content:\"\\f5b5\"}.fa-shower:before{content:\"\\f2cc\"}.fa-shuttle-van:before{content:\"\\f5b6\"}.fa-sign:before{content:\"\\f4d9\"}.fa-sign-in-alt:before{content:\"\\f2f6\"}.fa-sign-language:before{content:\"\\f2a7\"}.fa-sign-out-alt:before{content:\"\\f2f5\"}.fa-signal:before{content:\"\\f012\"}.fa-signature:before{content:\"\\f5b7\"}.fa-sim-card:before{content:\"\\f7c4\"}.fa-simplybuilt:before{content:\"\\f215\"}.fa-sink:before{content:\"\\e06d\"}.fa-sistrix:before{content:\"\\f3ee\"}.fa-sitemap:before{content:\"\\f0e8\"}.fa-sith:before{content:\"\\f512\"}.fa-skating:before{content:\"\\f7c5\"}.fa-sketch:before{content:\"\\f7c6\"}.fa-skiing:before{content:\"\\f7c9\"}.fa-skiing-nordic:before{content:\"\\f7ca\"}.fa-skull:before{content:\"\\f54c\"}.fa-skull-crossbones:before{content:\"\\f714\"}.fa-skyatlas:before{content:\"\\f216\"}.fa-skype:before{content:\"\\f17e\"}.fa-slack:before{content:\"\\f198\"}.fa-slack-hash:before{content:\"\\f3ef\"}.fa-slash:before{content:\"\\f715\"}.fa-sleigh:before{content:\"\\f7cc\"}.fa-sliders-h:before{content:\"\\f1de\"}.fa-slideshare:before{content:\"\\f1e7\"}.fa-smile:before{content:\"\\f118\"}.fa-smile-beam:before{content:\"\\f5b8\"}.fa-smile-wink:before{content:\"\\f4da\"}.fa-smog:before{content:\"\\f75f\"}.fa-smoking:before{content:\"\\f48d\"}.fa-smoking-ban:before{content:\"\\f54d\"}.fa-sms:before{content:\"\\f7cd\"}.fa-snapchat:before{content:\"\\f2ab\"}.fa-snapchat-ghost:before{content:\"\\f2ac\"}.fa-snapchat-square:before{content:\"\\f2ad\"}.fa-snowboarding:before{content:\"\\f7ce\"}.fa-snowflake:before{content:\"\\f2dc\"}.fa-snowman:before{content:\"\\f7d0\"}.fa-snowplow:before{content:\"\\f7d2\"}.fa-soap:before{content:\"\\e06e\"}.fa-socks:before{content:\"\\f696\"}.fa-solar-panel:before{content:\"\\f5ba\"}.fa-sort:before{content:\"\\f0dc\"}.fa-sort-alpha-down:before{content:\"\\f15d\"}.fa-sort-alpha-down-alt:before{content:\"\\f881\"}.fa-sort-alpha-up:before{content:\"\\f15e\"}.fa-sort-alpha-up-alt:before{content:\"\\f882\"}.fa-sort-amount-down:before{content:\"\\f160\"}.fa-sort-amount-down-alt:before{content:\"\\f884\"}.fa-sort-amount-up:before{content:\"\\f161\"}.fa-sort-amount-up-alt:before{content:\"\\f885\"}.fa-sort-down:before{content:\"\\f0dd\"}.fa-sort-numeric-down:before{content:\"\\f162\"}.fa-sort-numeric-down-alt:before{content:\"\\f886\"}.fa-sort-numeric-up:before{content:\"\\f163\"}.fa-sort-numeric-up-alt:before{content:\"\\f887\"}.fa-sort-up:before{content:\"\\f0de\"}.fa-soundcloud:before{content:\"\\f1be\"}.fa-sourcetree:before{content:\"\\f7d3\"}.fa-spa:before{content:\"\\f5bb\"}.fa-space-shuttle:before{content:\"\\f197\"}.fa-speakap:before{content:\"\\f3f3\"}.fa-speaker-deck:before{content:\"\\f83c\"}.fa-spell-check:before{content:\"\\f891\"}.fa-spider:before{content:\"\\f717\"}.fa-spinner:before{content:\"\\f110\"}.fa-splotch:before{content:\"\\f5bc\"}.fa-spotify:before{content:\"\\f1bc\"}.fa-spray-can:before{content:\"\\f5bd\"}.fa-square:before{content:\"\\f0c8\"}.fa-square-full:before{content:\"\\f45c\"}.fa-square-root-alt:before{content:\"\\f698\"}.fa-squarespace:before{content:\"\\f5be\"}.fa-stack-exchange:before{content:\"\\f18d\"}.fa-stack-overflow:before{content:\"\\f16c\"}.fa-stackpath:before{content:\"\\f842\"}.fa-stamp:before{content:\"\\f5bf\"}.fa-star:before{content:\"\\f005\"}.fa-star-and-crescent:before{content:\"\\f699\"}.fa-star-half:before{content:\"\\f089\"}.fa-star-half-alt:before{content:\"\\f5c0\"}.fa-star-of-david:before{content:\"\\f69a\"}.fa-star-of-life:before{content:\"\\f621\"}.fa-staylinked:before{content:\"\\f3f5\"}.fa-steam:before{content:\"\\f1b6\"}.fa-steam-square:before{content:\"\\f1b7\"}.fa-steam-symbol:before{content:\"\\f3f6\"}.fa-step-backward:before{content:\"\\f048\"}.fa-step-forward:before{content:\"\\f051\"}.fa-stethoscope:before{content:\"\\f0f1\"}.fa-sticker-mule:before{content:\"\\f3f7\"}.fa-sticky-note:before{content:\"\\f249\"}.fa-stop:before{content:\"\\f04d\"}.fa-stop-circle:before{content:\"\\f28d\"}.fa-stopwatch:before{content:\"\\f2f2\"}.fa-stopwatch-20:before{content:\"\\e06f\"}.fa-store:before{content:\"\\f54e\"}.fa-store-alt:before{content:\"\\f54f\"}.fa-store-alt-slash:before{content:\"\\e070\"}.fa-store-slash:before{content:\"\\e071\"}.fa-strava:before{content:\"\\f428\"}.fa-stream:before{content:\"\\f550\"}.fa-street-view:before{content:\"\\f21d\"}.fa-strikethrough:before{content:\"\\f0cc\"}.fa-stripe:before{content:\"\\f429\"}.fa-stripe-s:before{content:\"\\f42a\"}.fa-stroopwafel:before{content:\"\\f551\"}.fa-studiovinari:before{content:\"\\f3f8\"}.fa-stumbleupon:before{content:\"\\f1a4\"}.fa-stumbleupon-circle:before{content:\"\\f1a3\"}.fa-subscript:before{content:\"\\f12c\"}.fa-subway:before{content:\"\\f239\"}.fa-suitcase:before{content:\"\\f0f2\"}.fa-suitcase-rolling:before{content:\"\\f5c1\"}.fa-sun:before{content:\"\\f185\"}.fa-superpowers:before{content:\"\\f2dd\"}.fa-superscript:before{content:\"\\f12b\"}.fa-supple:before{content:\"\\f3f9\"}.fa-surprise:before{content:\"\\f5c2\"}.fa-suse:before{content:\"\\f7d6\"}.fa-swatchbook:before{content:\"\\f5c3\"}.fa-swift:before{content:\"\\f8e1\"}.fa-swimmer:before{content:\"\\f5c4\"}.fa-swimming-pool:before{content:\"\\f5c5\"}.fa-symfony:before{content:\"\\f83d\"}.fa-synagogue:before{content:\"\\f69b\"}.fa-sync:before{content:\"\\f021\"}.fa-sync-alt:before{content:\"\\f2f1\"}.fa-syringe:before{content:\"\\f48e\"}.fa-table:before{content:\"\\f0ce\"}.fa-table-tennis:before{content:\"\\f45d\"}.fa-tablet:before{content:\"\\f10a\"}.fa-tablet-alt:before{content:\"\\f3fa\"}.fa-tablets:before{content:\"\\f490\"}.fa-tachometer-alt:before{content:\"\\f3fd\"}.fa-tag:before{content:\"\\f02b\"}.fa-tags:before{content:\"\\f02c\"}.fa-tape:before{content:\"\\f4db\"}.fa-tasks:before{content:\"\\f0ae\"}.fa-taxi:before{content:\"\\f1ba\"}.fa-teamspeak:before{content:\"\\f4f9\"}.fa-teeth:before{content:\"\\f62e\"}.fa-teeth-open:before{content:\"\\f62f\"}.fa-telegram:before{content:\"\\f2c6\"}.fa-telegram-plane:before{content:\"\\f3fe\"}.fa-temperature-high:before{content:\"\\f769\"}.fa-temperature-low:before{content:\"\\f76b\"}.fa-tencent-weibo:before{content:\"\\f1d5\"}.fa-tenge:before{content:\"\\f7d7\"}.fa-terminal:before{content:\"\\f120\"}.fa-text-height:before{content:\"\\f034\"}.fa-text-width:before{content:\"\\f035\"}.fa-th:before{content:\"\\f00a\"}.fa-th-large:before{content:\"\\f009\"}.fa-th-list:before{content:\"\\f00b\"}.fa-the-red-yeti:before{content:\"\\f69d\"}.fa-theater-masks:before{content:\"\\f630\"}.fa-themeco:before{content:\"\\f5c6\"}.fa-themeisle:before{content:\"\\f2b2\"}.fa-thermometer:before{content:\"\\f491\"}.fa-thermometer-empty:before{content:\"\\f2cb\"}.fa-thermometer-full:before{content:\"\\f2c7\"}.fa-thermometer-half:before{content:\"\\f2c9\"}.fa-thermometer-quarter:before{content:\"\\f2ca\"}.fa-thermometer-three-quarters:before{content:\"\\f2c8\"}.fa-think-peaks:before{content:\"\\f731\"}.fa-thumbs-down:before{content:\"\\f165\"}.fa-thumbs-up:before{content:\"\\f164\"}.fa-thumbtack:before{content:\"\\f08d\"}.fa-ticket-alt:before{content:\"\\f3ff\"}.fa-tiktok:before{content:\"\\e07b\"}.fa-times:before{content:\"\\f00d\"}.fa-times-circle:before{content:\"\\f057\"}.fa-tint:before{content:\"\\f043\"}.fa-tint-slash:before{content:\"\\f5c7\"}.fa-tired:before{content:\"\\f5c8\"}.fa-toggle-off:before{content:\"\\f204\"}.fa-toggle-on:before{content:\"\\f205\"}.fa-toilet:before{content:\"\\f7d8\"}.fa-toilet-paper:before{content:\"\\f71e\"}.fa-toilet-paper-slash:before{content:\"\\e072\"}.fa-toolbox:before{content:\"\\f552\"}.fa-tools:before{content:\"\\f7d9\"}.fa-tooth:before{content:\"\\f5c9\"}.fa-torah:before{content:\"\\f6a0\"}.fa-torii-gate:before{content:\"\\f6a1\"}.fa-tractor:before{content:\"\\f722\"}.fa-trade-federation:before{content:\"\\f513\"}.fa-trademark:before{content:\"\\f25c\"}.fa-traffic-light:before{content:\"\\f637\"}.fa-trailer:before{content:\"\\e041\"}.fa-train:before{content:\"\\f238\"}.fa-tram:before{content:\"\\f7da\"}.fa-transgender:before{content:\"\\f224\"}.fa-transgender-alt:before{content:\"\\f225\"}.fa-trash:before{content:\"\\f1f8\"}.fa-trash-alt:before{content:\"\\f2ed\"}.fa-trash-restore:before{content:\"\\f829\"}.fa-trash-restore-alt:before{content:\"\\f82a\"}.fa-tree:before{content:\"\\f1bb\"}.fa-trello:before{content:\"\\f181\"}.fa-tripadvisor:before{content:\"\\f262\"}.fa-trophy:before{content:\"\\f091\"}.fa-truck:before{content:\"\\f0d1\"}.fa-truck-loading:before{content:\"\\f4de\"}.fa-truck-monster:before{content:\"\\f63b\"}.fa-truck-moving:before{content:\"\\f4df\"}.fa-truck-pickup:before{content:\"\\f63c\"}.fa-tshirt:before{content:\"\\f553\"}.fa-tty:before{content:\"\\f1e4\"}.fa-tumblr:before{content:\"\\f173\"}.fa-tumblr-square:before{content:\"\\f174\"}.fa-tv:before{content:\"\\f26c\"}.fa-twitch:before{content:\"\\f1e8\"}.fa-twitter:before{content:\"\\f099\"}.fa-twitter-square:before{content:\"\\f081\"}.fa-typo3:before{content:\"\\f42b\"}.fa-uber:before{content:\"\\f402\"}.fa-ubuntu:before{content:\"\\f7df\"}.fa-uikit:before{content:\"\\f403\"}.fa-umbraco:before{content:\"\\f8e8\"}.fa-umbrella:before{content:\"\\f0e9\"}.fa-umbrella-beach:before{content:\"\\f5ca\"}.fa-uncharted:before{content:\"\\e084\"}.fa-underline:before{content:\"\\f0cd\"}.fa-undo:before{content:\"\\f0e2\"}.fa-undo-alt:before{content:\"\\f2ea\"}.fa-uniregistry:before{content:\"\\f404\"}.fa-unity:before{content:\"\\e049\"}.fa-universal-access:before{content:\"\\f29a\"}.fa-university:before{content:\"\\f19c\"}.fa-unlink:before{content:\"\\f127\"}.fa-unlock:before{content:\"\\f09c\"}.fa-unlock-alt:before{content:\"\\f13e\"}.fa-unsplash:before{content:\"\\e07c\"}.fa-untappd:before{content:\"\\f405\"}.fa-upload:before{content:\"\\f093\"}.fa-ups:before{content:\"\\f7e0\"}.fa-usb:before{content:\"\\f287\"}.fa-user:before{content:\"\\f007\"}.fa-user-alt:before{content:\"\\f406\"}.fa-user-alt-slash:before{content:\"\\f4fa\"}.fa-user-astronaut:before{content:\"\\f4fb\"}.fa-user-check:before{content:\"\\f4fc\"}.fa-user-circle:before{content:\"\\f2bd\"}.fa-user-clock:before{content:\"\\f4fd\"}.fa-user-cog:before{content:\"\\f4fe\"}.fa-user-edit:before{content:\"\\f4ff\"}.fa-user-friends:before{content:\"\\f500\"}.fa-user-graduate:before{content:\"\\f501\"}.fa-user-injured:before{content:\"\\f728\"}.fa-user-lock:before{content:\"\\f502\"}.fa-user-md:before{content:\"\\f0f0\"}.fa-user-minus:before{content:\"\\f503\"}.fa-user-ninja:before{content:\"\\f504\"}.fa-user-nurse:before{content:\"\\f82f\"}.fa-user-plus:before{content:\"\\f234\"}.fa-user-secret:before{content:\"\\f21b\"}.fa-user-shield:before{content:\"\\f505\"}.fa-user-slash:before{content:\"\\f506\"}.fa-user-tag:before{content:\"\\f507\"}.fa-user-tie:before{content:\"\\f508\"}.fa-user-times:before{content:\"\\f235\"}.fa-users:before{content:\"\\f0c0\"}.fa-users-cog:before{content:\"\\f509\"}.fa-users-slash:before{content:\"\\e073\"}.fa-usps:before{content:\"\\f7e1\"}.fa-ussunnah:before{content:\"\\f407\"}.fa-utensil-spoon:before{content:\"\\f2e5\"}.fa-utensils:before{content:\"\\f2e7\"}.fa-vaadin:before{content:\"\\f408\"}.fa-vector-square:before{content:\"\\f5cb\"}.fa-venus:before{content:\"\\f221\"}.fa-venus-double:before{content:\"\\f226\"}.fa-venus-mars:before{content:\"\\f228\"}.fa-vest:before{content:\"\\e085\"}.fa-vest-patches:before{content:\"\\e086\"}.fa-viacoin:before{content:\"\\f237\"}.fa-viadeo:before{content:\"\\f2a9\"}.fa-viadeo-square:before{content:\"\\f2aa\"}.fa-vial:before{content:\"\\f492\"}.fa-vials:before{content:\"\\f493\"}.fa-viber:before{content:\"\\f409\"}.fa-video:before{content:\"\\f03d\"}.fa-video-slash:before{content:\"\\f4e2\"}.fa-vihara:before{content:\"\\f6a7\"}.fa-vimeo:before{content:\"\\f40a\"}.fa-vimeo-square:before{content:\"\\f194\"}.fa-vimeo-v:before{content:\"\\f27d\"}.fa-vine:before{content:\"\\f1ca\"}.fa-virus:before{content:\"\\e074\"}.fa-virus-slash:before{content:\"\\e075\"}.fa-viruses:before{content:\"\\e076\"}.fa-vk:before{content:\"\\f189\"}.fa-vnv:before{content:\"\\f40b\"}.fa-voicemail:before{content:\"\\f897\"}.fa-volleyball-ball:before{content:\"\\f45f\"}.fa-volume-down:before{content:\"\\f027\"}.fa-volume-mute:before{content:\"\\f6a9\"}.fa-volume-off:before{content:\"\\f026\"}.fa-volume-up:before{content:\"\\f028\"}.fa-vote-yea:before{content:\"\\f772\"}.fa-vr-cardboard:before{content:\"\\f729\"}.fa-vuejs:before{content:\"\\f41f\"}.fa-walking:before{content:\"\\f554\"}.fa-wallet:before{content:\"\\f555\"}.fa-warehouse:before{content:\"\\f494\"}.fa-watchman-monitoring:before{content:\"\\e087\"}.fa-water:before{content:\"\\f773\"}.fa-wave-square:before{content:\"\\f83e\"}.fa-waze:before{content:\"\\f83f\"}.fa-weebly:before{content:\"\\f5cc\"}.fa-weibo:before{content:\"\\f18a\"}.fa-weight:before{content:\"\\f496\"}.fa-weight-hanging:before{content:\"\\f5cd\"}.fa-weixin:before{content:\"\\f1d7\"}.fa-whatsapp:before{content:\"\\f232\"}.fa-whatsapp-square:before{content:\"\\f40c\"}.fa-wheelchair:before{content:\"\\f193\"}.fa-whmcs:before{content:\"\\f40d\"}.fa-wifi:before{content:\"\\f1eb\"}.fa-wikipedia-w:before{content:\"\\f266\"}.fa-wind:before{content:\"\\f72e\"}.fa-window-close:before{content:\"\\f410\"}.fa-window-maximize:before{content:\"\\f2d0\"}.fa-window-minimize:before{content:\"\\f2d1\"}.fa-window-restore:before{content:\"\\f2d2\"}.fa-windows:before{content:\"\\f17a\"}.fa-wine-bottle:before{content:\"\\f72f\"}.fa-wine-glass:before{content:\"\\f4e3\"}.fa-wine-glass-alt:before{content:\"\\f5ce\"}.fa-wix:before{content:\"\\f5cf\"}.fa-wizards-of-the-coast:before{content:\"\\f730\"}.fa-wodu:before{content:\"\\e088\"}.fa-wolf-pack-battalion:before{content:\"\\f514\"}.fa-won-sign:before{content:\"\\f159\"}.fa-wordpress:before{content:\"\\f19a\"}.fa-wordpress-simple:before{content:\"\\f411\"}.fa-wpbeginner:before{content:\"\\f297\"}.fa-wpexplorer:before{content:\"\\f2de\"}.fa-wpforms:before{content:\"\\f298\"}.fa-wpressr:before{content:\"\\f3e4\"}.fa-wrench:before{content:\"\\f0ad\"}.fa-x-ray:before{content:\"\\f497\"}.fa-xbox:before{content:\"\\f412\"}.fa-xing:before{content:\"\\f168\"}.fa-xing-square:before{content:\"\\f169\"}.fa-y-combinator:before{content:\"\\f23b\"}.fa-yahoo:before{content:\"\\f19e\"}.fa-yammer:before{content:\"\\f840\"}.fa-yandex:before{content:\"\\f413\"}.fa-yandex-international:before{content:\"\\f414\"}.fa-yarn:before{content:\"\\f7e3\"}.fa-yelp:before{content:\"\\f1e9\"}.fa-yen-sign:before{content:\"\\f157\"}.fa-yin-yang:before{content:\"\\f6ad\"}.fa-yoast:before{content:\"\\f2b1\"}.fa-youtube:before{content:\"\\f167\"}.fa-youtube-square:before{content:\"\\f431\"}.fa-zhihu:before{content:\"\\f63f\"}.fa.fa-glass:before{content:\"\\f000\"}.fa.fa-meetup{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-star-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-o:before{content:\"\\f005\"}.fa.fa-close:before,.fa.fa-remove:before{content:\"\\f00d\"}.fa.fa-gear:before{content:\"\\f013\"}.fa.fa-trash-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-trash-o:before{content:\"\\f2ed\"}.fa.fa-file-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-o:before{content:\"\\f15b\"}.fa.fa-clock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-clock-o:before{content:\"\\f017\"}.fa.fa-arrow-circle-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:\"\\f358\"}.fa.fa-arrow-circle-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:\"\\f35b\"}.fa.fa-play-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-play-circle-o:before{content:\"\\f144\"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:\"\\f01e\"}.fa.fa-refresh:before{content:\"\\f021\"}.fa.fa-list-alt{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-dedent:before{content:\"\\f03b\"}.fa.fa-video-camera:before{content:\"\\f03d\"}.fa.fa-picture-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-picture-o:before{content:\"\\f03e\"}.fa.fa-photo{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-photo:before{content:\"\\f03e\"}.fa.fa-image{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-image:before{content:\"\\f03e\"}.fa.fa-pencil:before{content:\"\\f303\"}.fa.fa-map-marker:before{content:\"\\f3c5\"}.fa.fa-pencil-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-pencil-square-o:before{content:\"\\f044\"}.fa.fa-share-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-share-square-o:before{content:\"\\f14d\"}.fa.fa-check-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-check-square-o:before{content:\"\\f14a\"}.fa.fa-arrows:before{content:\"\\f0b2\"}.fa.fa-times-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-circle-o:before{content:\"\\f057\"}.fa.fa-check-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-check-circle-o:before{content:\"\\f058\"}.fa.fa-mail-forward:before{content:\"\\f064\"}.fa.fa-eye,.fa.fa-eye-slash{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-warning:before{content:\"\\f071\"}.fa.fa-calendar:before{content:\"\\f073\"}.fa.fa-arrows-v:before{content:\"\\f338\"}.fa.fa-arrows-h:before{content:\"\\f337\"}.fa.fa-bar-chart{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bar-chart:before{content:\"\\f080\"}.fa.fa-bar-chart-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bar-chart-o:before{content:\"\\f080\"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-gears:before{content:\"\\f085\"}.fa.fa-thumbs-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-thumbs-o-up:before{content:\"\\f164\"}.fa.fa-thumbs-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-thumbs-o-down:before{content:\"\\f165\"}.fa.fa-heart-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-heart-o:before{content:\"\\f004\"}.fa.fa-sign-out:before{content:\"\\f2f5\"}.fa.fa-linkedin-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-linkedin-square:before{content:\"\\f08c\"}.fa.fa-thumb-tack:before{content:\"\\f08d\"}.fa.fa-external-link:before{content:\"\\f35d\"}.fa.fa-sign-in:before{content:\"\\f2f6\"}.fa.fa-github-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-lemon-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-lemon-o:before{content:\"\\f094\"}.fa.fa-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-square-o:before{content:\"\\f0c8\"}.fa.fa-bookmark-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bookmark-o:before{content:\"\\f02e\"}.fa.fa-facebook,.fa.fa-twitter{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook:before{content:\"\\f39e\"}.fa.fa-facebook-f{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook-f:before{content:\"\\f39e\"}.fa.fa-github{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-credit-card{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-feed:before{content:\"\\f09e\"}.fa.fa-hdd-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hdd-o:before{content:\"\\f0a0\"}.fa.fa-hand-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-right:before{content:\"\\f0a4\"}.fa.fa-hand-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-left:before{content:\"\\f0a5\"}.fa.fa-hand-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-up:before{content:\"\\f0a6\"}.fa.fa-hand-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-o-down:before{content:\"\\f0a7\"}.fa.fa-arrows-alt:before{content:\"\\f31e\"}.fa.fa-group:before{content:\"\\f0c0\"}.fa.fa-chain:before{content:\"\\f0c1\"}.fa.fa-scissors:before{content:\"\\f0c4\"}.fa.fa-files-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-files-o:before{content:\"\\f0c5\"}.fa.fa-floppy-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-floppy-o:before{content:\"\\f0c7\"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:\"\\f0c9\"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus:before{content:\"\\f0d5\"}.fa.fa-money{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-money:before{content:\"\\f3d1\"}.fa.fa-unsorted:before{content:\"\\f0dc\"}.fa.fa-sort-desc:before{content:\"\\f0dd\"}.fa.fa-sort-asc:before{content:\"\\f0de\"}.fa.fa-linkedin{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-linkedin:before{content:\"\\f0e1\"}.fa.fa-rotate-left:before{content:\"\\f0e2\"}.fa.fa-legal:before{content:\"\\f0e3\"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:\"\\f3fd\"}.fa.fa-comment-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-comment-o:before{content:\"\\f075\"}.fa.fa-comments-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-comments-o:before{content:\"\\f086\"}.fa.fa-flash:before{content:\"\\f0e7\"}.fa.fa-clipboard,.fa.fa-paste{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-paste:before{content:\"\\f328\"}.fa.fa-lightbulb-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-lightbulb-o:before{content:\"\\f0eb\"}.fa.fa-exchange:before{content:\"\\f362\"}.fa.fa-cloud-download:before{content:\"\\f381\"}.fa.fa-cloud-upload:before{content:\"\\f382\"}.fa.fa-bell-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bell-o:before{content:\"\\f0f3\"}.fa.fa-cutlery:before{content:\"\\f2e7\"}.fa.fa-file-text-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-text-o:before{content:\"\\f15c\"}.fa.fa-building-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-building-o:before{content:\"\\f1ad\"}.fa.fa-hospital-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hospital-o:before{content:\"\\f0f8\"}.fa.fa-tablet:before{content:\"\\f3fa\"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:\"\\f3cd\"}.fa.fa-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-circle-o:before{content:\"\\f111\"}.fa.fa-mail-reply:before{content:\"\\f3e5\"}.fa.fa-github-alt{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-folder-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-folder-o:before{content:\"\\f07b\"}.fa.fa-folder-open-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-folder-open-o:before{content:\"\\f07c\"}.fa.fa-smile-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-smile-o:before{content:\"\\f118\"}.fa.fa-frown-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-frown-o:before{content:\"\\f119\"}.fa.fa-meh-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-meh-o:before{content:\"\\f11a\"}.fa.fa-keyboard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-keyboard-o:before{content:\"\\f11c\"}.fa.fa-flag-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-flag-o:before{content:\"\\f024\"}.fa.fa-mail-reply-all:before{content:\"\\f122\"}.fa.fa-star-half-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-o:before{content:\"\\f089\"}.fa.fa-star-half-empty{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-empty:before{content:\"\\f089\"}.fa.fa-star-half-full{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-star-half-full:before{content:\"\\f089\"}.fa.fa-code-fork:before{content:\"\\f126\"}.fa.fa-chain-broken:before{content:\"\\f127\"}.fa.fa-shield:before{content:\"\\f3ed\"}.fa.fa-calendar-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-o:before{content:\"\\f133\"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ticket:before{content:\"\\f3ff\"}.fa.fa-minus-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-minus-square-o:before{content:\"\\f146\"}.fa.fa-level-up:before{content:\"\\f3bf\"}.fa.fa-level-down:before{content:\"\\f3be\"}.fa.fa-pencil-square:before{content:\"\\f14b\"}.fa.fa-external-link-square:before{content:\"\\f360\"}.fa.fa-compass{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-down:before{content:\"\\f150\"}.fa.fa-toggle-down{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-down:before{content:\"\\f150\"}.fa.fa-caret-square-o-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-up:before{content:\"\\f151\"}.fa.fa-toggle-up{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-up:before{content:\"\\f151\"}.fa.fa-caret-square-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-right:before{content:\"\\f152\"}.fa.fa-toggle-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-right:before{content:\"\\f152\"}.fa.fa-eur:before,.fa.fa-euro:before{content:\"\\f153\"}.fa.fa-gbp:before{content:\"\\f154\"}.fa.fa-dollar:before,.fa.fa-usd:before{content:\"\\f155\"}.fa.fa-inr:before,.fa.fa-rupee:before{content:\"\\f156\"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:\"\\f157\"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:\"\\f158\"}.fa.fa-krw:before,.fa.fa-won:before{content:\"\\f159\"}.fa.fa-bitcoin,.fa.fa-btc{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bitcoin:before{content:\"\\f15a\"}.fa.fa-file-text:before{content:\"\\f15c\"}.fa.fa-sort-alpha-asc:before{content:\"\\f15d\"}.fa.fa-sort-alpha-desc:before{content:\"\\f15e\"}.fa.fa-sort-amount-asc:before{content:\"\\f160\"}.fa.fa-sort-amount-desc:before{content:\"\\f161\"}.fa.fa-sort-numeric-asc:before{content:\"\\f162\"}.fa.fa-sort-numeric-desc:before{content:\"\\f163\"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-youtube-play:before{content:\"\\f167\"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bitbucket-square:before{content:\"\\f171\"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-long-arrow-down:before{content:\"\\f309\"}.fa.fa-long-arrow-up:before{content:\"\\f30c\"}.fa.fa-long-arrow-left:before{content:\"\\f30a\"}.fa.fa-long-arrow-right:before{content:\"\\f30b\"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-gittip:before{content:\"\\f184\"}.fa.fa-sun-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-sun-o:before{content:\"\\f185\"}.fa.fa-moon-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-moon-o:before{content:\"\\f186\"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:\"\\f35a\"}.fa.fa-arrow-circle-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:\"\\f359\"}.fa.fa-caret-square-o-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-caret-square-o-left:before{content:\"\\f191\"}.fa.fa-toggle-left{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-toggle-left:before{content:\"\\f191\"}.fa.fa-dot-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-dot-circle-o:before{content:\"\\f192\"}.fa.fa-vimeo-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:\"\\f195\"}.fa.fa-plus-square-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-plus-square-o:before{content:\"\\f0fe\"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:\"\\f19c\"}.fa.fa-mortar-board:before{content:\"\\f19d\"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-spoon:before{content:\"\\f2e5\"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-automobile:before{content:\"\\f1b9\"}.fa.fa-cab:before{content:\"\\f1ba\"}.fa.fa-envelope-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-envelope-o:before{content:\"\\f0e0\"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-file-pdf-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-pdf-o:before{content:\"\\f1c1\"}.fa.fa-file-word-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-word-o:before{content:\"\\f1c2\"}.fa.fa-file-excel-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-excel-o:before{content:\"\\f1c3\"}.fa.fa-file-powerpoint-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-powerpoint-o:before{content:\"\\f1c4\"}.fa.fa-file-image-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-image-o:before{content:\"\\f1c5\"}.fa.fa-file-photo-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-photo-o:before{content:\"\\f1c5\"}.fa.fa-file-picture-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-picture-o:before{content:\"\\f1c5\"}.fa.fa-file-archive-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-archive-o:before{content:\"\\f1c6\"}.fa.fa-file-zip-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-zip-o:before{content:\"\\f1c6\"}.fa.fa-file-audio-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-audio-o:before{content:\"\\f1c7\"}.fa.fa-file-sound-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-sound-o:before{content:\"\\f1c7\"}.fa.fa-file-video-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-video-o:before{content:\"\\f1c8\"}.fa.fa-file-movie-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-movie-o:before{content:\"\\f1c8\"}.fa.fa-file-code-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-file-code-o:before{content:\"\\f1c9\"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-bouy:before{content:\"\\f1cd\"}.fa.fa-life-buoy{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-buoy:before{content:\"\\f1cd\"}.fa.fa-life-saver{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-life-saver:before{content:\"\\f1cd\"}.fa.fa-support{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-support:before{content:\"\\f1cd\"}.fa.fa-circle-o-notch:before{content:\"\\f1ce\"}.fa.fa-ra,.fa.fa-rebel{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ra:before{content:\"\\f1d0\"}.fa.fa-resistance{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-resistance:before{content:\"\\f1d0\"}.fa.fa-empire,.fa.fa-ge{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-ge:before{content:\"\\f1d1\"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-y-combinator-square:before{content:\"\\f1d4\"}.fa.fa-yc-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-yc-square:before{content:\"\\f1d4\"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-wechat:before{content:\"\\f1d7\"}.fa.fa-send:before{content:\"\\f1d8\"}.fa.fa-paper-plane-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-paper-plane-o:before{content:\"\\f1d8\"}.fa.fa-send-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-send-o:before{content:\"\\f1d8\"}.fa.fa-circle-thin{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-circle-thin:before{content:\"\\f111\"}.fa.fa-header:before{content:\"\\f1dc\"}.fa.fa-sliders:before{content:\"\\f1de\"}.fa.fa-futbol-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-futbol-o:before{content:\"\\f1e3\"}.fa.fa-soccer-ball-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-soccer-ball-o:before{content:\"\\f1e3\"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-newspaper-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-newspaper-o:before{content:\"\\f1ea\"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-bell-slash-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-bell-slash-o:before{content:\"\\f1f6\"}.fa.fa-trash:before{content:\"\\f2ed\"}.fa.fa-copyright{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-eyedropper:before{content:\"\\f1fb\"}.fa.fa-area-chart:before{content:\"\\f1fe\"}.fa.fa-pie-chart:before{content:\"\\f200\"}.fa.fa-line-chart:before{content:\"\\f201\"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-cc{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-cc:before{content:\"\\f20a\"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:\"\\f20b\"}.fa.fa-meanpath{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-meanpath:before{content:\"\\f2b4\"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-diamond{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-diamond:before{content:\"\\f3a5\"}.fa.fa-intersex:before{content:\"\\f224\"}.fa.fa-facebook-official{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-facebook-official:before{content:\"\\f09a\"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-hotel:before{content:\"\\f236\"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-yc:before{content:\"\\f23b\"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:\"\\f240\"}.fa.fa-battery-3:before{content:\"\\f241\"}.fa.fa-battery-2:before{content:\"\\f242\"}.fa.fa-battery-1:before{content:\"\\f243\"}.fa.fa-battery-0:before{content:\"\\f244\"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-sticky-note-o:before{content:\"\\f249\"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hourglass-o:before{content:\"\\f254\"}.fa.fa-hourglass-1:before{content:\"\\f251\"}.fa.fa-hourglass-2:before{content:\"\\f252\"}.fa.fa-hourglass-3:before{content:\"\\f253\"}.fa.fa-hand-rock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-rock-o:before{content:\"\\f255\"}.fa.fa-hand-grab-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-grab-o:before{content:\"\\f255\"}.fa.fa-hand-paper-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-paper-o:before{content:\"\\f256\"}.fa.fa-hand-stop-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-stop-o:before{content:\"\\f256\"}.fa.fa-hand-scissors-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-scissors-o:before{content:\"\\f257\"}.fa.fa-hand-lizard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-lizard-o:before{content:\"\\f258\"}.fa.fa-hand-spock-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-spock-o:before{content:\"\\f259\"}.fa.fa-hand-pointer-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-pointer-o:before{content:\"\\f25a\"}.fa.fa-hand-peace-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-hand-peace-o:before{content:\"\\f25b\"}.fa.fa-registered{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-television:before{content:\"\\f26c\"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-calendar-plus-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-plus-o:before{content:\"\\f271\"}.fa.fa-calendar-minus-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-minus-o:before{content:\"\\f272\"}.fa.fa-calendar-times-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-times-o:before{content:\"\\f273\"}.fa.fa-calendar-check-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-calendar-check-o:before{content:\"\\f274\"}.fa.fa-map-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-map-o:before{content:\"\\f279\"}.fa.fa-commenting:before{content:\"\\f4ad\"}.fa.fa-commenting-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-commenting-o:before{content:\"\\f4ad\"}.fa.fa-houzz,.fa.fa-vimeo{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-vimeo:before{content:\"\\f27d\"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-credit-card-alt:before{content:\"\\f09d\"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-pause-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-pause-circle-o:before{content:\"\\f28b\"}.fa.fa-stop-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-stop-circle-o:before{content:\"\\f28d\"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-wheelchair-alt:before{content:\"\\f368\"}.fa.fa-question-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-question-circle-o:before{content:\"\\f059\"}.fa.fa-volume-control-phone:before{content:\"\\f2a0\"}.fa.fa-asl-interpreting:before{content:\"\\f2a3\"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:\"\\f2a4\"}.fa.fa-glide,.fa.fa-glide-g{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-signing:before{content:\"\\f2a7\"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus-official:before{content:\"\\f2b3\"}.fa.fa-google-plus-circle{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-google-plus-circle:before{content:\"\\f2b3\"}.fa.fa-fa,.fa.fa-font-awesome{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-fa:before{content:\"\\f2b4\"}.fa.fa-handshake-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-handshake-o:before{content:\"\\f2b5\"}.fa.fa-envelope-open-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-envelope-open-o:before{content:\"\\f2b6\"}.fa.fa-linode{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-address-book-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-address-book-o:before{content:\"\\f2b9\"}.fa.fa-vcard:before{content:\"\\f2bb\"}.fa.fa-address-card-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-address-card-o:before{content:\"\\f2bb\"}.fa.fa-vcard-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-vcard-o:before{content:\"\\f2bb\"}.fa.fa-user-circle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-user-circle-o:before{content:\"\\f2bd\"}.fa.fa-user-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-user-o:before{content:\"\\f007\"}.fa.fa-id-badge{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-drivers-license:before{content:\"\\f2c2\"}.fa.fa-id-card-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-id-card-o:before{content:\"\\f2c2\"}.fa.fa-drivers-license-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-drivers-license-o:before{content:\"\\f2c2\"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:\"\\f2c7\"}.fa.fa-thermometer-3:before{content:\"\\f2c8\"}.fa.fa-thermometer-2:before{content:\"\\f2c9\"}.fa.fa-thermometer-1:before{content:\"\\f2ca\"}.fa.fa-thermometer-0:before{content:\"\\f2cb\"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:\"\\f2cd\"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-rectangle:before{content:\"\\f410\"}.fa.fa-window-close-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-window-close-o:before{content:\"\\f410\"}.fa.fa-times-rectangle-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-times-rectangle-o:before{content:\"\\f410\"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:\"Font Awesome 5 Brands\";font-weight:400}.fa.fa-eercast:before{content:\"\\f2da\"}.fa.fa-snowflake-o{font-family:\"Font Awesome 5 Free\";font-weight:400}.fa.fa-snowflake-o:before{content:\"\\f2dc\"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:\"Font Awesome 5 Brands\";font-weight:400}","on");

INSERT IGNORE INTO `wp_options` VALUES 
("11834","_transient_fusion_subsets_preload_tags","<link rel=\"preload\" href=\"//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2\" as=\"font\" type=\"font/woff2\" crossorigin><link rel=\"preload\" href=\"//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2\" as=\"font\" type=\"font/woff2\" crossorigin><link rel=\"preload\" href=\"//dr.frex.digital/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>","on"),
("11835","_transient_fusion_custom_icons_preload_tags","<link rel=\"preload\" href=\"https://dr.frex.digital/wp-content/uploads/fusion-icons/modern-furniture-icon-set/fonts/Modern-Furniture.ttf?ljgift\" as=\"font\" type=\"font/ttf\" crossorigin><link rel=\"preload\" href=\"https://dr.frex.digital/wp-content/uploads/fusion-icons/accountant-pro-icon-set/fonts/Accountant-Pro.ttf?ym7fev\" as=\"font\" type=\"font/ttf\" crossorigin><link rel=\"preload\" href=\"https://dr.frex.digital/wp-content/uploads/fusion-icons/hosting-template-v3.0/fonts/hosting-template.ttf?hbmf06\" as=\"font\" type=\"font/ttf\" crossorigin><link rel=\"preload\" href=\"https://dr.frex.digital/wp-content/uploads/fusion-icons/Dance-v1.4/fonts/Dance.ttf?8aad4q\" as=\"font\" type=\"font/ttf\" crossorigin>","on"),
("11838","_transient_fusion_dynamic_js_readable","1","on"),
("11888","duplicate_page_options","a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}","auto"),
("13732","_transient_timeout_wpr_dynamic_lists","1783087878","off"),
("13733","_transient_wpr_dynamic_lists","O:8:\"stdClass\":19:{s:28:\"rucss_inline_atts_exclusions\";a:20:{i:0;s:26:\"rocket-lazyload-inline-css\";i:1;s:35:\"divi-style-parent-inline-inline-css\";i:2;s:14:\"gsf-custom-css\";i:3;s:29:\"extra-style-inline-inline-css\";i:4;s:30:\"woodmart-inline-css-inline-css\";i:5;s:30:\"woodmart_shortcodes-custom-css\";i:6;s:29:\"rs-plugin-settings-inline-css\";i:7;s:28:\"divi-style-inline-inline-css\";i:8;s:27:\"tcb-post-list-dynamic-style\";i:9;s:6:\"n2-ss-\";i:10;s:6:\"wpcf7-\";i:11;s:32:\"siteorigin-panels-layouts-footer\";i:12;s:28:\"xstore-inline-css-inline-css\";i:13;s:17:\"assets.reviews.io\";i:14;s:8:\"ezoicCSS\";i:15;s:4:\"stk-\";i:16;s:28:\"rocket-lazyrender-inline-css\";i:17;s:13:\"umsMapStyles_\";i:18;s:35:\"trx_addons-inline-styles-inline-css\";i:19;s:26:\"greyd-custom-styles-footer\";}s:31:\"rucss_inline_content_exclusions\";a:52:{i:0;s:14:\".wp-container-\";i:1;s:13:\".wp-elements-\";i:2;s:16:\"#wpv-expandable-\";i:3;s:16:\".custom-content-\";i:4;s:5:\"#thb-\";i:5;s:16:\".et_pb_text_dap_\";i:6;s:24:\"#gdlr-core-shape-divider\";i:7;s:8:\"#ultib3-\";i:8;s:10:\".uvc-wrap-\";i:9;s:26:\".jet-listing-dynamic-post-\";i:10;s:6:\".vcex_\";i:11;s:20:\".wprm-advanced-list-\";i:12;s:9:\".adsslot_\";i:13;s:7:\".jnews_\";i:14;s:21:\".cp-info-bar.content-\";i:15;s:16:\"#stockie-custom-\";i:16;s:13:\"#ohio-custom-\";i:17;s:5:\".uid-\";i:18;s:15:\"#wpfMainWrapper\";i:19;s:7:\"#penci_\";i:20;s:7:\"#penci-\";i:21;s:7:\".wpbs_s\";i:22;s:8:\"#apcore_\";i:23;s:8:\"#apress_\";i:24;s:6:\"#zolo_\";i:25;s:30:\".extended-products-grid#style-\";i:26;s:27:\".preloader#style-preloader-\";i:27;s:16:\".thegem-heading-\";i:28;s:15:\".thegem-button-\";i:29;s:15:\".thegem-custom-\";i:30;s:14:\".thegem-popup-\";i:31;s:9:\"#pattern-\";i:32;s:20:\"#thegem-video-frame-\";i:33;s:8:\"#thegem-\";i:34;s:14:\".qwery_inline_\";i:35;s:19:\".dcgd_submit_button\";i:36;s:8:\".irs-bar\";i:37;s:14:\".gallery-grid-\";i:38;s:13:\".cmplz-hidden\";i:39;s:13:\"#sqbquizouter\";i:40;s:19:\"#start_sqbquizouter\";i:41;s:13:\".flo-header--\";i:42;s:19:\".trx_addons_inline_\";i:43;s:21:\".wpp-cardview-compact\";i:44;s:13:\".e-loop-item-\";i:45;s:26:\".tiered-pricing-plain-text\";i:46;s:26:\".vc_cta3_content-container\";i:47;s:21:\".vc_btn-gradient-btn-\";i:48;s:21:\".et_pb_de_mach_title_\";i:49;s:21:\".et_pb_dmach_section_\";i:50;s:11:\"img#wpstats\";i:51;s:10:\".ti-widget\";}s:26:\"defer_js_inline_exclusions\";a:10:{i:0;s:16:\"DOMContentLoaded\";i:1;s:14:\"document.write\";i:2;s:22:\"window.lazyLoadOptions\";i:3;s:5:\"N.N2_\";i:4;s:18:\"rev_slider_wrapper\";i:5;s:18:\"FB3D_CLIENT_LOCALE\";i:6;s:19:\"ewww_webp_supported\";i:7;s:21:\"anr_captcha_field_div\";i:8;s:24:\"renderInvisibleReCaptcha\";i:9;s:17:\"bookingInProgress\";}s:28:\"defer_js_external_exclusions\";a:37:{i:0;s:15:\"gist.github.com\";i:1;s:22:\"content.jwplatform.com\";i:2;s:14:\"js.hsforms.net\";i:3;s:16:\"www.uplaunch.com\";i:4;s:20:\"google.com/recaptcha\";i:5;s:20:\"widget.reviews.co.uk\";i:6;s:29:\"verify.authorize.net/anetseal\";i:7;s:43:\"lib/admin/assets/lib/webfont/webfont.min.js\";i:8;s:18:\"app.mailerlite.com\";i:9;s:17:\"widget.reviews.io\";i:10;s:35:\"simplybook.(.*)/v2/widget/widget.js\";i:11;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:12;s:79:\"/wp-content/plugins/wpfront-notification-bar/js/wpfront-notification-bar(.*).js\";i:13;s:64:\"/wp-content/plugins/oxygen/component-framework/vendor/aos/aos.js\";i:14;s:70:\"/wp-content/plugins/ewww-image-optimizer/includes/check-webp(.min)?.js\";i:15;s:34:\"static.mailerlite.com/data/(.*).js\";i:16;s:37:\"cdn.voxpow.com/static/libs/v1/(.*).js\";i:17;s:40:\"cdn.voxpow.com/media/trackers/js/(.*).js\";i:18;s:15:\"use.typekit.net\";i:19;s:15:\"www.idxhome.com\";i:20;s:44:\"/wp-includes/js/dist/vendor/lodash(.min)?.js\";i:21;s:40:\"/wp-includes/js/dist/api-fetch(.min)?.js\";i:22;s:35:\"/wp-includes/js/dist/i18n(.min)?.js\";i:23;s:49:\"/wp-includes/js/dist/vendor/wp-polyfill(.min)?.js\";i:24;s:34:\"/wp-includes/js/dist/url(.min)?.js\";i:25;s:36:\"/wp-includes/js/dist/hooks(.min)?.js\";i:26;s:21:\"www.paypal.com/sdk/js\";i:27;s:18:\"js-eu1.hsforms.net\";i:28;s:18:\"yanovis.Voucher.js\";i:29;s:76:\"/carousel-upsells-and-related-product-for-woocommerce/assets/js/glide.min.js\";i:30;s:15:\"use.typekit.com\";i:31;s:39:\"/artale/modules/kirki/assets/webfont.js\";i:32;s:21:\"/api/scripts/lb_cs.js\";i:33;s:27:\"js.hscta.net/cta/current.js\";i:34;s:16:\"widget.refari.co\";i:35;s:20:\"player.vdocipher.com\";i:36;s:60:\"/wp-content/plugins/wp-rocket/assets/js/lcp-beacon(.min)?.js\";}s:19:\"delay_js_exclusions\";a:74:{i:0;s:10:\"nowprocket\";i:1;s:31:\"/wp-includes/js/wp-embed.min.js\";i:2;s:15:\"lazyLoadOptions\";i:3;s:13:\"lazyLoadThumb\";i:4;s:33:\"wp-rocket/assets/js/lazyload/(.*)\";i:5;s:30:\"et_core_page_resource_fallback\";i:6;s:25:\"window.\\$us === undefined\";i:7;s:8:\"js-extra\";i:8;s:20:\"fusionNavIsCollapsed\";i:9;s:26:\"/assets/js/smush-lazy-load\";i:10;s:13:\"eio_lazy_vars\";i:11;s:34:\"\\/lazysizes(\\.min|-pre|-post)?\\.js\";i:12;s:44:\"document\\.body\\.classList\\.remove\\(\"no-js\"\\)\";i:13;s:64:\"document\\.documentElement\\.className\\.replace\\( \'no-js\', \'js\' \\)\";i:14;s:17:\"et_animation_data\";i:15;s:16:\"wpforms_settings\";i:16;s:11:\"var nfForms\";i:17;s:14:\"//stats.wp.com\";i:18;s:9:\"_stq.push\";i:19;s:29:\"fluent_form_ff_form_instance_\";i:20;s:9:\"cpLoadCSS\";i:21;s:13:\"ninja_column_\";i:22;s:16:\"var rbs_gallery_\";i:23;s:12:\"var lepopup_\";i:24;s:28:\"var billing_additional_field\";i:25;s:10:\"var gtm4wp\";i:26;s:21:\"var dataLayer_content\";i:27;s:54:\"/ewww-image-optimizer/includes/load[_-]webp(\\.min)?.js\";i:28;s:52:\"/ewww-image-optimizer/includes/check-webp(\\.min)?.js\";i:29;s:19:\"ewww_webp_supported\";i:30;s:32:\"/dist/js/browser-redirect/app.js\";i:31;s:31:\"/perfmatters/js/lazyload.min.js\";i:32;s:16:\"lazyLoadInstance\";i:33;s:27:\"scripts.mediavine.com/tags/\";i:34;s:17:\"initCubePortfolio\";i:35;s:9:\"simpli.fi\";i:36;s:17:\"gforms_recaptcha_\";i:37;s:57:\"/jetpack-boost/vendor/automattic/jetpack-lazy-images/(.*)\";i:38;s:30:\"jetpack-lazy-images-js-enabled\";i:39;s:26:\"jetpack-boost-critical-css\";i:40;s:24:\"wpformsRecaptchaCallback\";i:41;s:20:\"booking-suedtirol-js\";i:42;s:26:\"wpcp_css_disable_selection\";i:43;s:41:\"/gravityforms/js/conditional_logic.min.js\";i:44;s:34:\"statcounter.com/counter/counter.js\";i:45;s:14:\"var sc_project\";i:46;s:59:\"/jetpack/jetpack_vendor/automattic/jetpack-lazy-images/(.*)\";i:47;s:55:\"/themify-builder/themify/js/modules/fallback(\\.min)?.js\";i:48;s:16:\"handlePixMessage\";i:49;s:16:\"var corner_video\";i:50;s:26:\"cdn.pixfuture.com/hb_v2.js\";i:51;s:25:\"cdn.pixfuture.com/pbix.js\";i:52;s:43:\"served-by.pixfuture.com/www/delivery/ads.js\";i:53;s:64:\"served-by.pixfuture.com/www/delivery/headerbid_sticky_refresh.js\";i:54;s:35:\"serv-vdo.pixfuture.com/vpaid/ads.js\";i:55;s:14:\"wprRemoveCPCSS\";i:56;s:19:\"window.jdgmSettings\";i:57;s:67:\"/photonic/include/js/front-end/nomodule/photonic-baguettebox.min.js\";i:58;s:52:\"/photonic/include/ext/baguettebox/baguettebox.min.js\";i:59;s:27:\"window.wsf_form_json_config\";i:60;s:20:\"et_link_options_data\";i:61;s:19:\"FuseboxPlayerAPIKey\";i:62;s:27:\"js.hscta.net/cta/current.js\";i:63;s:14:\"hbspt.cta.load\";i:64;s:27:\"consent.cookiebot.com/uc.js\";i:65;s:53:\"/woofilter-pro/woofilterpro/js/ion.rangeSlider.min.js\";i:66;s:21:\"barra.r7.com/barra.js\";i:67;s:26:\"rocket_css_lazyload_launch\";i:68;s:16:\"#wpr-lazyload-bg\";i:69;s:60:\"/wp-content/plugins/wp-rocket/assets/js/lcp-beacon(.min)?.js\";i:70;s:15:\"rocket_lcp_data\";i:71;s:18:\"rocket_beacon_data\";i:72;s:60:\"/wp-content/plugins/wp-rocket/assets/js/wpr-beacon(.min)?.js\";i:73;s:24:\"elm.style.display=\"none\"\";}s:18:\"js_minify_external\";a:132:{i:0;s:8:\"html5.js\";i:1;s:11:\"show_ads.js\";i:2;s:14:\"histats.com/js\";i:3;s:21:\"ws.amazon.com/widgets\";i:4;s:5:\"/ads/\";i:5;s:17:\"intensedebate.com\";i:6;s:20:\"scripts.chitika.net/\";i:7;s:12:\"jotform.com/\";i:8;s:15:\"gist.github.com\";i:9;s:16:\"forms.aweber.com\";i:10;s:21:\"video.unrulymedia.com\";i:11;s:12:\"stats.wp.com\";i:12;s:19:\"stats.wordpress.com\";i:13;s:23:\"widget.rafflecopter.com\";i:14;s:29:\"widget-prime.rafflecopter.com\";i:15;s:23:\"releases.flowplayer.org\";i:16;s:13:\"c.ad6media.fr\";i:17;s:19:\"cdn.stickyadstv.com\";i:18;s:12:\"www.smava.de\";i:19;s:20:\"contextual.media.net\";i:20;s:19:\"app.getresponse.com\";i:21;s:24:\"adserver.reklamstore.com\";i:22;s:9:\"s0.wp.com\";i:23;s:16:\"wprp.zemanta.com\";i:24;s:21:\"files.bannersnack.com\";i:25;s:22:\"smarticon.geotrust.com\";i:26;s:11:\"js.gleam.io\";i:27;s:25:\"ir-na.amazon-adsystem.com\";i:28;s:19:\"web.ventunotech.com\";i:29;s:20:\"verify.authorize.net\";i:30;s:21:\"ads.themoneytizer.com\";i:31;s:20:\"embed.finanzcheck.de\";i:32;s:20:\"imagesrv.adition.com\";i:33;s:15:\"js.juicyads.com\";i:34;s:18:\"form.jotformeu.com\";i:35;s:15:\"speakerdeck.com\";i:36;s:22:\"content.jwplatform.com\";i:37;s:24:\"ads.investingchannel.com\";i:38;s:13:\"app.ecwid.com\";i:39;s:20:\"www.industriejobs.de\";i:40;s:14:\"s.gravatar.com\";i:41;s:21:\"googlesyndication.com\";i:42;s:13:\"a.optmstr.com\";i:43;s:14:\"a.optmnstr.com\";i:44;s:13:\"a.opmnstr.com\";i:45;s:12:\"adthrive.com\";i:46;s:13:\"mediavine.com\";i:47;s:14:\"js.hsforms.net\";i:48;s:20:\"googleadservices.com\";i:49;s:16:\"f.convertkit.com\";i:50;s:16:\"recaptcha/api.js\";i:51;s:12:\"mailmunch.co\";i:52;s:20:\"apps.shareaholic.com\";i:53;s:28:\"dsms0mj1bbhn4.cloudfront.net\";i:54;s:12:\"nutrifox.com\";i:55;s:13:\"code.tidio.co\";i:56;s:16:\"www.uplaunch.com\";i:57;s:24:\"widget.reviewability.com\";i:58;s:36:\"embed-cdn.gettyimages.com/widgets.js\";i:59;s:18:\"app.mailerlite.com\";i:60;s:7:\"ck.page\";i:61;s:28:\"cdn.jsdelivr.net/gh/AmauriC/\";i:62;s:39:\"static.klaviyo.com/onsite/js/klaviyo.js\";i:63;s:32:\"a.omappapi.com/app/js/api.min.js\";i:64;s:19:\"static.zdassets.com\";i:65;s:58:\"feedbackcompany.com/widgets/feedback-company-widget.min.js\";i:66;s:17:\"widget.gleamjs.io\";i:67;s:14:\"phonewagon.com\";i:68;s:35:\"simplybook.asia/v2/widget/widget.js\";i:69;s:33:\"simplybook.it/v2/widget/widget.js\";i:70;s:33:\"simplybook.me/v2/widget/widget.js\";i:71;s:48:\"static.botsrv.com/website/js/widget2.36cf1446.js\";i:72;s:27:\"static.mailerlite.com/data/\";i:73;s:14:\"cdn.voxpow.com\";i:74;s:16:\"loader.knack.com\";i:75;s:46:\"embed.lpcontent.net/leadboxes/current/embed.js\";i:76;s:52:\"cc.cdn.civiccomputing.com/9/cookieControl-9.x.min.js\";i:77;s:21:\"cse.google.com/cse.js\";i:78;s:19:\"kit.fontawesome.com\";i:79;s:51:\"cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js\";i:80;s:46:\"static.leadpages.net/leadbars/current/embed.js\";i:81;s:27:\"booqable.com/v2/booqable.js\";i:82;s:18:\"googleoptimize.com\";i:83;s:52:\"cdna.hubpeople.com/js/widget_standalone_two_modes.js\";i:84;s:18:\"s3.tradingview.com\";i:85;s:26:\"www.vbt.io/ext/vbtforms.js\";i:86;s:16:\"cdn.callrail.com\";i:87;s:40:\"documentcloud.adobe.com/view-sdk/main.js\";i:88;s:21:\"static.cleverpush.com\";i:89;s:15:\"js.afterpay.com\";i:90;s:33:\"cdn.enable.co.il/licenses/enable-\";i:91;s:21:\"hcaptcha.com/1/api.js\";i:92;s:46:\"voucher.getavo.it/public/js/yanovis.Voucher.js\";i:93;s:18:\"js-eu1.hsforms.net\";i:94;s:34:\"statcounter.com/counter/counter.js\";i:95;s:11:\"snapppt.com\";i:96;s:15:\"use.typekit.com\";i:97;s:35:\"secure.gravatar.com/js/gprofiles.js\";i:98;s:32:\"cdn.jsdelivr.net/npm/hockeystack\";i:99;s:22:\"widget.prod.faslet.net\";i:100;s:31:\"ga.getresponse.com/script/ga.js\";i:101;s:16:\"cognitoforms.com\";i:102;s:15:\"usercentrics.eu\";i:103;s:16:\"cdn.amcharts.com\";i:104;s:5:\"umami\";i:105;s:20:\"cdn.popt.in/pixel.js\";i:106;s:9:\"m2d.m2.ai\";i:107;s:11:\"pubguru.net\";i:108;s:13:\"trustindex.io\";i:109;s:37:\"cdnjs.cloudflare.com/ajax/libs/prism/\";i:110;s:25:\"podigee-podcast-player.js\";i:111;s:24:\"tarteaucitron.io/load.js\";i:112;s:29:\"osm.klarnaservices.com/lib.js\";i:113;s:25:\"mein.clickskeks.at/app.js\";i:114;s:21:\"barra.r7.com/barra.js\";i:115;s:16:\"widget.refari.co\";i:116;s:20:\"widget.reviews.co.uk\";i:117;s:20:\"player.vdocipher.com\";i:118;s:26:\"www.instagram.com/embed.js\";i:119;s:13:\"smartframe.io\";i:120;s:36:\"challenges.cloudflare.com/turnstile/\";i:121;s:20:\"script.roboassist.ai\";i:122;s:16:\"cdn.hu-manity.co\";i:123;s:56:\"daumcdn.net/mapjsapi/bundle/postcode/prod/postcode.v2.js\";i:124;s:21:\"consent.cookiebot.com\";i:125;s:23:\"umstats.tools.coolw.xyz\";i:126;s:10:\"powerad.ai\";i:127;s:19:\"leadconnectorhq.com\";i:128;s:14:\"buzzsprout.com\";i:129;s:27:\"embed.reddit.com/widgets.js\";i:130;s:16:\"onfastspring.com\";i:131;s:30:\"widget.superchat.de/snippet.js\";}s:21:\"js_move_after_combine\";a:106:{i:0;s:15:\"map_fusion_map_\";i:1;s:13:\"ec:addProduct\";i:2;s:16:\"ec:addImpression\";i:3;s:30:\"clear_better_facebook_comments\";i:4;s:29:\"vc-row-destroy-equal-heights-\";i:5;s:14:\"dfd-icon-list-\";i:6;s:12:\"SFM_template\";i:7;s:14:\"WLTChangeState\";i:8;s:9:\"wlt_star_\";i:9;s:17:\"wlt_pop_distance_\";i:10;s:14:\"smart_list_tip\";i:11;s:12:\"gd-wgt-pagi-\";i:12;s:11:\"data-rf-id=\";i:13;s:7:\"tvc_po=\";i:14;s:10:\"scrapeazon\";i:15;s:10:\"startclock\";i:16;s:22:\"it_logo_field_owl-box_\";i:17;s:15:\"td_live_css_uid\";i:18;s:17:\"wpvl_paramReplace\";i:19;s:11:\"tdAjaxCount\";i:20;s:9:\"mec_skin_\";i:21;s:4:\"_wca\";i:22;s:8:\"_taboola\";i:23;s:17:\"fbq(\'trackCustom\'\";i:24;s:11:\"fbq(\'track\'\";i:25;s:10:\"data.token\";i:26;s:7:\"sharrre\";i:27;s:19:\"dfads_ajax_load_ads\";i:28;s:13:\"tie_postviews\";i:29;s:10:\"wmp_update\";i:30;s:18:\"h5ab-print-article\";i:31;s:17:\"gform_ajax_frame_\";i:32;s:17:\"gform_post_render\";i:33;s:14:\"mts_view_count\";i:34;s:15:\"act_css_tooltip\";i:35;s:10:\"window.SLB\";i:36;s:14:\"wpt_view_count\";i:37;s:11:\"var dateNow\";i:38;s:16:\"gallery_product_\";i:39;s:21:\".flo-block-slideshow-\";i:40;s:17:\"data=\'api-key=ct-\";i:41;s:20:\"ip_common_function()\";i:42;s:31:\"(\"style#gsf-custom-css\").append\";i:43;s:22:\"a3revWCDynamicGallery_\";i:44;s:24:\"#owl-carousel-instagram-\";i:45;s:19:\"window.FlowFlowOpts\";i:46;s:16:\"jQuery(\'.td_uid_\";i:47;s:16:\"jQuery(\".slider-\";i:48;s:18:\"#dfd-vcard-widget-\";i:49;s:21:\"#sf-instagram-widget-\";i:50;s:18:\".woocommerce-tabs-\";i:51;s:16:\"penci_megamenu__\";i:52;s:18:\"vc_prepareHoverBox\";i:53;s:16:\"wp-temp-form-div\";i:54;s:25:\"_wswebinarsystem_already_\";i:55;s:23:\"#views-extra-css\").text\";i:56;s:20:\"fusetag.setTargeting\";i:57;s:20:\"hit.uptrendsdata.com\";i:58;s:27:\"callback:window.renderBadge\";i:59;s:29:\"test_run_nf_conditional_logic\";i:60;s:9:\"cb_nombre\";i:61;s:12:\"$(\'.fl-node-\";i:62;s:24:\"function($){google_maps_\";i:63;s:14:\"$(\"#myCarousel\";i:64;s:18:\"et_animation_data=\";i:65;s:13:\"current_url=\"\";i:66;s:44:\"CustomEvent.prototype=window.Event.prototype\";i:67;s:26:\"electro-wc-product-gallery\";i:68;s:14:\"woof_is_mobile\";i:69;s:20:\"jQuery(\'.videonextup\";i:70;s:10:\"wpp_params\";i:71;s:24:\"us.templateDirectoryUri=\";i:72;s:17:\".fat-gallery-item\";i:73;s:10:\".ratingbox\";i:74;s:33:\"user_rating.prototype.eraseCookie\";i:75;s:23:\"test_run_nf_conditional\";i:76;s:26:\"dpsp-networks-btns-wrapper\";i:77;s:19:\"pa_woo_product_info\";i:78;s:35:\"sharing_enabled_on_post_via_metabox\";i:79;s:22:\"#product-search-field-\";i:80;s:19:\"GOTMLS_login_offset\";i:81;s:40:\"berocket_aapf_time_to_fix_products_style\";i:82;s:27:\"window.vc_googleMapsPointer\";i:83;s:8:\"sinceID_\";i:84;s:31:\"#ut-background-video-ut-section\";i:85;s:26:\"+window.comment_tab_width+\";i:86;s:19:\"dfd-button-hover-in\";i:87;s:21:\"wpseo-address-wrapper\";i:88;s:24:\"platform.stumbleupon.com\";i:89;s:27:\"#woo_pp_ec_button_mini_cart\";i:90;s:14:\"#supercarousel\";i:91;s:10:\"blockClass\";i:92;s:11:\"tdbMenuItem\";i:93;s:13:\"tdbSearchItem\";i:94;s:17:\"best_seller_badge\";i:95;s:24:\"jQuery(\'#product-top-bar\";i:96;s:8:\"fb_desc-\";i:97;s:21:\"FC_regenerate_captcha\";i:98;s:34:\"wp_post_blocks_vars.listed_posts=[\";i:99;s:12:\"captcha-hash\";i:100;s:9:\"mapdata={\";i:101;s:11:\".ywpc-char-\";i:102;s:17:\").countdowntimer(\";i:103;s:16:\"jQuery(\"#td_uid_\";i:104;s:14:\"find(\'#td_uid_\";i:105;s:22:\"variation_estimate_msg\";}s:18:\"js_excluded_inline\";a:315:{i:0;s:14:\"document.write\";i:1;s:9:\"google_ad\";i:2;s:9:\"edToolbar\";i:3;s:4:\"gtag\";i:4;s:9:\"_gaq.push\";i:5;s:5:\"_gaLt\";i:6;s:21:\"GoogleAnalyticsObject\";i:7;s:17:\"syntaxhighlighter\";i:8;s:11:\"adsbygoogle\";i:9;s:7:\"ci_cap_\";i:10;s:4:\"_stq\";i:11;s:5:\"nonce\";i:12;s:7:\"post_id\";i:13;s:8:\"LogHuman\";i:14;s:15:\"idcomments_acct\";i:15;s:9:\"ch_client\";i:16;s:11:\"sc_online_t\";i:17;s:4:\"_stq\";i:18;s:17:\"bannersnack_embed\";i:19;s:15:\"vtn_player_type\";i:20;s:13:\"ven_video_key\";i:21;s:15:\"ANS_customer_id\";i:22;s:7:\"tdBlock\";i:23;s:12:\"tdLocalCache\";i:24;s:11:\"wpRestNonce\";i:25;s:6:\"\"url\":\";i:26;s:15:\"lazyLoadOptions\";i:27;s:8:\"adthrive\";i:28;s:7:\"loadCSS\";i:29;s:17:\"google_tag_params\";i:30;s:13:\"clicky_custom\";i:31;s:15:\"clicky_site_ids\";i:32;s:14:\"NSLPopupCenter\";i:33;s:4:\"_paq\";i:34;s:3:\"gtm\";i:35;s:9:\"dataLayer\";i:36;s:13:\"RecaptchaLoad\";i:37;s:20:\"WPCOM_sharing_counts\";i:38;s:22:\"jetpack_remote_comment\";i:39;s:15:\"subscribe-field\";i:40;s:9:\"contextly\";i:41;s:7:\"_mmunch\";i:42;s:14:\"gt_request_uri\";i:43;s:12:\"doGTranslate\";i:44;s:8:\"docTitle\";i:45;s:17:\"bs_ajax_paginate_\";i:46;s:20:\"bs_deferred_loading_\";i:47;s:22:\"theChampRedirectionUrl\";i:48;s:20:\"theChampFBCommentUrl\";i:49;s:23:\"theChampTwitterRedirect\";i:50;s:25:\"theChampRegRedirectionUrl\";i:51;s:14:\"ESSB_CACHE_URL\";i:52;s:30:\"oneall_social_login_providers_\";i:53;s:22:\"betterads_screen_width\";i:54;s:40:\"woocommerce_wishlist_add_to_wishlist_url\";i:55;s:21:\"arf_conditional_logic\";i:56;s:27:\"heateorSsHorSharingShortUrl\";i:57;s:8:\"TL_Const\";i:58;s:23:\"bimber_front_microshare\";i:59;s:17:\"setAttribute(\"id\"\";i:60;s:18:\"setAttribute( \"id\"\";i:61;s:14:\"TribeEventsPro\";i:62;s:14:\"peepsotimedata\";i:63;s:9:\"wphc_data\";i:64;s:10:\"hc_rand_id\";i:65;s:7:\"RBL_ADD\";i:66;s:18:\"AfsAnalyticsObject\";i:67;s:18:\"_thriveCurrentPost\";i:68;s:13:\"esc_login_url\";i:69;s:18:\"fwduvpMainPlaylist\";i:70;s:26:\"Bibblio.initRelatedContent\";i:71;s:9:\"showUFC()\";i:72;s:8:\"#iphorm-\";i:73;s:7:\"#fancy-\";i:74;s:13:\"ult-carousel-\";i:75;s:17:\"theChampLJAuthUrl\";i:76;s:6:\"f._fbq\";i:77;s:10:\"Insticator\";i:78;s:15:\"w2dc_js_objects\";i:79;s:11:\"cherry_ajax\";i:80;s:9:\"ad_block_\";i:81;s:23:\"elementorFrontendConfig\";i:82;s:5:\"zeen_\";i:83;s:16:\"disqusIdentifier\";i:84;s:14:\"currentAjaxUrl\";i:85;s:27:\"geodir_event_call_calendar_\";i:86;s:8:\"atatags-\";i:87;s:18:\"hbspt.forms.create\";i:88;s:19:\"function(c,h,i,m,p)\";i:89;s:11:\"dataTable({\";i:90;s:12:\"rankMath = {\";i:91;s:10:\"_atrk_opts\";i:92;s:16:\"quicklinkOptions\";i:93;s:11:\"ct_checkjs_\";i:94;s:18:\"WP_Statistics_http\";i:95;s:12:\"penci_block_\";i:96;s:15:\"omapi_localized\";i:97;s:10:\"omapi_data\";i:98;s:15:\"OptinMonsterApp\";i:99;s:9:\"tminusnow\";i:100;s:7:\"nfForms\";i:101;s:18:\"galleries.gallery_\";i:102;s:14:\"wcj_evt.prodID\";i:103;s:19:\"advads_tracking_ads\";i:104;s:28:\"advadsGATracking.postContext\";i:105;s:14:\"woopack_config\";i:106;s:14:\"ulp_content_id\";i:107;s:26:\"wp-cumulus/tagcloud.swf?r=\";i:108;s:24:\"ctSetCookie(\'ct_checkjs\'\";i:109;s:20:\"woof_really_curr_tax\";i:110;s:17:\"uLogin.customInit\";i:111;s:32:\"i18n_no_matching_variations_text\";i:112;s:22:\"alsp_map_markers_attrs\";i:113;s:13:\"var inc_opt =\";i:114;s:13:\"iworks_upprev\";i:115;s:19:\"yith_wcevti_tickets\";i:116;s:27:\"window.metrilo.ensure_cbuid\";i:117;s:13:\"metrilo.event\";i:118;s:19:\"wordpress_page_root\";i:119;s:9:\"wcct_info\";i:120;s:20:\"Springbot.product_id\";i:121;s:17:\"pysWooProductData\";i:122;s:11:\"dfd-heading\";i:123;s:8:\"owl=$(\"#\";i:124;s:14:\"penci_megamenu\";i:125;s:12:\"fts_security\";i:126;s:19:\"algoliaAutocomplete\";i:127;s:22:\"avia_framework_globals\";i:128;s:23:\"tabs.easyResponsiveTabs\";i:129;s:20:\"searchlocationHeader\";i:130;s:16:\"yithautocomplete\";i:131;s:19:\"data-parallax-speed\";i:132;s:14:\"currency_data=\";i:133;s:11:\"cedexisData\";i:134;s:23:\"function reenableButton\";i:135;s:12:\"#wpnbio-show\";i:136;s:29:\"e.Newsletter2GoTrackingObject\";i:137;s:15:\"var categories_\";i:138;s:14:\"\"+nRemaining+\"\";i:139;s:20:\"cartsguru_cart_token\";i:140;s:21:\"after_share_easyoptin\";i:141;s:18:\"location_data.push\";i:142;s:30:\"thirstyFunctions.isThirstyLink\";i:143;s:23:\"styles: \' #custom-menu-\";i:144;s:20:\"function svc_center_\";i:145;s:25:\"#svc_carousel2_container_\";i:146;s:11:\"advads.move\";i:147;s:9:\"elementid\";i:148;s:14:\"advads_has_ads\";i:149;s:14:\"wpseo_map_init\";i:150;s:20:\"mdf_current_page_url\";i:151;s:12:\"tptn_tracker\";i:152;s:20:\"dpsp_pin_button_data\";i:153;s:27:\"searchwp_live_search_params\";i:154;s:10:\"wpp_params\";i:155;s:21:\"top.location,thispage\";i:156;s:18:\"selection+pagelink\";i:157;s:20:\"ic_window_resolution\";i:158;s:11:\"PHP.wp_p_id\";i:159;s:29:\"ShopifyBuy.UI.onReady(client)\";i:160;s:16:\"orig_request_uri\";i:161;s:16:\"gie.widgets.load\";i:162;s:11:\"Adman.Flash\";i:163;s:11:\"PHP.wp_p_id\";i:164;s:26:\"window.broadstreetKeywords\";i:165;s:15:\"var productId =\";i:166;s:16:\"var flatsomeVars\";i:167;s:21:\"wc_product_block_data\";i:168;s:21:\"static.mailerlite.com\";i:169;s:10:\"amzn_assoc\";i:170;s:22:\"_bs_getParameterByName\";i:171;s:9:\"_stq.push\";i:172;s:9:\"h._remove\";i:173;s:16:\"var FlowFlowOpts\";i:174;s:14:\"var WCPFData =\";i:175;s:14:\"var _beeketing\";i:176;s:16:\"var _statcounter\";i:177;s:13:\"var actions =\";i:178;s:15:\"var current_url\";i:179;s:15:\"var object_name\";i:180;s:19:\"var the_ajax_script\";i:181;s:28:\"var wc_cart_fragments_params\";i:182;s:22:\"var woocommerce_params\";i:183;s:16:\"var wpml_cookies\";i:184;s:21:\"wc_add_to_cart_params\";i:185;s:26:\"window.broadstreetKeywords\";i:186;s:35:\"window.wc_ga_pro.available_gateways\";i:187;s:12:\"xa.prototype\";i:188;s:21:\"HOUZEZ_ajaxcalls_vars\";i:189;s:17:\"w2dc_maps_objects\";i:190;s:26:\"w2dc_controller_args_array\";i:191;s:22:\"w2dc_map_markers_attrs\";i:192;s:9:\"YT.Player\";i:193;s:9:\"WPFC.data\";i:194;s:23:\"function current_video_\";i:195;s:12:\"var videodiv\";i:196;s:22:\"var slider_wppasrotate\";i:197;s:8:\"wppas_ga\";i:198;s:14:\"var blockClass\";i:199;s:13:\"tarteaucitron\";i:200;s:21:\"pw_brand_product_list\";i:201;s:15:\"tminusCountDown\";i:202;s:23:\"pysWooSelectContentData\";i:203;s:13:\"wpvq_ans89733\";i:204;s:12:\"_isp_version\";i:205;s:16:\"price_range_data\";i:206;s:29:\"window.FeedbackCompanyWidgets\";i:207;s:22:\"woocs_current_currency\";i:208;s:30:\"woo_variation_swatches_options\";i:209;s:31:\"woocommerce_price_slider_params\";i:210;s:12:\"scriptParams\";i:211;s:19:\"form-adv-pagination\";i:212;s:23:\"borlabsCookiePrioritize\";i:213;s:21:\"urls_wpwidgetpolylang\";i:214;s:14:\"quickViewNonce\";i:215;s:22:\"frontendscripts_params\";i:216;s:21:\"nj-facebook-messenger\";i:217;s:20:\"var fb_mess_position\";i:218;s:36:\"init_particles_row_background_script\";i:219;s:15:\"setREVStartSize\";i:220;s:7:\"fl-node\";i:221;s:11:\"PPAccordion\";i:222;s:10:\"soliloquy_\";i:223;s:25:\"wprevpublicjs_script_vars\";i:224;s:19:\"DTGS_NONCE_FRONTEND\";i:225;s:17:\"et_animation_data\";i:226;s:17:\"archives-dropdown\";i:227;s:15:\"loftloaderCache\";i:228;s:17:\"SmartSliderSimple\";i:229;s:14:\"var nectarLove\";i:230;s:10:\"var incOpt\";i:231;s:33:\"RocketBrowserCompatibilityChecker\";i:232;s:24:\"RocketPreloadLinksConfig\";i:233;s:18:\"placementVersionId\";i:234;s:11:\"var useEdit\";i:235;s:23:\"var DTGS_NONCE_FRONTEND\";i:236;s:8:\"n2jQuery\";i:237;s:26:\"et_core_api_spam_recaptcha\";i:238;s:6:\"cnArgs\";i:239;s:14:\"__CF$cv$params\";i:240;s:17:\"trustbox_settings\";i:241;s:5:\"aepro\";i:242;s:10:\"cdn.jst.ai\";i:243;s:25:\"w2dc_fields_in_categories\";i:244;s:21:\"jetMenuPublicSettings\";i:245;s:17:\"JetTricksSettings\";i:246;s:10:\"aepc_pixel\";i:247;s:20:\"avadaWooCommerceVars\";i:248;s:7:\"var isb\";i:249;s:9:\"fcaPcPost\";i:250;s:10:\"csrf_token\";i:251;s:24:\"icwp_wpsf_vars_lpantibot\";i:252;s:11:\"wpvViewHead\";i:253;s:16:\"ed_school_plugin\";i:254;s:9:\"aps_comp_\";i:255;s:11:\"guaven_woos\";i:256;s:16:\"__lm_redirect_to\";i:257;s:17:\"__wpdm_view_count\";i:258;s:23:\"bookacti.booking_system\";i:259;s:10:\"nfFrontEnd\";i:260;s:20:\"view_quote_cart_link\";i:261;s:19:\"__eae_decode_emails\";i:262;s:20:\"divioverlays_ajaxurl\";i:263;s:10:\"var _EPYT_\";i:264;s:13:\"#ins-heading-\";i:265;s:12:\"#ins-button-\";i:266;s:20:\"tve_frontend_options\";i:267;s:8:\"lb24.src\";i:268;s:24:\"amazon_Login_accessToken\";i:269;s:21:\"porto_infinite_scroll\";i:270;s:14:\".adace-loader-\";i:271;s:11:\"adace_load_\";i:272;s:41:\"tagGroupsAccordiontaggroupscloudaccordion\";i:273;s:31:\"tagGroupsTabstaggroupscloudtabs\";i:274;s:16:\"jrRelatedWidgets\";i:275;s:14:\"UNCODE.initRow\";i:276;s:28:\"amp_mobile_redirect_disabled\";i:277;s:11:\"wpgdprcData\";i:278;s:28:\"wpml_browser_redirect_params\";i:279;s:13:\"swPreRegister\";i:280;s:15:\"kboard_settings\";i:281;s:23:\"ct_ultimate_gdpr_cookie\";i:282;s:23:\"wcpv_registration_local\";i:283;s:15:\"www.idxhome.com\";i:284;s:24:\"arf_footer_cl_logic_call\";i:285;s:23:\"reload_attached_coupons\";i:286;s:8:\"var ftpp\";i:287;s:15:\"forminatorFront\";i:288;s:6:\"_EPYT_\";i:289;s:23:\"edd_free_downloads_vars\";i:290;s:15:\"edd_stripe_vars\";i:291;s:7:\"var ASP\";i:292;s:18:\"ecwidOriginalTitle\";i:293;s:17:\"defaultCategoryId\";i:294;s:25:\"translation-revision-date\";i:295;s:20:\"google_conversion_id\";i:296;s:5:\"hbspt\";i:297;s:21:\"var marker_locations_\";i:298;s:13:\"var AdmMyAjax\";i:299;s:13:\"ifso_page_url\";i:300;s:21:\"referrer_for_pageload\";i:301;s:38:\"WoocommerceWidget/woocommerceWidget.js\";i:302;s:19:\"var ht_ctc_chat_var\";i:303;s:6:\"spuvar\";i:304;s:16:\"var wpilFrontend\";i:305;s:24:\"urls_polylangREPLACETOID\";i:306;s:34:\"e.setAttribute(\'unselectable\',on);\";i:307;s:16:\"try{Typekit.load\";i:308;s:9:\"iMapsData\";i:309;s:24:\"var wpforms_user_journey\";i:310;s:24:\"rocket_lazyload_css_data\";i:311;s:24:\"wcStoreApiNonceTimestamp\";i:312;s:21:\"createNonceMiddleware\";i:313;s:8:\"pbidHash\";i:314;s:24:\"wcBlocksMiddlewareConfig\";}s:24:\"cache_ignored_parameters\";a:74:{i:0;s:10:\"utm_source\";i:1;s:10:\"utm_medium\";i:2;s:12:\"utm_campaign\";i:3;s:9:\"utm_expid\";i:4;s:8:\"utm_term\";i:5;s:11:\"utm_content\";i:6;s:6:\"utm_id\";i:7;s:19:\"utm_source_platform\";i:8;s:19:\"utm_creative_format\";i:9;s:20:\"utm_marketing_tactic\";i:10;s:10:\"mtm_source\";i:11;s:10:\"mtm_medium\";i:12;s:12:\"mtm_campaign\";i:13;s:11:\"mtm_keyword\";i:14;s:7:\"mtm_cid\";i:15;s:11:\"mtm_content\";i:16;s:9:\"pk_source\";i:17;s:9:\"pk_medium\";i:18;s:11:\"pk_campaign\";i:19;s:10:\"pk_keyword\";i:20;s:6:\"pk_cid\";i:21;s:10:\"pk_content\";i:22;s:13:\"fb_action_ids\";i:23;s:15:\"fb_action_types\";i:24;s:9:\"fb_source\";i:25;s:6:\"fbclid\";i:26;s:10:\"campaignid\";i:27;s:9:\"adgroupid\";i:28;s:4:\"adid\";i:29;s:5:\"gclid\";i:30;s:12:\"age-verified\";i:31;s:12:\"ao_noptimize\";i:32;s:4:\"usqp\";i:33;s:11:\"cn-reloaded\";i:34;s:3:\"_ga\";i:35;s:5:\"sscid\";i:36;s:6:\"gclsrc\";i:37;s:3:\"_gl\";i:38;s:6:\"mc_cid\";i:39;s:6:\"mc_eid\";i:40;s:8:\"_bta_tid\";i:41;s:6:\"_bta_c\";i:42;s:11:\"trk_contact\";i:43;s:7:\"trk_msg\";i:44;s:10:\"trk_module\";i:45;s:7:\"trk_sid\";i:46;s:5:\"gdfms\";i:47;s:6:\"gdftrk\";i:48;s:5:\"gdffi\";i:49;s:3:\"_ke\";i:50;s:3:\"_kx\";i:51;s:21:\"redirect_log_mongo_id\";i:52;s:17:\"redirect_mongo_id\";i:53;s:15:\"sb_referer_host\";i:54;s:5:\"mkwid\";i:55;s:5:\"pcrid\";i:56;s:5:\"ef_id\";i:57;s:7:\"s_kwcid\";i:58;s:7:\"msclkid\";i:59;s:4:\"dm_i\";i:60;s:4:\"epik\";i:61;s:2:\"pp\";i:62;s:6:\"gbraid\";i:63;s:6:\"wbraid\";i:64;s:8:\"ssp_iabi\";i:65;s:8:\"ssp_iaba\";i:66;s:3:\"gad\";i:67;s:6:\"vgo_ee\";i:68;s:10:\"gad_source\";i:69;s:14:\"gad_campaignid\";i:70;s:12:\"onlywprocket\";i:71;s:7:\"srsltid\";i:72;s:5:\"gadid\";i:73;s:6:\"fbadid\";}s:18:\"preload_exclusions\";a:5:{i:0;s:9:\"void\\(.*;\";i:1;s:17:\"(.*)__trashed(.*)\";i:2;s:14:\"/jet-menu/(.*)\";i:3;s:15:\"/jet-popup/(.*)\";i:4;s:24:\"(.*)printButton.href(.*)\";}s:16:\"exclude_js_files\";a:16:{i:0;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:1;s:76:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/html2canvas.min.js\";i:2;s:68:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/pdf.min.js\";i:3;s:70:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/three.min.js\";i:4;s:77:\"/interactive-3d-flipbook-powered-physics-engine/assets/js/3d-flip-book.min.js\";i:5;s:39:\"/google-site-kit/dist/assets/js/(.*).js\";i:6;s:45:\"/wp-live-chat-support/public/js/callus(.*).js\";i:7;s:41:\"/borlabs-cookie/assets/javascript/(.*).js\";i:8;s:60:\"/wp-content/plugins/wp-rocket/assets/js/lcp-beacon(.min)?.js\";i:9;s:38:\"/woocommerce-bookings/dist/frontend.js\";i:10;s:44:\"/plugins/mapify(.*)/assets/js/dist/bundle.js\";i:11;s:60:\"/wp-content/plugins/wp-rocket/assets/js/wpr-beacon(.min)?.js\";i:12;s:47:\"/wp-recipe-maker-premium/dist/public-premium.js\";i:13;s:29:\"/plugins/wp-recipe-maker/(.*)\";i:14;s:53:\"/jet-menu/assets/public/js/jet-menu-public-scripts.js\";i:15;s:65:\"/jet-menu/assets/public/js/jet-menu-mobile-menu-public-scripts.js\";}s:15:\"staging_domains\";a:59:{i:0;s:13:\".wpengine.com\";i:1;s:20:\".wpenginepowered.com\";i:2;s:16:\".pantheonsite.io\";i:3;s:18:\".flywheelsites.com\";i:4;s:20:\".flywheelstaging.com\";i:5;s:11:\".kinsta.com\";i:6;s:13:\".kinsta.cloud\";i:7;s:18:\".cloudwaysapps.com\";i:8;s:18:\".azurewebsites.net\";i:9;s:15:\".wpserveur.site\";i:10;s:19:\"-liquidwebsites.com\";i:11;s:16:\".myftpupload.com\";i:12;s:12:\".dream.press\";i:13;s:12:\".sg-host.com\";i:14;s:16:\".platformsh.site\";i:15;s:12:\".wpstage.net\";i:16;s:22:\".bigscoots-staging.com\";i:17;s:10:\".wpsc.site\";i:18;s:14:\".runcloud.link\";i:19;s:14:\".onrocket.site\";i:20;s:18:\".singlestaging.com\";i:21;s:13:\".myraidbox.de\";i:22;s:12:\".instawp.xyz\";i:23;s:11:\".instawp.co\";i:24;s:13:\".instawp.link\";i:25;s:12:\".instawp.app\";i:26;s:12:\".hstgr.cloud\";i:27;s:15:\".myhostpoint.ch\";i:28;s:17:\".wpcomstaging.com\";i:29;s:9:\".nxcli.io\";i:30;s:10:\".nxcli.net\";i:31;s:19:\".lyricalstaging.com\";i:32;s:10:\".myrdbx.io\";i:33;s:21:\".staging.tempurl.host\";i:34;s:19:\".staging.mysites.io\";i:35;s:17:\".updraftclone.com\";i:36;s:11:\".easywp.com\";i:37;s:27:\".preview.infomaniak.website\";i:38;s:13:\".wp-cloud.dev\";i:39;s:9:\".wpsc.dev\";i:40;s:11:\".wptiger.fr\";i:41;s:14:\".amazonaws.com\";i:42;s:11:\".wpdns.site\";i:43;s:19:\".cloudwayssites.com\";i:44;s:21:\".mystagingwebsite.com\";i:45;s:18:\".hostingersite.com\";i:46;s:9:\".ngrok.io\";i:47;s:11:\".stage.site\";i:48;s:12:\".ksysweb.com\";i:49;s:7:\".dev.cc\";i:50;s:8:\".docksal\";i:51;s:10:\".lndo.site\";i:52;s:6:\".local\";i:53;s:10:\".localhost\";i:54;s:5:\".test\";i:55;s:17:\".wpstagecoach.com\";i:56;s:8:\".preprod\";i:57;s:10:\".ddev.site\";i:58;s:16:\"my.wordpress.net\";}s:19:\"exclude_js_template\";a:3:{i:0;s:13:\"type=\"module\"\";i:1;s:12:\"data-minify=\";i:2;s:15:\"data-no-minify=\";}s:25:\"lazy_rendering_exclusions\";a:48:{i:0;s:16:\"class=\"parallex\"\";i:1;s:28:\"class=\"avada-footer-scripts\"\";i:2;s:18:\"id=\"rhslidingMenu\"\";i:3;s:19:\"class=\"logobsmallt\"\";i:4;s:29:\"id=\"ast-mobile-popup-wrapper\"\";i:5;s:33:\"id=\"cmplz-cookiebanner-container\"\";i:6;s:27:\"class=\"wf-container-footer\"\";i:7;s:30:\"class=\"de-mega-menu-container\"\";i:8;s:14:\"data-nosnippet\";i:9;s:32:\"class=\"floating-menu float-menu-\";i:10;s:19:\"id=\"jeg_off_canvas\"\";i:11;s:31:\"id=\"dipi-popup-maker-container\"\";i:12;s:37:\"class=\"static-position vendor_hidden\"\";i:13;s:29:\"class=\"jws-mini-cart-wrapper\"\";i:14;s:28:\"class=\"home-widgets-section\"\";i:15;s:35:\"elementor-location-floating_buttons\";i:16;s:43:\"class=\"xoo-el-container xoo-el-style-popup\"\";i:17;s:26:\"class=\"off-canvas-wrapper\"\";i:18;s:30:\"id=\"ast-hb-account-login-wrap\"\";i:19;s:21:\"id=\"ak_drawer_holder\"\";i:20;s:15:\"id=\"brx-footer\"\";i:21;s:25:\"elementor-location-footer\";i:22;s:27:\"class=\"ts-floating-sidebar\"\";i:23;s:20:\"id=\"yith-wacp-popup\"\";i:24;s:83:\"class=\"fl-builder-content fl-builder-content-30 fl-builder-global-templates-locked\"\";i:25;s:34:\"class=\"mfn-footer-tmpl mfn-footer\"\";i:26;s:37:\"class=\"fusion-tb-footer fusion-footer\";i:27;s:35:\"class=\"wt-cli-cookie-bar-container\"\";i:28;s:23:\"id=\"lazy-loading-point\"\";i:29;s:25:\"class=\"cp-popup-container\";i:30;s:21:\"class=\"xoo-wsc-markup\";i:31;s:20:\"class=\"xoo-wsc-modal\";i:32;s:18:\"class=\"breakdance\"\";i:33;s:43:\"class=\"footer-container color-scheme-light\"\";i:34;s:18:\"class=\"sticky-cta\"\";i:35;s:28:\"class=\"footer-booking-widget\";i:36;s:24:\"rh_sticky_wrapper_footer\";i:37;s:33:\"class=\"sticky-add-to-cart-wrapper\";i:38;s:21:\"id=\"wcpa_img_preview\"\";i:39;s:25:\"id=\"wpca-lay-out-wrapper\"\";i:40;s:19:\"class=\"site-footer\"\";i:41;s:35:\"class=\"atbs-layout-split atbs-block\";i:42;s:29:\"wll-launcher-button-container\";i:43;s:22:\"id=\"wll-site-launcher\"\";i:44;s:17:\"class=\"mobile_nav\";i:45;s:7:\"id=\"nav\";i:46;s:10:\"class=\"nav\";i:47;s:17:\"no-wpr-lazyrender\";}s:10:\"host_fonts\";a:0:{}s:24:\"preload_fonts_exclusions\";a:2:{i:0;s:17:\"api.fontshare.com\";i:1;s:17:\"cdn.fontshare.com\";}s:38:\"preconnect_external_domains_exclusions\";a:5:{i:0;s:29:\"static.cloudflareinsights.com\";i:1;s:13:\"rel=\"profile\"\";i:2;s:16:\"rel=\"preconnect\"\";i:3;s:18:\"rel=\"dns-prefetch\"\";i:4;s:10:\"rel=\"icon\"\";}s:25:\"mixpanel_tracked_settings\";a:70:{i:0;s:9:\"async_css\";i:1;s:16:\"async_css_mobile\";i:2;s:18:\"auto_preload_fonts\";i:3;s:27:\"automatic_cleanup_frequency\";i:4;s:17:\"cache_logged_user\";i:5;s:12:\"cache_mobile\";i:6;s:17:\"cache_purge_pages\";i:7;s:19:\"cache_query_strings\";i:8;s:20:\"cache_reject_cookies\";i:9;s:15:\"cache_reject_ua\";i:10;s:16:\"cache_reject_uri\";i:11;s:9:\"cache_ssl\";i:12;s:3:\"cdn\";i:13;s:10:\"cdn_cnames\";i:14;s:16:\"cdn_reject_files\";i:15;s:8:\"cdn_zone\";i:16;s:17:\"control_heartbeat\";i:17;s:12:\"critical_css\";i:18;s:23:\"database_all_transients\";i:19;s:20:\"database_auto_drafts\";i:20;s:24:\"database_optimize_tables\";i:21;s:18:\"database_revisions\";i:22;s:22:\"database_spam_comments\";i:23;s:25:\"database_trashed_comments\";i:24;s:22:\"database_trashed_posts\";i:25;s:12:\"defer_all_js\";i:26;s:8:\"delay_js\";i:27;s:19:\"delay_js_exclusions\";i:28;s:28:\"delay_js_exclusions_selected\";i:29;s:39:\"delay_js_exclusions_selected_exclusions\";i:30;s:28:\"delay_js_execution_safe_mode\";i:31;s:12:\"dns_prefetch\";i:32;s:23:\"do_caching_mobile_files\";i:33;s:13:\"do_cloudflare\";i:34;s:5:\"emoji\";i:35;s:11:\"exclude_css\";i:36;s:16:\"exclude_defer_js\";i:37;s:17:\"exclude_inline_js\";i:38;s:10:\"exclude_js\";i:39;s:16:\"exclude_lazyload\";i:40;s:24:\"heartbeat_admin_behavior\";i:41;s:25:\"heartbeat_editor_behavior\";i:42;s:23:\"heartbeat_site_behavior\";i:43;s:18:\"host_fonts_locally\";i:44;s:16:\"image_dimensions\";i:45;s:8:\"lazyload\";i:46;s:19:\"lazyload_css_bg_img\";i:47;s:16:\"lazyload_iframes\";i:48;s:16:\"lazyload_youtube\";i:49;s:14:\"manual_preload\";i:50;s:22:\"minify_concatenate_css\";i:51;s:21:\"minify_concatenate_js\";i:52;s:10:\"minify_css\";i:53;s:19:\"minify_google_fonts\";i:54;s:9:\"minify_js\";i:55;s:21:\"optimize_css_delivery\";i:56;s:22:\"performance_monitoring\";i:57;s:41:\"performance_monitoring_schedule_frequency\";i:58;s:20:\"preload_excluded_uri\";i:59;s:13:\"preload_links\";i:60;s:16:\"previous_version\";i:61;s:19:\"purge_cron_interval\";i:62;s:15:\"purge_cron_unit\";i:63;s:17:\"remove_unused_css\";i:64;s:26:\"remove_unused_css_safelist\";i:65;s:26:\"schedule_automatic_cleanup\";i:66;s:21:\"sucury_waf_cache_sync\";i:67;s:18:\"varnish_auto_purge\";i:68;s:7:\"version\";i:69;s:11:\"wpr-js-tips\";}s:44:\"rocket_insights_add_homepage_expiry_interval\";i:266;}","off"),
("13805","_transient_timeout_wpr_dynamic_lists_incompatible_plugins","1783090487","off"),
("13806","_transient_wpr_dynamic_lists_incompatible_plugins","O:8:\"stdClass\":7:{s:0:\"\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"wp-optimize\";s:4:\"file\";s:27:\"wp-optimize/wp-optimize.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:7:\"airlift\";s:4:\"file\";s:19:\"airlift/airlift.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:31:\"leverage-browser-caching-ninjas\";s:4:\"file\";s:66:\"leverage-browser-caching-ninjas/leverage-browser-caching-ninja.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"wp-fast-cache\";s:4:\"file\";s:31:\"wp-fast-cache/wp-fast-cache.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"hyper-cache\";s:4:\"file\";s:22:\"hyper-cache/plugin.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"wp-http-compression\";s:4:\"file\";s:43:\"wp-http-compression/wp-http-compression.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"cache-enabler\";s:4:\"file\";s:31:\"cache-enabler/cache-enabler.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"flexicache\";s:4:\"file\";s:24:\"flexicache/wp-plugin.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"litespeed-cache\";s:4:\"file\";s:35:\"litespeed-cache/litespeed-cache.php\";}i:9;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"quick-cache\";s:4:\"file\";s:27:\"quick-cache/quick-cache.php\";}i:10;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"w3-total-cache\";s:4:\"file\";s:33:\"w3-total-cache/w3-total-cache.php\";}i:11;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"wp-performance-score-booster\";s:4:\"file\";s:61:\"wp-performance-score-booster/wp-performance-score-booster.php\";}i:12;O:8:\"stdClass\":2:{s:4:\"slug\";s:42:\"remove-query-strings-from-static-resources\";s:4:\"file\";s:67:\"remove-query-strings-from-static-resources/remove-query-strings.php\";}i:13;O:8:\"stdClass\":2:{s:4:\"slug\";s:21:\"query-strings-remover\";s:4:\"file\";s:47:\"query-strings-remover/query-strings-remover.php\";}i:14;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"swift-performance\";s:4:\"file\";s:33:\"swift-performance/performance.php\";}i:15;O:8:\"stdClass\":2:{s:4:\"slug\";s:14:\"wp-super-cache\";s:4:\"file\";s:27:\"wp-super-cache/wp-cache.php\";}i:16;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"gator-cache\";s:4:\"file\";s:27:\"gator-cache/gator-cache.php\";}i:17;O:8:\"stdClass\":2:{s:4:\"slug\";s:13:\"page-optimize\";s:4:\"file\";s:31:\"page-optimize/page-optimize.php\";}i:18;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"leverage-browser-caching\";s:4:\"file\";s:53:\"leverage-browser-caching/leverage-browser-caching.php\";}i:19;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"wp-fastest-cache\";s:4:\"file\";s:35:\"wp-fastest-cache/wpFastestCache.php\";}i:20;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"enable-gzip-compression\";s:4:\"file\";s:51:\"enable-gzip-compression/enable-gzip-compression.php\";}i:21;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"hyper-cache-extended\";s:4:\"file\";s:31:\"hyper-cache-extended/plugin.php\";}i:22;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"force-gzip\";s:4:\"file\";s:25:\"force-gzip/force-gzip.php\";}i:23;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"add-expires-headers\";s:4:\"file\";s:43:\"add-expires-headers/add-expires-headers.php\";}i:24;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"lite-cache\";s:4:\"file\";s:21:\"lite-cache/plugin.php\";}i:25;O:8:\"stdClass\":2:{s:4:\"slug\";s:19:\"psn-pagespeed-ninja\";s:4:\"file\";s:38:\"psn-pagespeed-ninja/pagespeedninja.php\";}i:26;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"speed-booster-pack\";s:4:\"file\";s:41:\"speed-booster-pack/speed-booster-pack.php\";}i:27;O:8:\"stdClass\":2:{s:4:\"slug\";s:7:\"wp-ffpc\";s:4:\"file\";s:19:\"wp-ffpc/wp-ffpc.php\";}i:28;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"super-static-cache\";s:4:\"file\";s:41:\"super-static-cache/super-static-cache.php\";}i:29;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"wpcompressor\";s:4:\"file\";s:29:\"wpcompressor/wpcompressor.php\";}i:30;O:8:\"stdClass\":2:{s:4:\"slug\";s:22:\"swift-performance-lite\";s:4:\"file\";s:38:\"swift-performance-lite/performance.php\";}i:31;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"far-future-expiry-header\";s:4:\"file\";s:50:\"far-future-expiry-header/far-future-expiration.php\";}i:32;O:8:\"stdClass\":2:{s:4:\"slug\";s:11:\"combine-css\";s:4:\"file\";s:27:\"combine-css/combine-css.php\";}i:33;O:8:\"stdClass\":2:{s:4:\"slug\";s:28:\"gzip-ninja-speed-compression\";s:4:\"file\";s:49:\"gzip-ninja-speed-compression/gzip-ninja-speed.php\";}i:34;O:8:\"stdClass\":2:{s:4:\"slug\";s:33:\"check-and-enable-gzip-compression\";s:4:\"file\";s:54:\"check-and-enable-gzip-compression/richards-toolbox.php\";}i:35;O:8:\"stdClass\":2:{s:4:\"slug\";s:26:\"wordpress-gzip-compression\";s:4:\"file\";s:35:\"wordpress-gzip-compression/ezgz.php\";}}s:17:\"control_heartbeat\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"heartbeat-control\";s:4:\"file\";s:39:\"heartbeat-control/heartbeat-control.php\";}}s:21:\"minify_css||minify_js\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:16:\"async-js-and-css\";s:4:\"file\";s:34:\"async-js-and-css/asyncJSandCSS.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"fast-velocity-minify\";s:4:\"file\";s:28:\"fast-velocity-minify/fvm.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"scripts-gzip\";s:4:\"file\";s:29:\"scripts-gzip/scripts_gzip.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"bwp-minify\";s:4:\"file\";s:25:\"bwp-minify/bwp-minify.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:15:\"wp-super-minify\";s:4:\"file\";s:35:\"wp-super-minify/wp-super-minify.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"wp-minify\";s:4:\"file\";s:23:\"wp-minify/wp-minify.php\";}i:6;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"merge-minify-refresh\";s:4:\"file\";s:45:\"merge-minify-refresh/merge-minify-refresh.php\";}i:7;O:8:\"stdClass\":2:{s:4:\"slug\";s:8:\"minqueue\";s:4:\"file\";s:19:\"minqueue/plugin.php\";}i:8;O:8:\"stdClass\":2:{s:4:\"slug\";s:23:\"dependency-minification\";s:4:\"file\";s:51:\"dependency-minification/dependency-minification.php\";}}s:16:\"lazyload_iframes\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"lazy-load-for-videos\";s:4:\"file\";s:37:\"lazy-load-for-videos/codeispoetry.php\";}}s:8:\"lazyload\";a:6:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"bj-lazy-load\";s:4:\"file\";s:29:\"bj-lazy-load/bj-lazy-load.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:9:\"lazy-load\";s:4:\"file\";s:23:\"lazy-load/lazy-load.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:18:\"advanced-lazy-load\";s:4:\"file\";s:40:\"advanced-lazy-load/advanced_lazyload.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:25:\"jquery-image-lazy-loading\";s:4:\"file\";s:46:\"jquery-image-lazy-loading/jq_img_lazy_load.php\";}i:4;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"crazy-lazy\";s:4:\"file\";s:25:\"crazy-lazy/crazy-lazy.php\";}i:5;O:8:\"stdClass\":2:{s:4:\"slug\";s:24:\"specify-image-dimensions\";s:4:\"file\";s:53:\"specify-image-dimensions/specify-image-dimensions.php\";}}s:18:\"auto_preload_fonts\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:12:\"custom-fonts\";s:4:\"file\";s:29:\"custom-fonts/custom-fonts.php\";}}s:9:\"minify_js\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"slug\";s:17:\"footer-javascript\";s:4:\"file\";s:39:\"footer-javascript/footer-javascript.php\";}i:1;O:8:\"stdClass\":2:{s:4:\"slug\";s:10:\"combine-js\";s:4:\"file\";s:25:\"combine-js/combine-js.php\";}i:2;O:8:\"stdClass\":2:{s:4:\"slug\";s:20:\"scripts-to-footerphp\";s:4:\"file\";s:42:\"scripts-to-footerphp/scripts-to-footer.php\";}i:3;O:8:\"stdClass\":2:{s:4:\"slug\";s:5:\"wp-js\";s:4:\"file\";s:15:\"wp-js/wp-js.php\";}}}","off"),
("15309","_site_transient_timeout_browser_16fee37559dbd42b448204446d02089f","1783361727","off"),
("15310","_site_transient_browser_16fee37559dbd42b448204446d02089f","a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"149.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}","off"),
("15935","_transient_timeout_avada-builder-demo-theme-options","1783437082","off"),
("15936","_transient_avada-builder-demo-theme-options","a:113:{s:7:\"classic\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"marketing\";s:9:\"Marketing\";}s:10:\"minVersion\";s:5:\"6.0.1\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"avada_faq\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";i:5;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:8:{s:10:\"faqsidebar\";s:11:\"FAQ Sidebar\";s:14:\"aboutuscolumn1\";s:17:\"About Us Column 1\";s:14:\"aboutuscolumn2\";s:17:\"About Us Column 2\";s:14:\"aboutuscolumn3\";s:17:\"About Us Column 3\";s:14:\"aboutuscolumn4\";s:17:\"About Us Column 4\";s:16:\"investorscolumn1\";s:18:\"Investors Column 1\";s:16:\"investorscolumn2\";s:18:\"Investors Column 2\";s:16:\"investorscolumn3\";s:18:\"Investors Column 3\";}s:9:\"homeTitle\";s:12:\"Classic Home\";s:12:\"previewImage\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2019/08/avada-classic-preview.png\";s:18:\"previewImageRetina\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2019/08/avada-classic-preview.png\";s:12:\"primaryColor\";s:7:\"#62bc78\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-2.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-2.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-1.json\";}s:17:\"minimal_portfolio\";a:16:{s:4:\"tags\";a:3:{s:8:\"creative\";s:8:\"Creative\";s:9:\"portfolio\";s:9:\"Portfolio\";s:9:\"marketing\";s:9:\"Marketing\";}s:10:\"minVersion\";s:6:\"7.15.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";i:5;s:15:\"avada_portfolio\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:1;s:9:\"homeTitle\";s:22:\"Minimal Portfolio Home\";s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/552351164-e91aae97-276a-4c8c-94ba-02a42b6af33b.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/552351164-e91aae97-276a-4c8c-94ba-02a42b6af33b.jpg\";s:12:\"primaryColor\";s:7:\"#ff7440\";s:14:\"secondaryColor\";s:7:\"#3f6efc\";s:13:\"tertiaryColor\";s:7:\"#6d6d6d\";s:7:\"acfJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/acf-export.json\";s:8:\"avadaXML\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2026/05/avada.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/theme_options-3.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/widgets.json\";}s:13:\"online_school\";a:17:{s:4:\"tags\";a:3:{s:9:\"education\";s:9:\"Education\";s:6:\"events\";s:6:\"Events\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:6:\"7.13.0\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"fusion_icons\";i:4;s:12:\"avada_layout\";i:5;s:9:\"avada_faq\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:1;s:9:\"homeTitle\";s:18:\"Online School Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:11:\"All Courses\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:22:\"woo_product_attributes\";a:7:{i:0;a:5:{s:4:\"name\";s:13:\"Certification\";s:4:\"slug\";s:16:\"pa_certification\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:8:\"Duration\";s:4:\"slug\";s:11:\"pa_duration\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:2;a:5:{s:4:\"name\";s:10:\"Instructor\";s:4:\"slug\";s:13:\"pa_instructor\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:3;a:5:{s:4:\"name\";s:7:\"Lessons\";s:4:\"slug\";s:10:\"pa_lessons\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:4;a:5:{s:4:\"name\";s:5:\"Level\";s:4:\"slug\";s:8:\"pa_level\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:5;a:5:{s:4:\"name\";s:4:\"Quiz\";s:4:\"slug\";s:7:\"pa_quiz\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:6;a:5:{s:4:\"name\";s:8:\"Students\";s:4:\"slug\";s:11:\"pa_students\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2025/09/487253779-345e572f-2ff5-418f-9252-e1d826021bd3.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2025/09/487253779-345e572f-2ff5-418f-9252-e1d826021bd3.jpg\";s:12:\"primaryColor\";s:7:\"#27c4e5\";s:14:\"secondaryColor\";s:7:\"#fcc943\";s:13:\"tertiaryColor\";s:7:\"#292899\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/04/avada-1.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2025/09/theme_options.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/09/widgets.json\";}s:9:\"ecommerce\";a:17:{s:4:\"tags\";a:2:{s:4:\"shop\";s:4:\"Shop\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:6:\"7.12.2\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:14:\"Ecommerce Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:22:\"woo_product_attributes\";a:6:{i:0;a:5:{s:4:\"name\";s:5:\"Color\";s:4:\"slug\";s:8:\"pa_color\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:6:\"Memory\";s:4:\"slug\";s:9:\"pa_memory\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:2;a:5:{s:4:\"name\";s:4:\"Size\";s:4:\"slug\";s:7:\"pa_size\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:3;a:5:{s:4:\"name\";s:8:\"Speakers\";s:4:\"slug\";s:11:\"pa_speakers\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:4;a:5:{s:4:\"name\";s:14:\"Specifications\";s:4:\"slug\";s:17:\"pa_specifications\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:5;a:5:{s:4:\"name\";s:7:\"Version\";s:4:\"slug\";s:10:\"pa_version\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2025/07/prebuilt_ecommerce.jpg\";s:18:\"previewImageRetina\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2025/07/prebuilt_ecommerce.jpg\";s:12:\"primaryColor\";s:7:\"#006caa\";s:14:\"secondaryColor\";s:7:\"#14c145\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/04/avada-3.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2026/04/theme_options-1.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/07/widgets.json\";}s:11:\"recruitment\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"marketing\";s:9:\"Marketing\";}s:10:\"minVersion\";s:7:\"7.11.14\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";i:6;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:16:\"Recruitment Home\";s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2025/03/prebuilt_recruitment.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2025/03/prebuilt_recruitment.jpg\";s:12:\"primaryColor\";s:7:\"#18b26f\";s:14:\"secondaryColor\";s:7:\"#fbe12e\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:7:\"acfJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2025/03/acf-export.json\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-124.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/theme_options.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/03/widgets.json\";}s:7:\"factory\";a:16:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:6:\"7.11.0\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";i:5;s:12:\"avada_layout\";i:6;s:9:\"avada_faq\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Factory Home\";s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2024/11/332202989-a77947f7-1679-4d13-8416-d60ca926e070.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2024/11/332202989-a77947f7-1679-4d13-8416-d60ca926e070.jpg\";s:12:\"primaryColor\";s:7:\"#ee5519\";s:14:\"secondaryColor\";s:7:\"#35668d\";s:13:\"tertiaryColor\";s:7:\"#e6f3fa\";s:7:\"acfJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2024/11/acf-export.json\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2025/01/avada-5.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-122.json\";s:14:\"widgetDataJSON\";N;}s:8:\"campaign\";a:17:{s:4:\"tags\";a:3:{s:9:\"corporate\";s:9:\"Corporate\";s:6:\"events\";s:6:\"Events\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:7:\"7.11.10\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:13:\"Campaign Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:14:\"Products Store\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:22:\"woo_product_attributes\";a:6:{i:0;a:5:{s:4:\"name\";s:8:\"Capacity\";s:4:\"slug\";s:11:\"pa_capacity\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:5:\"Color\";s:4:\"slug\";s:8:\"pa_color\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:2;a:5:{s:4:\"name\";s:8:\"Material\";s:4:\"slug\";s:11:\"pa_material\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:3;a:5:{s:4:\"name\";s:7:\"Packing\";s:4:\"slug\";s:10:\"pa_packing\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:4;a:5:{s:4:\"name\";s:4:\"Size\";s:4:\"slug\";s:7:\"pa_size\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:5;a:5:{s:4:\"name\";s:6:\"Volume\";s:4:\"slug\";s:9:\"pa_volume\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/09/campaign.jpg\";s:18:\"previewImageRetina\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/09/campaign.jpg\";s:12:\"primaryColor\";s:7:\"#be1e2d\";s:14:\"secondaryColor\";s:7:\"#6094e1\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-7.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-4.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/09/widgets.json\";}s:4:\"vape\";a:16:{s:4:\"tags\";a:2:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:6:\"7.10.0\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:8:\"Homepage\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:12:\"previewImage\";s:68:\"https://updates.theme-fusion.com/wp-content/uploads/2024/07/vape.jpg\";s:18:\"previewImageRetina\";s:68:\"https://updates.theme-fusion.com/wp-content/uploads/2024/07/vape.jpg\";s:12:\"primaryColor\";s:7:\"#23f878\";s:14:\"secondaryColor\";s:7:\"#05ad48\";s:13:\"tertiaryColor\";s:7:\"#ecf5ea\";s:8:\"avadaXML\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2026/01/avada.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2026/01/theme_options.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/07/widgets.json\";}s:9:\"portfolio\";a:15:{s:4:\"tags\";a:3:{s:8:\"creative\";s:8:\"Creative\";s:9:\"portfolio\";s:9:\"Portfolio\";s:9:\"marketing\";s:9:\"Marketing\";}s:10:\"minVersion\";s:6:\"7.11.9\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:20:\"Avada Portfolio Home\";s:12:\"previewImage\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2024/06/thumbnail_portfolio.jpg\";s:18:\"previewImageRetina\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2024/06/thumbnail_portfolio.jpg\";s:12:\"primaryColor\";s:7:\"#ff5d29\";s:14:\"secondaryColor\";s:7:\"#666666\";s:13:\"tertiaryColor\";s:7:\"#e8dbe8\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-9.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-6.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/06/widgets.json\";}s:10:\"investment\";a:16:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:4:\"7.11\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";i:6;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:15:\"Investment Home\";s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2024/05/276386195-3e558378-ebe3-4146-b05c-e806cd392191.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2024/05/276386195-3e558378-ebe3-4146-b05c-e806cd392191.jpg\";s:12:\"primaryColor\";s:7:\"#47b5ff\";s:14:\"secondaryColor\";s:7:\"#e7cea6\";s:13:\"tertiaryColor\";s:7:\"#256d85\";s:7:\"acfJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2024/05/acf-export.json\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-10.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2025/09/theme_options-3.json\";s:14:\"widgetDataJSON\";N;}s:11:\"vegan_store\";a:18:{s:4:\"tags\";a:3:{s:4:\"shop\";s:4:\"Shop\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:4:\"food\";s:4:\"Food\";}s:10:\"minVersion\";s:6:\"7.11.7\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"avada_faq\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:16:\"Vegan Store Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:22:\"woo_product_attributes\";a:6:{i:0;a:5:{s:4:\"name\";s:5:\"Color\";s:4:\"slug\";s:5:\"color\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:4:\"name\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:6:\"Flavor\";s:4:\"slug\";s:6:\"flavor\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:4:\"name\";s:12:\"has_archives\";s:1:\"0\";}i:2;a:5:{s:4:\"name\";s:4:\"Pack\";s:4:\"slug\";s:4:\"pack\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:4:\"name\";s:12:\"has_archives\";s:1:\"0\";}i:3;a:5:{s:4:\"name\";s:4:\"Size\";s:4:\"slug\";s:4:\"size\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:8:\"name_num\";s:12:\"has_archives\";s:1:\"0\";}i:4;a:5:{s:4:\"name\";s:8:\"Size W/L\";s:4:\"slug\";s:8:\"size-w-l\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:8:\"name_num\";s:12:\"has_archives\";s:1:\"0\";}i:5;a:5:{s:4:\"name\";s:6:\"Weight\";s:4:\"slug\";s:6:\"weight\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:8:\"name_num\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2024/04/preview_vegan_store.jpg\";s:18:\"previewImageRetina\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2024/04/preview_vegan_store.jpg\";s:12:\"primaryColor\";s:7:\"#76b62b\";s:14:\"secondaryColor\";s:7:\"#ffa42d\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:7:\"acfJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2024/07/acf-export.json\";s:8:\"avadaXML\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/avada.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/theme_options.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/05/widgets-2.json\";}s:6:\"tattoo\";a:16:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:6:\"7.11.6\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"avada_faq\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Tattoo Home\";s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/avada-tattoo-preview.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/avada-tattoo-preview.jpg\";s:12:\"primaryColor\";s:7:\"#89392a\";s:14:\"secondaryColor\";s:7:\"#f5b997\";s:13:\"tertiaryColor\";s:7:\"#111111\";s:7:\"acfJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/acf-export.json\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-12.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-9.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/widgets.json\";}s:12:\"dance_studio\";a:16:{s:4:\"tags\";a:3:{s:8:\"creative\";s:8:\"Creative\";s:6:\"sports\";s:6:\"Sports\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:6:\"7.11.4\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:17:\"Dance Studio Home\";s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2024/02/dance_studio_preview.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2024/02/dance_studio_preview.jpg\";s:12:\"primaryColor\";s:7:\"#648ad6\";s:14:\"secondaryColor\";s:7:\"#65bd7d\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:7:\"acfJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2024/02/acf-export.json\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-13.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-10.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/02/widgets-1.json\";}s:10:\"dispensary\";a:17:{s:4:\"tags\";a:2:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:6:\"7.11.3\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:15:\"Dispensary Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:12:\"Our Products\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:22:\"woo_product_attributes\";a:1:{i:0;a:5:{s:4:\"name\";s:4:\"Size\";s:4:\"slug\";s:7:\"pa_size\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/12/276380005-86d56652-f9eb-4761-9705-5d746151bb9b.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/12/276380005-86d56652-f9eb-4761-9705-5d746151bb9b.jpg\";s:12:\"primaryColor\";s:7:\"#6a6e49\";s:14:\"secondaryColor\";s:7:\"#975f44\";s:13:\"tertiaryColor\";s:7:\"#d1985c\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-14.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-11.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2023/12/widgets-2.json\";}s:8:\"business\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:6:\"7.11.3\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"avada_faq\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";i:6;s:15:\"avada_portfolio\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:13:\"Business Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2023/12/business_preview.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2023/12/business_preview.jpg\";s:12:\"primaryColor\";s:7:\"#f73760\";s:14:\"secondaryColor\";s:7:\"#4f578d\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:7:\"acfJSON\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2023/12/acf-export-2.json\";s:8:\"avadaXML\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2026/04/avada.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-12.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2023/12/widgets-1.json\";}s:11:\"real_estate\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:6:\"travel\";s:6:\"Travel\";}s:10:\"minVersion\";s:6:\"7.11.3\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:11:\"fusion_form\";i:2;s:12:\"fusion_icons\";i:3;s:12:\"avada_layout\";i:4;s:4:\"page\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:22:\"Avada Real Estate Home\";s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/11/276176110-8fee5aea-3002-40da-8762-9d916ad80694.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/11/276176110-8fee5aea-3002-40da-8762-9d916ad80694.jpg\";s:12:\"primaryColor\";s:7:\"#fe4329\";s:14:\"secondaryColor\";s:7:\"#e4371e\";s:13:\"tertiaryColor\";s:7:\"#33af8d\";s:7:\"acfJSON\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2024/02/acf-export-1.json\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/avada-3.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/theme_options-2.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2023/11/widgets-1.json\";}s:5:\"ebike\";a:16:{s:4:\"tags\";a:3:{s:9:\"corporate\";s:9:\"Corporate\";s:4:\"shop\";s:4:\"Shop\";s:6:\"sports\";s:6:\"Sports\";}s:10:\"minVersion\";s:6:\"7.11.2\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"E-Bike Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:8:\"Products\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2023/09/prebuilt_ebike.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2023/09/prebuilt_ebike.jpg\";s:12:\"primaryColor\";s:7:\"#e61d1d\";s:14:\"secondaryColor\";s:7:\"#e6781d\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-17.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-14.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2023/09/widgets.json\";}s:9:\"hosting_2\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:6:\"7.11.2\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Hosting Home\";s:12:\"previewImage\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2023/08/prebuilt-hosting-2.jpg\";s:18:\"previewImageRetina\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2023/08/prebuilt-hosting-2.jpg\";s:12:\"primaryColor\";s:7:\"#ff8b1e\";s:14:\"secondaryColor\";s:7:\"#008ee6\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-18.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-15.json\";s:14:\"widgetDataJSON\";N;}s:10:\"life_coach\";a:16:{s:4:\"tags\";a:4:{s:9:\"education\";s:9:\"Education\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:9:\"marketing\";s:9:\"Marketing\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:6:\"7.11.0\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:4:\"Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:8:\"Products\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/07/236532997-dded331b-089d-4ed1-aaec-3543b313a8e4.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/07/236532997-dded331b-089d-4ed1-aaec-3543b313a8e4.jpg\";s:12:\"primaryColor\";s:7:\"#f1642b\";s:14:\"secondaryColor\";s:7:\"#eda444\";s:13:\"tertiaryColor\";s:7:\"#5b4f68\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-20.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-16.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2023/07/widgets.json\";}s:10:\"programmer\";a:16:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:6:\"7.11.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:12:\"avada_layout\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:15:\"Programmer Home\";s:12:\"previewImage\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/06/244383705-ec349d80-7ee9-47c0-9c40-8507517a58a7.jpg\";s:18:\"previewImageRetina\";s:110:\"https://updates.theme-fusion.com/wp-content/uploads/2023/06/244383705-ec349d80-7ee9-47c0-9c40-8507517a58a7.jpg\";s:12:\"primaryColor\";s:7:\"#432df4\";s:14:\"secondaryColor\";s:7:\"#f6e760\";s:13:\"tertiaryColor\";s:7:\"#d85927\";s:7:\"acfJSON\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2023/06/acf-export-2.json\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-23.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-17.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2023/06/widgets.json\";}s:17:\"bed_and_breakfast\";a:15:{s:4:\"tags\";a:1:{s:6:\"travel\";s:6:\"Travel\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:22:\"Bed And Breakfast Home\";s:12:\"previewImage\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2023/05/bb_preview.jpg\";s:18:\"previewImageRetina\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2023/05/bb_preview.jpg\";s:12:\"primaryColor\";s:7:\"#bc3f31\";s:14:\"secondaryColor\";s:7:\"#b9b58d\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-25.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-18.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2023/05/widgets.json\";}s:8:\"magazine\";a:15:{s:4:\"tags\";a:2:{s:13:\"blog-magazine\";s:15:\"Blog / Magazine\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:6:\"7.10.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:13:\"Magazine Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2023/04/prebuilt_magazine.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2023/04/prebuilt_magazine.jpg\";s:12:\"primaryColor\";s:7:\"#ff6d20\";s:14:\"secondaryColor\";s:7:\"#63717f\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-26.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-19.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2023/04/widgets.json\";}s:5:\"retro\";a:15:{s:4:\"tags\";a:3:{s:8:\"creative\";s:8:\"Creative\";s:9:\"marketing\";s:9:\"Marketing\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:5:\"7.9.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:15:\"avada_portfolio\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:4:\"page\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:10:\"Retro Home\";s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2023/02/prebuilt_retro.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2023/02/prebuilt_retro.jpg\";s:12:\"primaryColor\";s:7:\"#e75438\";s:14:\"secondaryColor\";s:7:\"#dbc0b3\";s:13:\"tertiaryColor\";s:7:\"#faf1e2\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-27.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-20.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2023/02/widgets-1.json\";}s:11:\"corporation\";a:15:{s:4:\"tags\";a:3:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"marketing\";s:9:\"Marketing\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:5:\"7.9.1\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";i:6;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:16:\"Corporation Home\";s:12:\"previewImage\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2022/12/preview_corporation.jpg\";s:18:\"previewImageRetina\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2022/12/preview_corporation.jpg\";s:12:\"primaryColor\";s:7:\"#3269ff\";s:14:\"secondaryColor\";s:7:\"#b8a9d8\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-28.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-21.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/05/widgets-3.json\";}s:13:\"tour_operator\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:6:\"travel\";s:6:\"Travel\";}s:10:\"minVersion\";s:3:\"7.8\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:18:\"Tour Operator Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:17:\"All Tour Packages\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:12:\"previewImage\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/prebuilt_tour_operator.jpg\";s:18:\"previewImageRetina\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/prebuilt_tour_operator.jpg\";s:12:\"primaryColor\";s:7:\"#0e76bc\";s:14:\"secondaryColor\";s:7:\"#fd9d2a\";s:13:\"tertiaryColor\";s:7:\"#444444\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-29.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-22.json\";s:14:\"widgetDataJSON\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-11.json\";}s:6:\"energy\";a:15:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:5:\"7.8.2\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:12:\"fusion_icons\";i:5;s:12:\"avada_layout\";i:6;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Energy Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2022/10/prebuilt_energy.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2022/10/prebuilt_energy.jpg\";s:12:\"primaryColor\";s:7:\"#09ce63\";s:14:\"secondaryColor\";s:7:\"#137d44\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-30.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-23.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/10/widgets-2.json\";}s:14:\"car_dealership\";a:17:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"7.8.0\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:9:\"avada_faq\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:23:\"Car Dealership Homepage\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:9:\"Inventory\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:22:\"woo_product_attributes\";a:2:{i:0;a:5:{s:4:\"name\";s:9:\"Body Type\";s:4:\"slug\";s:12:\"pa_body-type\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:5:\"Color\";s:4:\"slug\";s:8:\"pa_color\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"1\";}}s:12:\"previewImage\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2022/08/prebuilt_car_dealer.jpg\";s:18:\"previewImageRetina\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2022/08/prebuilt_car_dealer.jpg\";s:12:\"primaryColor\";s:7:\"#bd162d\";s:14:\"secondaryColor\";s:7:\"#2364c4\";s:13:\"tertiaryColor\";s:7:\"#081b36\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-31.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-24.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/04/widgets-1.json\";}s:7:\"caterer\";a:16:{s:4:\"tags\";a:1:{s:4:\"food\";s:4:\"Food\";}s:10:\"minVersion\";s:5:\"7.7.1\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:15:\"avada_portfolio\";i:2;s:4:\"page\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";i:5;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:3:{s:14:\"specialtyitems\";s:15:\"Specialty Items\";s:17:\"classicexperience\";s:18:\"Classic Experience\";s:13:\"royalcatering\";s:14:\"Royal Catering\";}s:9:\"homeTitle\";s:12:\"Caterer Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2022/04/caterer_preview.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2022/04/caterer_preview.jpg\";s:12:\"primaryColor\";s:7:\"#ff512f\";s:14:\"secondaryColor\";s:7:\"#8bc34a\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-32.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-25.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2022/10/widgets.json\";}s:8:\"handyman\";a:15:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:3:\"7.6\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:13:\"Handyman Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2021/12/preview_handyman.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2021/12/preview_handyman.jpg\";s:12:\"primaryColor\";s:7:\"#ffb600\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-33.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-26.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2021/12/widgets-9.json\";}s:14:\"extreme_sports\";a:15:{s:4:\"tags\";a:1:{s:6:\"sports\";s:6:\"Sports\";}s:10:\"minVersion\";s:3:\"7.5\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";i:5;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:19:\"Extreme Sports Home\";s:12:\"previewImage\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2021/11/preview_extreme_sports.jpg\";s:18:\"previewImageRetina\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2021/11/preview_extreme_sports.jpg\";s:12:\"primaryColor\";s:7:\"#ff9600\";s:14:\"secondaryColor\";s:7:\"#0c3543\";s:13:\"tertiaryColor\";s:7:\"#222222\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-34.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-27.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/widgets-4.json\";}s:14:\"digital_agency\";a:16:{s:4:\"tags\";a:3:{s:4:\"shop\";s:4:\"Shop\";s:9:\"portfolio\";s:9:\"Portfolio\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"7.4.1\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:19:\"Digital Agency Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:91:\"https://updates.theme-fusion.com/wp-content/uploads/2021/08/preview_avada_digial_agency.jpg\";s:18:\"previewImageRetina\";s:91:\"https://updates.theme-fusion.com/wp-content/uploads/2021/08/preview_avada_digial_agency.jpg\";s:12:\"primaryColor\";s:7:\"#0057ff\";s:14:\"secondaryColor\";s:7:\"#f45c20\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-35.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-28.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2021/08/widgets-1.json\";}s:8:\"mechanic\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"7.4\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:13:\"Mechanic Home\";s:12:\"previewImage\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2021/06/preview_avada_mechanic.jpg\";s:18:\"previewImageRetina\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2021/06/preview_avada_mechanic.jpg\";s:12:\"primaryColor\";s:7:\"#013cae\";s:14:\"secondaryColor\";s:7:\"#ffdc4b\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-36.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-29.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/06/widgets-1.json\";}s:6:\"retail\";a:18:{s:4:\"tags\";a:2:{s:4:\"shop\";s:4:\"Shop\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:3:\"7.3\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:5:{s:11:\"shopsidebar\";s:12:\"Shop Sidebar\";s:9:\"megamenu1\";s:11:\"Mega Menu 1\";s:9:\"megamenu2\";s:11:\"Mega Menu 2\";s:9:\"megamenu3\";s:11:\"Mega Menu 3\";s:9:\"megamenu4\";s:11:\"Mega Menu 4\";}s:9:\"homeTitle\";s:11:\"Retail Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:22:\"Shop Classic - Sidebar\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:22:\"woo_product_attributes\";a:3:{i:0;a:5:{s:4:\"name\";s:6:\"Colors\";s:4:\"slug\";s:9:\"pa_colors\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:6:\"Colors\";s:4:\"slug\";s:11:\"pa_colors-2\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:2;a:5:{s:4:\"name\";s:4:\"Size\";s:4:\"slug\";s:7:\"pa_size\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:70:\"https://updates.theme-fusion.com/wp-content/uploads/2021/03/retail.jpg\";s:18:\"previewImageRetina\";s:70:\"https://updates.theme-fusion.com/wp-content/uploads/2021/03/retail.jpg\";s:12:\"primaryColor\";s:7:\"#0d244c\";s:14:\"secondaryColor\";s:7:\"#f8f5ef\";s:13:\"tertiaryColor\";s:7:\"#8aada8\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/avada-1.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2026/03/theme_options-1.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2021/03/widget_data-2.json\";}s:15:\"country_butcher\";a:16:{s:4:\"tags\";a:2:{s:4:\"shop\";s:4:\"Shop\";s:4:\"food\";s:4:\"Food\";}s:10:\"minVersion\";s:3:\"7.3\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:20:\"Country Butcher Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:8:\"Our Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2021/03/country-butcher-preview.jpg\";s:18:\"previewImageRetina\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2021/03/country-butcher-preview.jpg\";s:12:\"primaryColor\";s:7:\"#cec18a\";s:14:\"secondaryColor\";s:7:\"#595959\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-38.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-31.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/06/widgets-3.json\";}s:14:\"business_coach\";a:15:{s:4:\"tags\";a:3:{s:9:\"education\";s:9:\"Education\";s:9:\"marketing\";s:9:\"Marketing\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"7.2.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:19:\"Business Coach Home\";s:12:\"previewImage\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2021/03/preview_business_coach.jpg\";s:18:\"previewImageRetina\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2021/03/preview_business_coach.jpg\";s:12:\"primaryColor\";s:7:\"#0e6ace\";s:14:\"secondaryColor\";s:7:\"#00ca72\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-39.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-33.json\";s:14:\"widgetDataJSON\";N;}s:13:\"avada_builder\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"7.2.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:18:\"Avada Builder Home\";s:12:\"previewImage\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2021/02/preview_avada_builder-1.jpg\";s:18:\"previewImageRetina\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2021/02/preview_avada_builder-1.jpg\";s:12:\"primaryColor\";s:7:\"#4e6d43\";s:14:\"secondaryColor\";s:7:\"#000000\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-40.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-34.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2021/07/widgets.json\";}s:10:\"psychology\";a:14:{s:4:\"tags\";a:3:{s:9:\"corporate\";s:9:\"Corporate\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:5:\"7.2.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:1;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:15:\"Psychology Home\";s:12:\"previewImage\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2021/01/preview_psychology.jpg\";s:18:\"previewImageRetina\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2021/01/preview_psychology.jpg\";s:12:\"primaryColor\";s:7:\"#004c4c\";s:14:\"secondaryColor\";s:7:\"#a66d3f\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2025/12/avada-3.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2025/12/theme_options-3.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2021/01/widget_data-1.json\";}s:10:\"accountant\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"7.2.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:15:\"Accountant Home\";s:12:\"previewImage\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2021/01/preview_accountant.jpg\";s:18:\"previewImageRetina\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2021/01/preview_accountant.jpg\";s:12:\"primaryColor\";s:7:\"#2cbc63\";s:14:\"secondaryColor\";s:7:\"#023a51\";s:13:\"tertiaryColor\";s:7:\"#f9fafb\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-42.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-36.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-2.json\";}s:8:\"handmade\";a:18:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:3:\"7.2\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:1:{s:11:\"shopsidebar\";s:12:\"Shop Sidebar\";}s:9:\"homeTitle\";s:13:\"Handmade Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:22:\"woo_product_attributes\";a:6:{i:0;a:5:{s:4:\"name\";s:5:\"Color\";s:4:\"slug\";s:8:\"pa_color\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:6:\"Length\";s:4:\"slug\";s:9:\"pa_length\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:8:\"name_num\";s:12:\"has_archives\";s:1:\"0\";}i:2;a:5:{s:4:\"name\";s:8:\"Material\";s:4:\"slug\";s:11:\"pa_material\";s:4:\"type\";s:11:\"avada_image\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:3;a:5:{s:4:\"name\";s:4:\"Pack\";s:4:\"slug\";s:7:\"pa_pack\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:4;a:5:{s:4:\"name\";s:4:\"Size\";s:4:\"slug\";s:7:\"pa_size\";s:4:\"type\";s:6:\"select\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:5;a:5:{s:4:\"name\";s:5:\"Style\";s:4:\"slug\";s:8:\"pa_style\";s:4:\"type\";s:11:\"avada_image\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2020/12/preview_handmade.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2020/12/preview_handmade.jpg\";s:12:\"primaryColor\";s:7:\"#bc4b20\";s:14:\"secondaryColor\";s:7:\"#f7efec\";s:13:\"tertiaryColor\";s:7:\"#ecf4eb\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-43.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-37.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/12/widget_data-1.json\";}s:6:\"winery\";a:17:{s:4:\"tags\";a:2:{s:4:\"food\";s:4:\"Food\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:3:\"7.2\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Winery Home\";s:8:\"woopages\";a:5:{s:24:\"woocommerce_shop_page_id\";s:10:\"Buy Online\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";s:25:\"woocommerce_terms_page_id\";s:16:\"Terms of Service\";}s:22:\"woo_product_attributes\";a:3:{i:0;a:5:{s:4:\"name\";s:9:\"Bottle #1\";s:4:\"slug\";s:11:\"pa_bottle-1\";s:4:\"type\";s:11:\"avada_image\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:9:\"Bottle #2\";s:4:\"slug\";s:11:\"pa_bottle-2\";s:4:\"type\";s:11:\"avada_image\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:2;a:5:{s:4:\"name\";s:9:\"Bottle #3\";s:4:\"slug\";s:11:\"pa_bottle-3\";s:4:\"type\";s:11:\"avada_image\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/12/preview_winery.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/12/preview_winery.jpg\";s:12:\"primaryColor\";s:7:\"#ff6365\";s:14:\"secondaryColor\";s:7:\"#7f0f41\";s:13:\"tertiaryColor\";s:7:\"#45152a\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-44.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-40.json\";s:14:\"widgetDataJSON\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/12/widget_data.json\";}s:12:\"nutritionist\";a:17:{s:4:\"tags\";a:4:{s:13:\"blog-magazine\";s:15:\"Blog / Magazine\";s:4:\"food\";s:4:\"Food\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"7.1.1\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:1;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:17:\"Nutritionist Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:12:\"previewImage\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/nutrition.jpg\";s:18:\"previewImageRetina\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/nutrition.jpg\";s:12:\"primaryColor\";s:7:\"#e61f12\";s:14:\"secondaryColor\";s:7:\"#fff9f3\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:7:\"acfJSON\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/acf-export-2023-12-26.json\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/06/avada-4.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2026/06/theme_options-5.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/08/widgets-4.json\";}s:8:\"festival\";a:17:{s:4:\"tags\";a:2:{s:6:\"events\";s:6:\"Events\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:5:\"7.1.1\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:11:\"fusion_form\";i:4;s:15:\"avada_portfolio\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:13:\"Festival Home\";s:12:\"previewImage\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/festival.jpg\";s:18:\"previewImageRetina\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/festival.jpg\";s:12:\"primaryColor\";s:7:\"#ff9806\";s:14:\"secondaryColor\";s:7:\"#262450\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-46.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-42.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2023/05/widgets-1.json\";s:11:\"convertPlus\";a:1:{i:0;s:105:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/modal_promo_wpml_-_disclaimer_cp_id_be96b.zip\";}s:10:\"revSliders\";a:2:{i:0;s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/festival-intro-es.zip\";i:1;s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/festival-intro-en.zip\";}}s:17:\"virtual_assistant\";a:15:{s:4:\"tags\";a:3:{s:9:\"education\";s:9:\"Education\";s:9:\"marketing\";s:9:\"Marketing\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:3:\"7.1\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"avada_faq\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";i:5;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:1;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:22:\"Virtual Assistant Home\";s:12:\"previewImage\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/92124892-54cc2e00-edcc-11ea-8994-f15925e53b1e.jpg\";s:18:\"previewImageRetina\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/92124892-54cc2e00-edcc-11ea-8994-f15925e53b1e.jpg\";s:12:\"primaryColor\";s:7:\"#f86635\";s:14:\"secondaryColor\";s:7:\"#0d1267\";s:13:\"tertiaryColor\";s:7:\"#000545\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-47.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-43.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/widget_data-1.json\";}s:17:\"financial_advisor\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:3:\"7.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"fusion_icons\";i:4;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:22:\"Financial Advisor Home\";s:12:\"previewImage\";s:106:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/Financial_Advisor_880x660_DemoScreen_Avada.jpg\";s:18:\"previewImageRetina\";s:106:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/Financial_Advisor_880x660_DemoScreen_Avada.jpg\";s:20:\"previewImageDetailed\";s:98:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/financial_advisor_preview_detailed.jpg\";s:12:\"primaryColor\";s:7:\"#554adf\";s:14:\"secondaryColor\";s:7:\"#51e5a5\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-48.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-44.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/10/widget-data-1.json\";}s:7:\"plumber\";a:13:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:5:\"7.0.2\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Plumber Home\";s:12:\"previewImage\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/09/plumber_demo.jpg\";s:18:\"previewImageRetina\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/09/plumber_demo.jpg\";s:12:\"primaryColor\";s:7:\"#009fe3\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-50.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-45.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/01/widgets-6.json\";}s:20:\"marketing_consultant\";a:15:{s:4:\"tags\";a:4:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"education\";s:9:\"Education\";s:9:\"marketing\";s:9:\"Marketing\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:5:\"7.0.2\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";i:6;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:1;}s:3:\"new\";b:0;s:8:\"sidebars\";a:3:{s:15:\"fusion-service1\";s:9:\"Service 1\";s:15:\"fusion-service2\";s:9:\"Service 2\";s:15:\"fusion-service3\";s:9:\"Service 3\";}s:9:\"homeTitle\";s:25:\"Marketing Consultant Home\";s:12:\"previewImage\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2020/08/demo-marketing-consultant.jpg\";s:18:\"previewImageRetina\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2020/08/demo-marketing-consultant.jpg\";s:20:\"previewImageDetailed\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2020/08/detailed_preview.jpg\";s:12:\"primaryColor\";s:7:\"#f86011\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-52.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-46.json\";s:14:\"widgetDataJSON\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/08/widget_data.json\";}s:12:\"pet_supplies\";a:17:{s:4:\"tags\";a:2:{s:4:\"shop\";s:4:\"Shop\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"7.0\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:5:{s:13:\"shopsidebar_1\";s:12:\"Shop Sidebar\";s:10:\"megamenu_1\";s:11:\"Mega Menu 1\";s:10:\"megamenu_2\";s:11:\"Mega Menu 2\";s:10:\"megamenu_3\";s:11:\"Mega Menu 3\";s:13:\"shopsidebar_2\";s:15:\"Shop Sidebar #2\";}s:9:\"homeTitle\";s:17:\"Pet Supplies Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:19:\"Shop single sidebar\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/07/demo-pet-supplies.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/07/demo-pet-supplies.jpg\";s:12:\"primaryColor\";s:7:\"#1e3120\";s:14:\"secondaryColor\";s:7:\"#3d6f42\";s:13:\"tertiaryColor\";s:7:\"#f8f5f2\";s:8:\"avadaXML\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2026/02/avada.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2026/02/theme_options.json\";s:14:\"widgetDataJSON\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/07/widget_data.json\";}s:12:\"online_tutor\";a:17:{s:4:\"tags\";a:3:{s:9:\"education\";s:9:\"Education\";s:4:\"shop\";s:4:\"Shop\";s:6:\"events\";s:6:\"Events\";}s:10:\"minVersion\";s:5:\"6.2.3\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:3:{s:11:\"Mega Menu 1\";s:11:\"Mega Menu 1\";s:9:\"megamenu2\";s:11:\"Mega Menu 2\";s:9:\"megamenu3\";s:11:\"Mega Menu 3\";}s:9:\"homeTitle\";s:17:\"Online Tutor Home\";s:8:\"woopages\";a:3:{s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/05/online-tutor.jpg\";s:18:\"previewImageRetina\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/05/online-tutor.jpg\";s:12:\"primaryColor\";s:7:\"#dd5f56\";s:14:\"secondaryColor\";s:7:\"#336e6a\";s:13:\"tertiaryColor\";s:7:\"#def0ee\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-54.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-48.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-5.json\";}s:12:\"videographer\";a:16:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:5:\"6.2.3\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:17:\"Videographer Home\";s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/05/videographer-1.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/05/videographer-1.jpg\";s:12:\"primaryColor\";s:7:\"#ff7e00\";s:14:\"secondaryColor\";s:7:\"#000000\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-55.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-49.json\";s:14:\"widgetDataJSON\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/05/widget_data.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2020/05/fusion_slider-2.zip\";}s:17:\"cleaning_services\";a:15:{s:4:\"tags\";a:2:{s:8:\"one-page\";s:8:\"One Page\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"6.2.2\";s:4:\"shop\";b:0;s:8:\"features\";a:4:{i:0;s:4:\"page\";i:1;s:12:\"fusion_icons\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:22:\"Cleaning Services Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/04/cleaning_services.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/04/cleaning_services.jpg\";s:12:\"primaryColor\";s:7:\"#0a9695\";s:14:\"secondaryColor\";s:7:\"#112034\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-56.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-50.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/04/widget_data-3.json\";}s:7:\"takeout\";a:16:{s:4:\"tags\";a:2:{s:4:\"food\";s:4:\"Food\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"6.2.2\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:12:\"fusion_icons\";i:3;s:12:\"avada_layout\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Takeout Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";s:25:\"woocommerce_terms_page_id\";s:16:\"Terms Of Service\";}s:12:\"previewImage\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/04/demo-takeout.jpg\";s:18:\"previewImageRetina\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/04/demo-takeout.jpg\";s:12:\"primaryColor\";s:7:\"#ce1a26\";s:14:\"secondaryColor\";s:7:\"#fcdc31\";s:13:\"tertiaryColor\";s:7:\"#594b02\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-57.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-51.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/02/widgets.json\";}s:15:\"interior_design\";a:17:{s:4:\"tags\";a:4:{s:9:\"corporate\";s:9:\"Corporate\";s:8:\"creative\";s:8:\"Creative\";s:9:\"portfolio\";s:9:\"Portfolio\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"6.2.2\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:5:{s:18:\"fusion-shopsidebar\";s:12:\"Shop Sidebar\";s:16:\"fusion-megamenu1\";s:11:\"Mega Menu 1\";s:16:\"fusion-megamenu2\";s:11:\"Mega Menu 2\";s:16:\"fusion-megamenu3\";s:11:\"Mega Menu 3\";s:16:\"fusion-megamenu4\";s:11:\"Mega Menu 4\";}s:9:\"homeTitle\";s:20:\"Interior Design Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:17:\"Shop with Sidebar\";s:24:\"woocommerce_cart_page_id\";s:13:\"Shopping Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2020/04/demo-interior-design.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2020/04/demo-interior-design.jpg\";s:12:\"primaryColor\";s:7:\"#181b20\";s:14:\"secondaryColor\";s:7:\"#caa975\";s:13:\"tertiaryColor\";s:7:\"#fafafa\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-58.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-52.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2022/12/widgets.json\";}s:7:\"fitness\";a:17:{s:4:\"tags\";a:4:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:6:\"sports\";s:6:\"Sports\";s:9:\"portfolio\";s:9:\"Portfolio\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"6.2.2\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Fitness Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:12:\"Our products\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My account\";}s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/fitness_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/fitness_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#4154ff\";s:14:\"secondaryColor\";s:7:\"#060607\";s:13:\"tertiaryColor\";s:7:\"#ff414b\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-59.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-53.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/widget_data-2.json\";s:10:\"revSliders\";a:1:{i:0;s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/slider-1.zip\";}}s:6:\"author\";a:17:{s:4:\"tags\";a:3:{s:8:\"creative\";s:8:\"Creative\";s:9:\"portfolio\";s:9:\"Portfolio\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"6.2.1\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:12:\"fusion_icons\";i:2;s:4:\"page\";i:3;s:15:\"avada_portfolio\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Author Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:31:\"https://i.imgur.com/KM4YanI.png\";}s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/author_thumbnail.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/author_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#f4b429\";s:14:\"secondaryColor\";s:7:\"#49a987\";s:13:\"tertiaryColor\";s:7:\"#fef7e9\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-60.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-55.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/widget_data-1.json\";s:10:\"revSliders\";a:1:{i:0;s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2020/03/avada-author-hero-1.zip\";}}s:10:\"restaurant\";a:18:{s:4:\"tags\";a:3:{s:9:\"corporate\";s:9:\"Corporate\";s:4:\"food\";s:4:\"Food\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:3:\"6.2\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";i:4;s:15:\"avada_portfolio\";i:5;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:4:{s:26:\"Hors D\'oeuvres - Mega Menu\";s:26:\"Hors D\'oeuvres - Mega Menu\";s:23:\"Main Course - Mega Menu\";s:23:\"Main Course - Mega Menu\";s:20:\"Desserts - Mega Menu\";s:20:\"Desserts - Mega Menu\";s:21:\"Cocktails - Mega Menu\";s:21:\"Cocktails - Mega Menu\";}s:9:\"homeTitle\";s:15:\"Restaurant Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:7:\"Takeout\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:22:\"woo_product_attributes\";a:2:{i:0;a:5:{s:4:\"name\";s:16:\"Number of sushis\";s:4:\"slug\";s:9:\"pa_sushis\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:16:\"Number of sushis\";s:4:\"slug\";s:9:\"pa_sushis\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2020/02/restaurant-demo.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2020/02/restaurant-demo.jpg\";s:12:\"primaryColor\";s:7:\"#030303\";s:14:\"secondaryColor\";s:7:\"#d6d6d6\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-61.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-56.json\";s:14:\"widgetDataJSON\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2020/02/restaurant_widget_data-1.json\";}s:4:\"taxi\";a:15:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:6:\"travel\";s:6:\"Travel\";}s:10:\"minVersion\";s:3:\"6.2\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"fusion_icons\";i:3;s:12:\"avada_layout\";i:4;s:11:\"fusion_form\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:9:\"Taxi Home\";s:12:\"previewImage\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2020/02/taxi_demo.jpg\";s:18:\"previewImageRetina\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2020/02/taxi_demo.jpg\";s:12:\"primaryColor\";s:7:\"#feba12\";s:14:\"secondaryColor\";s:7:\"#000000\";s:13:\"tertiaryColor\";s:7:\"#ff9800\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-62.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-57.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2020/02/widget_data-2.json\";}s:10:\"landscaper\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"6.1.2\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"fusion_icons\";i:4;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:15:\"Landscaper Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2020/01/demo_landscaper.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2020/01/demo_landscaper.jpg\";s:12:\"primaryColor\";s:7:\"#2b707d\";s:14:\"secondaryColor\";s:7:\"#d6d6d6\";s:13:\"tertiaryColor\";s:7:\"#f3d2a7\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-63.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-58.json\";s:14:\"widgetDataJSON\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2020/01/widget_data.json\";}s:7:\"esports\";a:18:{s:4:\"tags\";a:4:{s:7:\"bbpress\";s:7:\"bbPress\";s:6:\"sports\";s:6:\"Sports\";s:4:\"shop\";s:4:\"Shop\";s:6:\"events\";s:6:\"Events\";}s:10:\"minVersion\";s:5:\"6.1.2\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:1;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:5:{s:19:\"fusion_forumsidebar\";s:13:\"Forum Sidebar\";s:34:\"fusion_about_organisation_megamenu\";s:30:\"About Organisation - Mega Menu\";s:24:\"fusion_sponsors_megamenu\";s:20:\"Sponsors - Mega Menu\";s:24:\"fusion_achievements_menu\";s:19:\"Achievements - Menu\";s:24:\"fusion_partners_megamenu\";s:20:\"Partners - Mega Menu\";}s:9:\"homeTitle\";s:12:\"eSports Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/12/esports_demo-1.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/12/esports_demo-1.jpg\";s:12:\"primaryColor\";s:7:\"#e83630\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-64.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-59.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-6.json\";s:10:\"revSliders\";a:1:{i:0;s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2019/12/slider-1.zip\";}}s:6:\"bakery\";a:16:{s:4:\"tags\";a:2:{s:4:\"shop\";s:4:\"Shop\";s:4:\"food\";s:4:\"Food\";}s:10:\"minVersion\";s:5:\"6.1.2\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Bakery Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:13:\"Shopping Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/12/bakery_demo.jpg\";s:18:\"previewImageRetina\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/12/bakery_demo.jpg\";s:12:\"primaryColor\";s:7:\"#55328b\";s:14:\"secondaryColor\";s:7:\"#f9f1f2\";s:13:\"tertiaryColor\";s:7:\"#f0edf5\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-65.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-61.json\";s:14:\"widgetDataJSON\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2019/12/widget-data.json\";}s:4:\"yoga\";a:15:{s:4:\"tags\";a:3:{s:6:\"events\";s:6:\"Events\";s:6:\"sports\";s:6:\"Sports\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:5:\"6.1.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:9:\"Yoga Home\";s:12:\"previewImage\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2019/11/yoga_demo.jpg\";s:18:\"previewImageRetina\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2019/11/yoga_demo.jpg\";s:12:\"primaryColor\";s:7:\"#ad1f5f\";s:14:\"secondaryColor\";s:7:\"#d8a174\";s:13:\"tertiaryColor\";s:7:\"#a794a4\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-66.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-62.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-7.json\";}s:6:\"splash\";a:15:{s:4:\"tags\";a:2:{s:11:\"coming-soon\";s:11:\"Coming Soon\";s:8:\"one-page\";s:8:\"One Page\";}s:10:\"minVersion\";s:3:\"6.1\";s:4:\"shop\";b:0;s:8:\"features\";a:4:{i:0;s:4:\"page\";i:1;s:11:\"fusion_form\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Splash Home\";s:12:\"previewImage\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/splash_demo.jpg\";s:18:\"previewImageRetina\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/splash_demo.jpg\";s:12:\"primaryColor\";s:7:\"#bf945b\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-67.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-63.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/widget_data-1.json\";}s:10:\"influencer\";a:18:{s:4:\"tags\";a:4:{s:13:\"blog-magazine\";s:15:\"Blog / Magazine\";s:9:\"portfolio\";s:9:\"Portfolio\";s:4:\"shop\";s:4:\"Shop\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:3:\"6.1\";s:4:\"shop\";b:1;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:2:{s:23:\"fusion-storewithsidebar\";s:18:\"Store With Sidebar\";s:22:\"fusion-youtubetemplate\";s:16:\"Youtube Template\";}s:9:\"homeTitle\";s:15:\"Influencer Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:18:\"Store With Sidebar\";s:24:\"woocommerce_cart_page_id\";s:13:\"Shopping Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/influencer_thumbnail.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/influencer_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#ff3501\";s:14:\"secondaryColor\";s:7:\"#eae1e4\";s:13:\"tertiaryColor\";s:7:\"#44405a\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2025/12/avada-1.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2025/12/theme_options-1.json\";s:14:\"widgetDataJSON\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/influencer_widget_data.json\";s:10:\"revSliders\";a:2:{i:0;s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/influencer-hero-1.zip\";i:1;s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/influencer-hero.zip\";}}s:8:\"podcasts\";a:16:{s:4:\"tags\";a:3:{s:13:\"blog-magazine\";s:15:\"Blog / Magazine\";s:9:\"portfolio\";s:9:\"Portfolio\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:3:\"6.1\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:2:{s:21:\"fusion-homepagesearch\";s:15:\"Homepage Search\";s:17:\"fusion-blogsearch\";s:11:\"Blog Search\";}s:9:\"homeTitle\";s:13:\"Podcasts Home\";s:12:\"previewImage\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/podcasts_thumbnail.jpg\";s:18:\"previewImageRetina\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/podcasts_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#b06cf4\";s:14:\"secondaryColor\";s:7:\"#03a9f4\";s:13:\"tertiaryColor\";s:7:\"#327ae7\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-69.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-65.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/widgets-3.json\";}s:4:\"food\";a:16:{s:4:\"tags\";a:2:{s:13:\"blog-magazine\";s:15:\"Blog / Magazine\";s:4:\"food\";s:4:\"Food\";}s:10:\"minVersion\";s:5:\"6.0.3\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:1:{s:12:\"home_sidebar\";s:12:\"Home Sidebar\";}s:9:\"homeTitle\";s:9:\"Food Home\";s:12:\"previewImage\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2019/09/demo_food.png\";s:18:\"previewImageRetina\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2019/09/demo_food.png\";s:12:\"primaryColor\";s:7:\"#fc7523\";s:14:\"secondaryColor\";s:7:\"#f5f5f1\";s:13:\"tertiaryColor\";s:7:\"#ee5827\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-70.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2025/05/theme_options.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/widgets-2.json\";}s:9:\"nightclub\";a:15:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:6:\"events\";s:6:\"Events\";}s:10:\"minVersion\";s:5:\"6.0.2\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:18:\"Nightclub Homepage\";s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/08/demo_nightclub.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/08/demo_nightclub.jpg\";s:12:\"primaryColor\";s:7:\"#f63c81\";s:14:\"secondaryColor\";s:7:\"#46b1fd\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-71.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-68.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-8.json\";}s:7:\"galerie\";a:17:{s:4:\"tags\";a:1:{s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:3:\"5.9\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:1:{s:11:\"Artist Menu\";s:11:\"Artist Menu\";}s:9:\"homeTitle\";s:12:\"Galerie Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/galerie_preview.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/galerie_preview.jpg\";s:12:\"primaryColor\";s:7:\"#181818\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-72.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2025/03/theme_options.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/widget_data-4.json\";s:10:\"revSliders\";a:2:{i:0;s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/galerie-home-1.zip\";i:1;s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/feat-artworks-1.zip\";}}s:7:\"driving\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.9\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Driving Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/driving_preview.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/driving_preview.jpg\";s:12:\"primaryColor\";s:7:\"#7abc64\";s:14:\"secondaryColor\";s:7:\"#929aa3\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-73.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-70.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/03/widget_data-3.json\";}s:11:\"barber_shop\";a:16:{s:4:\"tags\";a:2:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:3:\"5.8\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:16:\"Barber Shop Home\";s:8:\"woopages\";a:4:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";}s:12:\"previewImage\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/barber_shop.jpg\";s:18:\"previewImageRetina\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/barber_shop.jpg\";s:12:\"primaryColor\";s:7:\"#be9359\";s:14:\"secondaryColor\";s:7:\"#686868\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-74.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-71.json\";s:14:\"widgetDataJSON\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/widget_data.json\";}s:14:\"cryptocurrency\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.8\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"avada_faq\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:19:\"Cryptocurrency Home\";s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/cryptocurrency.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/cryptocurrency.jpg\";s:12:\"primaryColor\";s:7:\"#4d39e9\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/avada-72.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-72.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/widget_data-3.json\";}s:3:\"seo\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:3:\"5.6\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:8:\"Seo Home\";s:12:\"previewImage\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/seo_thumbnail.jpg\";s:18:\"previewImageRetina\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/seo_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#ffa737\";s:14:\"secondaryColor\";s:7:\"#607afe\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-75.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-73.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/09/widgets-1.json\";s:10:\"revSliders\";a:1:{i:0;s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/avada-seo-hero-1.zip\";}}s:3:\"spa\";a:16:{s:4:\"tags\";a:1:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:3:\"5.6\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:8:\"Spa Home\";s:12:\"previewImage\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/spa_thumbnail.jpg\";s:18:\"previewImageRetina\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/spa_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#33a7b9\";s:14:\"secondaryColor\";s:7:\"#b9afa1\";s:13:\"tertiaryColor\";s:7:\"#6f727b\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-76.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-74.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/06/widgets-6.json\";s:12:\"fusionSlider\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/avada_slider-29-06-2022-2.zip\";}s:6:\"sports\";a:17:{s:4:\"tags\";a:2:{s:6:\"sports\";s:6:\"Sports\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.6\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:2:{s:15:\"singlepostright\";s:17:\"Single Post Right\";s:14:\"singlepostleft\";s:16:\"Single Post Left\";}s:9:\"homeTitle\";s:11:\"Sports Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/sports_thumbnail.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/sports_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#4ad575\";s:14:\"secondaryColor\";s:7:\"#747474\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-77.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-76.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/widget_data-8.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/fusion_slider-3.zip\";}s:6:\"movers\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.6\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Movers Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/movers_thumbnail.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2018/07/movers_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#6abf16\";s:14:\"secondaryColor\";s:7:\"#1675bf\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-78.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-77.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/04/widgets-2.json\";}s:5:\"salon\";a:16:{s:4:\"tags\";a:2:{s:8:\"one-page\";s:8:\"One Page\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:3:\"5.5\";s:4:\"shop\";b:0;s:8:\"features\";a:4:{i:0;s:4:\"page\";i:1;s:11:\"fusion_form\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:10:\"Salon Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/salon_thumbnail.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/salon_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#d1b4a0\";s:14:\"secondaryColor\";s:7:\"#f1345d\";s:13:\"tertiaryColor\";s:7:\"#494949\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-79.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-79.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2021/12/widgets-5.json\";s:10:\"revSliders\";a:2:{i:0;s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/small-featured-posts.zip\";i:1;s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/homepage-final.zip\";}}s:4:\"beer\";a:16:{s:4:\"tags\";a:2:{s:4:\"food\";s:4:\"Food\";s:6:\"events\";s:6:\"Events\";}s:10:\"minVersion\";s:3:\"5.5\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:9:\"Beer Home\";s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/beer_thumbnail.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/beer_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#917852\";s:14:\"secondaryColor\";s:7:\"#747474\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-80.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-82.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-9.json\";s:10:\"revSliders\";a:2:{i:0;s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/ingredients-slides.zip\";i:1;s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/homepage.zip\";}}s:11:\"electrician\";a:16:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.5\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:16:\"Electrician Home\";s:12:\"previewImage\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/electrician_thumbnail.jpg\";s:18:\"previewImageRetina\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/electrician_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#ffaa06\";s:14:\"secondaryColor\";s:7:\"#333645\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/01/avada-1.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-83.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2021/10/widgets.json\";s:10:\"revSliders\";a:1:{i:0;s:70:\"https://updates.theme-fusion.com/wp-content/uploads/2018/04/home-3.zip\";}}s:7:\"promote\";a:16:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:3:\"5.4\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Promote Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/promote_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/promote_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#2f576f\";s:14:\"secondaryColor\";s:7:\"#92c4d5\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-82.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-84.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/widget_data-3.json\";s:10:\"revSliders\";a:5:{i:0;s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/contact-1.zip\";i:1;s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/features-1.zip\";i:2;s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/home-slider-2.zip\";i:3;s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/trending-2.zip\";i:4;s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/upgrade-1.zip\";}}s:9:\"adventure\";a:16:{s:4:\"tags\";a:3:{s:8:\"one-page\";s:8:\"One Page\";s:9:\"portfolio\";s:9:\"Portfolio\";s:6:\"travel\";s:6:\"Travel\";}s:10:\"minVersion\";s:3:\"5.4\";s:4:\"shop\";b:0;s:8:\"features\";a:4:{i:0;s:4:\"page\";i:1;s:11:\"fusion_form\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:1;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:14:\"Adventure Home\";s:12:\"previewImage\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/adventure_thumbnail.jpg\";s:18:\"previewImageRetina\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/adventure_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#5889bd\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-83.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-85.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/09/widgets-4.json\";s:12:\"layerSliders\";a:1:{i:0;s:105:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/LayerSlider_Export_2018-01-02_at_10.36.58.zip\";}}s:6:\"launch\";a:15:{s:4:\"tags\";a:2:{s:11:\"coming-soon\";s:11:\"Coming Soon\";s:8:\"one-page\";s:8:\"One Page\";}s:10:\"minVersion\";s:3:\"5.4\";s:4:\"shop\";b:0;s:8:\"features\";a:4:{i:0;s:4:\"page\";i:1;s:11:\"fusion_form\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Launch Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/launch_thumbnail.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/launch_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#e23d31\";s:14:\"secondaryColor\";s:7:\"#ad9c89\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-84.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-86.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/widget_data-1.json\";}s:10:\"university\";a:17:{s:4:\"tags\";a:2:{s:9:\"education\";s:9:\"Education\";s:6:\"events\";s:6:\"Events\";}s:10:\"minVersion\";s:3:\"5.3\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:7:{s:9:\"Courses-1\";s:9:\"Courses-1\";s:9:\"Courses-2\";s:9:\"Courses-2\";s:9:\"Courses-3\";s:9:\"Courses-3\";s:8:\"Events-1\";s:8:\"Events-1\";s:8:\"Events-2\";s:8:\"Events-2\";s:8:\"Events-3\";s:8:\"Events-3\";s:8:\"Events-4\";s:8:\"Events-4\";}s:9:\"homeTitle\";s:15:\"University Home\";s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/university_thumbnail.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/university_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#f09a3e\";s:14:\"secondaryColor\";s:7:\"#00bcd4\";s:13:\"tertiaryColor\";s:7:\"#333333\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-85.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-88.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/03/widgets-1.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/fusion_slider-7.zip\";}s:7:\"finance\";a:16:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.3\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Finance Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/finance_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/finance_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#213d65\";s:14:\"secondaryColor\";s:7:\"#1cd6c3\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-86.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-89.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/widget_data-9.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/fusion_slider-6.zip\";}s:22:\"information_technology\";a:17:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.3\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:27:\"Information Technology Home\";s:12:\"previewImage\";s:96:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/information_technology_thumbnail.jpg\";s:18:\"previewImageRetina\";s:96:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/information_technology_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#6239bd\";s:14:\"secondaryColor\";s:7:\"#74c5da\";s:13:\"tertiaryColor\";s:7:\"#9aa2ac\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-87.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-90.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/widget_data-14.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/fusion_slider-2.zip\";s:10:\"revSliders\";a:5:{i:0;s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/about.zip\";i:1;s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/contact.zip\";i:2;s:68:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/home.zip\";i:3;s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/insight.zip\";i:4;s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/solutions.zip\";}}s:10:\"freelancer\";a:17:{s:4:\"tags\";a:3:{s:8:\"creative\";s:8:\"Creative\";s:13:\"blog-magazine\";s:15:\"Blog / Magazine\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:3:\"5.3\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:2:{s:11:\"Recent Work\";s:11:\"Recent Work\";s:7:\"Twitter\";s:7:\"Twitter\";}s:9:\"homeTitle\";s:15:\"Freelancer Home\";s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/freelancer_thumbnail.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/freelancer_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#fa225b\";s:14:\"secondaryColor\";s:7:\"#7a89ab\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-88.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-91.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/widget_data-11.json\";s:12:\"fusionSlider\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/avada_slider-22-04-2025.zip\";}s:7:\"dentist\";a:16:{s:4:\"tags\";a:2:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:3:\"5.3\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:9:\"avada_faq\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Dentist Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/dentist_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/dentist_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#4fc3a3\";s:14:\"secondaryColor\";s:7:\"#6487c2\";s:13:\"tertiaryColor\";s:7:\"#86939e\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-89.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-92.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/widget_data-13.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/11/fusion_slider-5.zip\";}s:7:\"science\";a:16:{s:4:\"tags\";a:1:{s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:3:\"5.2\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Science Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/science_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/science_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#25afb4\";s:14:\"secondaryColor\";s:7:\"#4c5166\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-90.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-93.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/widget_data-1.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/fusion_slider-1.zip\";}s:17:\"photography_light\";a:16:{s:4:\"tags\";a:2:{s:9:\"portfolio\";s:9:\"Portfolio\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:3:\"5.2\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:22:\"Photography Light Home\";s:12:\"previewImage\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/photolight_thumbnail.jpg\";s:18:\"previewImageRetina\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/photolight_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#867dab\";s:14:\"secondaryColor\";s:7:\"#e6b0c4\";s:13:\"tertiaryColor\";s:7:\"#7e8890\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/06/avada-3.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2026/06/theme_options-4.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2026/06/widgets-4.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/fusion_slider-2.zip\";}s:5:\"music\";a:17:{s:4:\"tags\";a:2:{s:9:\"portfolio\";s:9:\"Portfolio\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:3:\"5.2\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"fusion_icons\";i:4;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:2:{s:7:\"Twitter\";s:7:\"Twitter\";s:4:\"Post\";s:4:\"Post\";}s:9:\"homeTitle\";s:10:\"Music Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/music_thumbnail.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/music_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#ec4858\";s:14:\"secondaryColor\";s:7:\"#7d7b8d\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-93.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-95.json\";s:14:\"widgetDataJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/music_widget_data.json\";s:12:\"fusionSlider\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2017/07/fusion_slider.zip\";}s:8:\"creative\";a:17:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"5.1.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:13:\"CREATIVE HOME\";s:12:\"previewImage\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/creative_thumbnail.jpg\";s:18:\"previewImageRetina\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/creative_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#2176ff\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-94.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-96.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/09/widgets-3.json\";s:12:\"fusionSlider\";s:87:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/avada_slider-14-12-2021.zip\";s:10:\"revSliders\";a:1:{i:0;s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/post-slider-5.zip\";}}s:12:\"construction\";a:15:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"5.1.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";i:5;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:17:\"Construction Home\";s:12:\"previewImage\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/construction_thumbnail.jpg\";s:18:\"previewImageRetina\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/construction_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#fed03d\";s:14:\"secondaryColor\";s:7:\"#333333\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-95.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2025/09/theme_options-4.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/06/widgets-1.json\";}s:7:\"charity\";a:16:{s:4:\"tags\";a:1:{s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:5:\"5.1.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Charity Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/charity_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/charity_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#fec96b\";s:14:\"secondaryColor\";s:7:\"#ed6967\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-96.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-98.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/widget_data-11.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/fusion_slider-10.zip\";}s:7:\"daycare\";a:16:{s:4:\"tags\";a:1:{s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:5:\"5.1.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Daycare Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/daycare_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/daycare_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#3661b0\";s:14:\"secondaryColor\";s:7:\"#fb6667\";s:13:\"tertiaryColor\";s:7:\"#ffd263\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-97.xml\";s:16:\"themeOptionsJSON\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-99.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2023/03/widgets.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/fusion_slider-7.zip\";}s:12:\"veterinarian\";a:16:{s:4:\"tags\";a:1:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:5:\"5.1.0\";s:4:\"shop\";b:0;s:8:\"features\";a:7:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:11:\"fusion_form\";i:5;s:12:\"fusion_icons\";i:6;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:17:\"Veterinarian Home\";s:12:\"previewImage\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/vet_thumbnail.jpg\";s:18:\"previewImageRetina\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/vet_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#3ec492\";s:14:\"secondaryColor\";s:7:\"#3d434c\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-98.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-100.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/widget_data-13.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2017/03/fusion_slider-9.zip\";}s:10:\"technology\";a:16:{s:4:\"tags\";a:2:{s:9:\"education\";s:9:\"Education\";s:8:\"one-page\";s:8:\"One Page\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:1;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:15:\"Technology Home\";s:12:\"previewImage\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/technology_thumbnail-1.jpg\";s:18:\"previewImageRetina\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/technology_thumbnail-1.jpg\";s:12:\"primaryColor\";s:7:\"#619e85\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#e5e5e5\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-100.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-101.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/widget_data-18.json\";s:12:\"layerSliders\";a:2:{i:0;s:105:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/LayerSlider_Export_2019-10-04_at_16.16.42.zip\";i:1;s:105:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/LayerSlider_Export_2019-10-04_at_16.16.51.zip\";}}s:6:\"health\";a:16:{s:4:\"tags\";a:2:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Health Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/health_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/medical_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#3bafbf\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-101.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-102.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/widget_data-21.json\";s:12:\"fusionSlider\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/fusion_slider-9.zip\";}s:7:\"wedding\";a:16:{s:4:\"tags\";a:2:{s:6:\"events\";s:6:\"Events\";s:8:\"one-page\";s:8:\"One Page\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Wedding Home\";s:12:\"previewImage\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/wedding_thumbnail-1.jpg\";s:18:\"previewImageRetina\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/wedding_thumbnail-1.jpg\";s:12:\"primaryColor\";s:7:\"#90a8ad\";s:14:\"secondaryColor\";s:7:\"#b9675e\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2026/04/avada-2.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2026/04/theme_options.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/01/widgets-4.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/fusion_slider-13.zip\";}s:6:\"resume\";a:16:{s:4:\"tags\";a:3:{s:8:\"one-page\";s:8:\"One Page\";s:9:\"portfolio\";s:9:\"Portfolio\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"page\";i:1;s:15:\"avada_portfolio\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Resume Home\";s:12:\"previewImage\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/resume_thumbnail-1.jpg\";s:18:\"previewImageRetina\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/resume_thumbnail-1.jpg\";s:12:\"primaryColor\";s:7:\"#f4ad24\";s:14:\"secondaryColor\";s:7:\"#7e8890\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2025/12/avada.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2025/12/theme_options.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/widget_data-13.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/09/fusion_slider-10.zip\";}s:11:\"photography\";a:16:{s:4:\"tags\";a:2:{s:9:\"portfolio\";s:9:\"Portfolio\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:16:\"Photography Home\";s:12:\"previewImage\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/photography_thumbnail.jpg\";s:18:\"previewImageRetina\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/photography_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#777777\";s:14:\"secondaryColor\";s:7:\"#747474\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-104.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-105.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2021/12/widgets-1.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-73.zip\";}s:3:\"gym\";a:16:{s:4:\"tags\";a:2:{s:6:\"sports\";s:6:\"Sports\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:8:\"Gym Home\";s:12:\"previewImage\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/gym_thumbnail.jpg\";s:18:\"previewImageRetina\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/gym_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#ee6059\";s:14:\"secondaryColor\";s:7:\"#000000\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-105.xml\";s:16:\"themeOptionsJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2025/08/theme_options.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2021/11/widgets-2.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-57.zip\";}s:11:\"modern_shop\";a:18:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:1:{s:4:\"Shop\";s:4:\"Shop\";}s:9:\"homeTitle\";s:16:\"Modern Shop Home\";s:8:\"woopages\";a:11:{s:24:\"woocommerce_shop_page_id\";s:22:\"Full Shop With Sidebar\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:23:\"woocommerce_pay_page_id\";s:16:\"Checkout → Pay\";s:26:\"woocommerce_thanks_page_id\";s:14:\"Order Received\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";s:32:\"woocommerce_edit_address_page_id\";s:15:\"Edit My Address\";s:30:\"woocommerce_view_order_page_id\";s:10:\"View Order\";s:35:\"woocommerce_change_password_page_id\";s:15:\"Change Password\";s:26:\"woocommerce_logout_page_id\";s:6:\"Logout\";s:33:\"woocommerce_lost_password_page_id\";s:13:\"Lost Password\";}s:12:\"previewImage\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/modern_shop_thumbnail.jpg\";s:18:\"previewImageRetina\";s:85:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/modern_shop_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#78bca1\";s:14:\"secondaryColor\";s:7:\"#747474\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-106.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-107.json\";s:14:\"widgetDataJSON\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/modern_shop_widget_data.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-72.zip\";}s:12:\"classic_shop\";a:20:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:1;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:9:{s:3:\"Men\";s:3:\"Men\";s:5:\"Women\";s:5:\"Women\";s:11:\"Accessories\";s:11:\"Accessories\";s:15:\"ProductsSidebar\";s:16:\"Products Sidebar\";s:14:\"ContentWidget1\";s:16:\"Content Widget 1\";s:14:\"ContentWidget2\";s:16:\"Content Widget 2\";s:14:\"ContentWidget3\";s:16:\"Content Widget 3\";s:14:\"ContentWidget4\";s:16:\"Content Widget 4\";s:9:\"Promotion\";s:9:\"Promotion\";}s:9:\"homeTitle\";s:19:\"Classic Shop Home 1\";s:8:\"woopages\";a:11:{s:24:\"woocommerce_shop_page_id\";s:15:\"Shop Full Width\";s:24:\"woocommerce_cart_page_id\";s:13:\"Shopping Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:23:\"woocommerce_pay_page_id\";s:16:\"Checkout → Pay\";s:26:\"woocommerce_thanks_page_id\";s:14:\"Order Received\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";s:32:\"woocommerce_edit_address_page_id\";s:15:\"Edit My Address\";s:30:\"woocommerce_view_order_page_id\";s:10:\"View Order\";s:35:\"woocommerce_change_password_page_id\";s:15:\"Change Password\";s:26:\"woocommerce_logout_page_id\";s:6:\"Logout\";s:33:\"woocommerce_lost_password_page_id\";s:13:\"Lost Password\";}s:22:\"woo_product_attributes\";a:2:{i:0;a:5:{s:4:\"name\";s:5:\"Color\";s:4:\"slug\";s:8:\"pa_color\";s:4:\"type\";s:11:\"avada_color\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}i:1;a:5:{s:4:\"name\";s:4:\"Size\";s:4:\"slug\";s:7:\"pa_size\";s:4:\"type\";s:12:\"avada_button\";s:8:\"order_by\";s:10:\"menu_order\";s:12:\"has_archives\";s:1:\"0\";}}s:12:\"previewImage\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/classic_shop_thumbnail.jpg\";s:18:\"previewImageRetina\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/classic_shop_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#427ed1\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-107.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-108.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/widget_data-55.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-58.zip\";s:10:\"revSliders\";a:1:{i:0;s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/home3-rs-4.zip\";}}s:15:\"landing_product\";a:17:{s:4:\"tags\";a:2:{s:8:\"one-page\";s:8:\"One Page\";s:4:\"shop\";s:4:\"Shop\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:1;s:8:\"features\";a:3:{i:0;s:4:\"page\";i:1;s:12:\"fusion_icons\";i:2;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:1;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:1;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:20:\"Landing Product Home\";s:8:\"woopages\";a:11:{s:24:\"woocommerce_shop_page_id\";s:4:\"Shop\";s:24:\"woocommerce_cart_page_id\";s:4:\"Cart\";s:28:\"woocommerce_checkout_page_id\";s:8:\"Checkout\";s:23:\"woocommerce_pay_page_id\";s:16:\"Checkout → Pay\";s:26:\"woocommerce_thanks_page_id\";s:14:\"Order Received\";s:29:\"woocommerce_myaccount_page_id\";s:10:\"My Account\";s:32:\"woocommerce_edit_address_page_id\";s:15:\"Edit My Address\";s:30:\"woocommerce_view_order_page_id\";s:10:\"View Order\";s:35:\"woocommerce_change_password_page_id\";s:15:\"Change Password\";s:26:\"woocommerce_logout_page_id\";s:6:\"Logout\";s:33:\"woocommerce_lost_password_page_id\";s:13:\"Lost Password\";}s:12:\"previewImage\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/landing_product_thumbnail.jpg\";s:18:\"previewImageRetina\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/landing_product_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#35baf2\";s:14:\"secondaryColor\";s:7:\"#72849c\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-108.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-109.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/widget_data-60.json\";s:10:\"revSliders\";a:1:{i:0;s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/one-page-lp-5.zip\";}}s:5:\"forum\";a:17:{s:4:\"tags\";a:2:{s:7:\"bbpress\";s:7:\"bbPress\";s:9:\"education\";s:9:\"Education\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:1;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:5:{s:11:\"NewsSidebar\";s:12:\"News Sidebar\";s:12:\"ForumSidebar\";s:13:\"Forum Sidebar\";s:12:\"AppleSidebar\";s:13:\"Apple Sidebar\";s:14:\"AndroidSidebar\";s:15:\"Android Sidebar\";s:16:\"MicrosoftSidebar\";s:17:\"Microsoft Sidebar\";}s:9:\"homeTitle\";s:10:\"Forum Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/forum_thumbnail.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/forum_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#25a9bd\";s:14:\"secondaryColor\";s:7:\"#ff8d61\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-109.xml\";s:16:\"themeOptionsJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-1.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2024/05/widgets-4.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-62.zip\";}s:6:\"church\";a:17:{s:4:\"tags\";a:2:{s:9:\"education\";s:9:\"Education\";s:6:\"events\";s:6:\"Events\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";i:5;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:1;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:8:\"sidebars\";a:1:{s:11:\"PageSidebar\";s:12:\"Page Sidebar\";}s:9:\"homeTitle\";s:11:\"Church Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/church_thumbnail.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/church_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#3f7ccd\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-111.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-110.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/11/widgets-3.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-61.zip\";}s:4:\"cafe\";a:16:{s:4:\"tags\";a:1:{s:4:\"food\";s:4:\"Food\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:9:\"Cafe Home\";s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/cafe_thumbnail.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/cafe_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#c0996b\";s:14:\"secondaryColor\";s:7:\"#747474\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-112.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-111.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/06/widgets-4.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-55.zip\";}s:6:\"travel\";a:16:{s:4:\"tags\";a:1:{s:6:\"travel\";s:6:\"Travel\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Travel Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/travel_thumbnail.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/travel_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#6666a4\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-113.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-112.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/widget_data-76.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-66.zip\";}s:5:\"hotel\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:6:\"travel\";s:6:\"Travel\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:10:\"Hotel Home\";s:12:\"previewImage\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/hotel_thumbnail.jpg\";s:18:\"previewImageRetina\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/hotel_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#cbaa5c\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-114.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-113.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/06/widgets-8.json\";s:12:\"fusionSlider\";s:89:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/avada_slider-29-06-2022-2.zip\";}s:12:\"architecture\";a:16:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"fusion_icons\";i:5;s:12:\"avada_layout\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:17:\"Architecture Home\";s:12:\"previewImage\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/architecture-1.jpg\";s:18:\"previewImageRetina\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/arch_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#2ba0a3\";s:14:\"secondaryColor\";s:7:\"#868a92\";s:13:\"tertiaryColor\";s:7:\"#24272d\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-115.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-114.json\";s:14:\"widgetDataJSON\";s:74:\"https://updates.theme-fusion.com/wp-content/uploads/2022/01/widgets-1.json\";s:12:\"fusionSlider\";s:90:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-architecture.zip\";}s:7:\"hosting\";a:16:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"Hosting Home\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/hosting_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/hosting_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#f1574d\";s:14:\"secondaryColor\";s:7:\"#3d4c68\";s:13:\"tertiaryColor\";s:7:\"#a7c9e7\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-116.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-115.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/widget_data-78.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-56.zip\";}s:3:\"law\";a:16:{s:4:\"tags\";a:1:{s:9:\"corporate\";s:9:\"Corporate\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fusion_form\";i:3;s:12:\"avada_layout\";i:4;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:8:\"Law Home\";s:12:\"previewImage\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/law_thumbnail.jpg\";s:18:\"previewImageRetina\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/law_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#549f97\";s:14:\"secondaryColor\";s:7:\"#3b4251\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-118.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-116.json\";s:14:\"widgetDataJSON\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/law_widget_data.json\";s:12:\"fusionSlider\";s:93:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-05-14-2020_1206.zip\";}s:7:\"fashion\";a:16:{s:4:\"tags\";a:2:{s:8:\"creative\";s:8:\"Creative\";s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:12:\"FASHION HOME\";s:12:\"previewImage\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fashion_thumbnail.jpg\";s:18:\"previewImageRetina\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fashion_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#4ca9b4\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-119.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-117.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/widget_data-65.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-68.zip\";}s:9:\"lifestyle\";a:16:{s:4:\"tags\";a:2:{s:13:\"health-beauty\";s:19:\"Health &amp; Beauty\";s:8:\"creative\";s:8:\"Creative\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"page\";i:1;s:15:\"avada_portfolio\";i:2;s:4:\"post\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:14:\"Lifestyle Home\";s:12:\"previewImage\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/lifestyle_thumbnail.jpg\";s:18:\"previewImageRetina\";s:83:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/lifestyle_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#f05858\";s:14:\"secondaryColor\";s:7:\"#595f6b\";s:13:\"tertiaryColor\";s:7:\"#eae9e9\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-120.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-118.json\";s:14:\"widgetDataJSON\";s:78:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/widget-data-1.json\";s:12:\"fusionSlider\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-71.zip\";}s:3:\"app\";a:16:{s:4:\"tags\";a:1:{s:8:\"one-page\";s:8:\"One Page\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:4:{i:0;s:4:\"page\";i:1;s:11:\"fusion_form\";i:2;s:12:\"avada_layout\";i:3;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:8:\"App Home\";s:12:\"previewImage\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/app_thumbnail.jpg\";s:18:\"previewImageRetina\";s:77:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/app_thumbnail.jpg\";s:12:\"primaryColor\";s:7:\"#1e73be\";s:14:\"secondaryColor\";s:7:\"#8c8989\";s:13:\"tertiaryColor\";s:7:\"#ffffff\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-122.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-119.json\";s:14:\"widgetDataJSON\";s:79:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/widget_data-64.json\";s:12:\"fusionSlider\";s:81:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-app.zip\";}s:6:\"agency\";a:17:{s:4:\"tags\";a:2:{s:9:\"corporate\";s:9:\"Corporate\";s:9:\"portfolio\";s:9:\"Portfolio\";}s:10:\"minVersion\";s:5:\"5.0.0\";s:4:\"shop\";b:0;s:8:\"features\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:11:\"fusion_form\";i:4;s:12:\"avada_layout\";i:5;s:12:\"fusion_icons\";}s:19:\"plugin_dependencies\";a:9:{s:11:\"woocommerce\";b:0;s:19:\"the-events-calendar\";b:0;s:14:\"contact-form-7\";b:0;s:7:\"bbpress\";b:0;s:11:\"LayerSlider\";b:0;s:9:\"revslider\";b:0;s:26:\"advanced-custom-fields-pro\";b:0;s:11:\"convertplug\";b:0;s:6:\"leadin\";b:0;}s:3:\"new\";b:0;s:9:\"homeTitle\";s:11:\"Agency Home\";s:12:\"previewImage\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/agency_thumbnail.jpg\";s:18:\"previewImageRetina\";s:80:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/agency_thumbnail.jpg\";s:20:\"previewImageDetailed\";s:70:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/agency.jpg\";s:12:\"primaryColor\";s:7:\"#6796bf\";s:14:\"secondaryColor\";s:7:\"#ffffff\";s:13:\"tertiaryColor\";s:7:\"#000000\";s:8:\"avadaXML\";s:73:\"https://updates.theme-fusion.com/wp-content/uploads/2025/10/avada-123.xml\";s:16:\"themeOptionsJSON\";s:82:\"https://updates.theme-fusion.com/wp-content/uploads/2024/12/theme_options-120.json\";s:14:\"widgetDataJSON\";s:72:\"https://updates.theme-fusion.com/wp-content/uploads/2022/01/widgets.json\";s:12:\"fusionSlider\";s:93:\"https://updates.theme-fusion.com/wp-content/uploads/2016/08/fusion_slider-05-14-2020_1218.zip\";}}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("16195","_transient_timeout_wp_rocket_pricing","1783027273","off"),
("16196","_transient_wp_rocket_pricing","O:8:\"stdClass\":3:{s:8:\"licenses\";O:8:\"stdClass\":7:{s:6:\"single\";O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Single\";s:6:\"prices\";O:8:\"stdClass\":3:{s:7:\"regular\";i:59;s:4:\"sale\";d:41.2999999999999971578290569595992565155029296875;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:47.2000000000000028421709430404007434844970703125;s:14:\"is_grandmother\";i:59;s:15:\"not_grandfather\";i:59;s:10:\"is_expired\";i:59;}}s:8:\"websites\";i:1;}s:4:\"plus\";O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Plus\";s:6:\"prices\";O:8:\"stdClass\":4:{s:11:\"from_single\";O:8:\"stdClass\":3:{s:7:\"regular\";i:60;s:4:\"sale\";i:42;s:5:\"stack\";b:0;}s:7:\"regular\";i:119;s:4:\"sale\";d:83.30000000000001136868377216160297393798828125;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:95.2000000000000028421709430404007434844970703125;s:14:\"is_grandmother\";i:119;s:15:\"not_grandfather\";i:119;s:10:\"is_expired\";i:119;}}s:8:\"websites\";i:3;}s:8:\"infinite\";O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Infinite\";s:6:\"prices\";O:8:\"stdClass\":5:{s:11:\"from_single\";O:8:\"stdClass\":3:{s:7:\"regular\";i:240;s:4:\"sale\";i:168;s:5:\"stack\";b:0;}s:9:\"from_plus\";O:8:\"stdClass\":3:{s:7:\"regular\";i:180;s:4:\"sale\";i:126;s:5:\"stack\";b:0;}s:7:\"regular\";i:299;s:4:\"sale\";d:209.30000000000001136868377216160297393798828125;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:239.19999999999998863131622783839702606201171875;s:14:\"is_grandmother\";i:299;s:15:\"not_grandfather\";i:299;s:10:\"is_expired\";i:299;}}s:8:\"websites\";s:9:\"unlimited\";}s:7:\"multi10\";O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Growth\";s:6:\"prices\";O:8:\"stdClass\":3:{s:7:\"regular\";i:199;s:4:\"sale\";d:139.30000000000001136868377216160297393798828125;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:159.19999999999998863131622783839702606201171875;s:14:\"is_grandmother\";i:199;s:15:\"not_grandfather\";i:199;s:10:\"is_expired\";i:199;}}s:8:\"websites\";i:10;}s:7:\"multi50\";O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Multi 50\";s:6:\"prices\";O:8:\"stdClass\":6:{s:11:\"from_single\";O:8:\"stdClass\":3:{s:7:\"regular\";i:240;s:4:\"sale\";i:168;s:5:\"stack\";b:1;}s:9:\"from_plus\";O:8:\"stdClass\":3:{s:7:\"regular\";i:180;s:4:\"sale\";i:126;s:5:\"stack\";b:1;}s:12:\"from_multi10\";O:8:\"stdClass\":3:{s:7:\"regular\";i:100;s:4:\"sale\";i:70;s:5:\"stack\";b:1;}s:7:\"regular\";i:299;s:4:\"sale\";d:209.30000000000001136868377216160297393798828125;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:239.19999999999998863131622783839702606201171875;s:14:\"is_grandmother\";i:299;s:15:\"not_grandfather\";i:299;s:10:\"is_expired\";i:299;}}s:8:\"websites\";i:50;}s:8:\"multi100\";O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Multi 100\";s:6:\"prices\";O:8:\"stdClass\":7:{s:11:\"from_single\";O:8:\"stdClass\":3:{s:7:\"regular\";i:340;s:4:\"sale\";i:238;s:5:\"stack\";b:1;}s:9:\"from_plus\";O:8:\"stdClass\":3:{s:7:\"regular\";i:280;s:4:\"sale\";i:196;s:5:\"stack\";b:1;}s:12:\"from_multi10\";O:8:\"stdClass\":3:{s:7:\"regular\";i:200;s:4:\"sale\";i:140;s:5:\"stack\";b:1;}s:12:\"from_multi50\";O:8:\"stdClass\":3:{s:7:\"regular\";i:100;s:4:\"sale\";i:70;s:5:\"stack\";b:1;}s:7:\"regular\";i:399;s:4:\"sale\";d:279.30000000000001136868377216160297393798828125;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:319.19999999999998863131622783839702606201171875;s:14:\"is_grandmother\";i:399;s:15:\"not_grandfather\";i:399;s:10:\"is_expired\";i:399;}}s:8:\"websites\";i:100;}s:8:\"multi500\";O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Multi 500\";s:6:\"prices\";O:8:\"stdClass\":8:{s:11:\"from_single\";O:8:\"stdClass\":3:{s:7:\"regular\";i:540;s:4:\"sale\";i:378;s:5:\"stack\";b:1;}s:9:\"from_plus\";O:8:\"stdClass\":3:{s:7:\"regular\";i:480;s:4:\"sale\";i:336;s:5:\"stack\";b:1;}s:12:\"from_multi10\";O:8:\"stdClass\":3:{s:7:\"regular\";i:400;s:4:\"sale\";i:280;s:5:\"stack\";b:1;}s:12:\"from_multi50\";O:8:\"stdClass\":3:{s:7:\"regular\";i:300;s:4:\"sale\";i:210;s:5:\"stack\";b:1;}s:13:\"from_multi100\";O:8:\"stdClass\":3:{s:7:\"regular\";i:200;s:4:\"sale\";i:140;s:5:\"stack\";b:1;}s:7:\"regular\";i:599;s:4:\"sale\";d:419.30000000000001136868377216160297393798828125;s:7:\"renewal\";O:8:\"stdClass\":4:{s:14:\"is_grandfather\";d:479.19999999999998863131622783839702606201171875;s:14:\"is_grandmother\";i:599;s:15:\"not_grandfather\";i:599;s:10:\"is_expired\";i:599;}}s:8:\"websites\";i:500;}}s:8:\"renewals\";O:8:\"stdClass\":4:{s:10:\"extra_days\";i:15;s:16:\"grandfather_date\";i:1640995200;s:16:\"grandmother_date\";i:315532800;s:16:\"discount_percent\";O:8:\"stdClass\":3:{s:14:\"is_grandfather\";i:20;s:15:\"not_grandfather\";i:0;s:10:\"is_expired\";i:0;}}s:5:\"promo\";O:8:\"stdClass\":4:{s:4:\"name\";s:11:\"Anniversary\";s:16:\"discount_percent\";i:30;s:10:\"start_date\";i:1782172800;s:8:\"end_date\";i:1783468799;}}","off"),
("16203","_transient_timeout_GFCache_60f4e169ff760668debfa5237f6695b6","1783070481","off"),
("16204","_transient_GFCache_60f4e169ff760668debfa5237f6695b6","a:83:{s:12:\"gravityforms\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:7:\"2.2.6.5\";s:14:\"version_latest\";s:7:\"2.2.6.5\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:65:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms.zip\";s:10:\"url_latest\";s:65:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms.zip\";}s:10:\"gravitycrm\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";s:20:\"minimum_requirements\";a:0:{}}s:21:\"gravityforms2checkout\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.1\";s:14:\"version_latest\";s:5:\"2.4.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms2checkout.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityforms2checkout.zip\";}s:26:\"gravityformsactivecampaign\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsactivecampaign.zip\";s:10:\"url_latest\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsactivecampaign.zip\";}s:32:\"gravityformsadvancedpostcreation\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.1\";s:14:\"version_latest\";s:7:\"1.6.1.1\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.9.24\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:32:\"gravityformsadvancedpostcreation\";s:12:\"parent_title\";s:29:\"Advanced Post Creation Add-On\";}}s:3:\"url\";s:85:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsadvancedpostcreation.zip\";s:10:\"url_latest\";s:85:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsadvancedpostcreation.zip\";}s:20:\"gravityformsagilecrm\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsagilecrm.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsagilecrm.zip\";}s:19:\"gravityformsakismet\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsakismet.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsakismet.zip\";}s:24:\"gravityformsauthorizenet\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsauthorizenet.zip\";s:10:\"url_latest\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsauthorizenet.zip\";}s:18:\"gravityformsaweber\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.2.0\";s:14:\"version_latest\";s:5:\"4.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsaweber.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsaweber.zip\";}s:21:\"gravityformsbatchbook\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbatchbook.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbatchbook.zip\";}s:18:\"gravityformsbreeze\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbreeze.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbreeze.zip\";}s:17:\"gravityformsbrevo\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.0.0\";s:14:\"version_latest\";s:5:\"1.0.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbrevo.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsbrevo.zip\";}s:27:\"gravityformscampaignmonitor\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.1.1\";s:14:\"version_latest\";s:5:\"4.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscampaignmonitor.zip\";s:10:\"url_latest\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscampaignmonitor.zip\";}s:20:\"gravityformscampfire\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:20:\"minimum_requirements\";a:0:{}}s:22:\"gravityformscapsulecrm\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscapsulecrm.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscapsulecrm.zip\";}s:15:\"gravityformscf7\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.0-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscf7.zip\";s:10:\"url_latest\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscf7.zip\";}s:26:\"gravityformschainedselects\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:7:\"1.8.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformschainedselects.zip\";s:10:\"url_latest\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformschainedselects.zip\";}s:23:\"gravityformscleverreach\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.9.0\";s:14:\"version_latest\";s:5:\"1.9.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscleverreach.zip\";s:10:\"url_latest\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscleverreach.zip\";}s:15:\"gravityformscli\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscli.zip\";s:10:\"url_latest\";s:68:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscli.zip\";}s:27:\"gravityformsconstantcontact\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:7:\"1.8.0.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconstantcontact.zip\";s:10:\"url_latest\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconstantcontact.zip\";}s:31:\"gravityformsconversationalforms\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.1\";s:14:\"version_latest\";s:5:\"1.7.1\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.9.24\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:31:\"gravityformsconversationalforms\";s:12:\"parent_title\";s:27:\"Conversational Forms Add-On\";}}s:3:\"url\";s:84:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconversationalforms.zip\";s:10:\"url_latest\";s:84:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconversationalforms.zip\";}s:22:\"gravityformsconvertkit\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.0.1\";s:14:\"version_latest\";s:5:\"2.0.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconvertkit.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsconvertkit.zip\";}s:19:\"gravityformscoupons\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.5.1\";s:14:\"version_latest\";s:7:\"3.5.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscoupons.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformscoupons.zip\";}s:17:\"gravityformsdebug\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0.beta12\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdebug.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdebug.zip\";}s:16:\"gravityformsdrip\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdrip.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdrip.zip\";}s:19:\"gravityformsdropbox\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.3.1\";s:14:\"version_latest\";s:7:\"3.3.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdropbox.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsdropbox.zip\";}s:24:\"gravityformsemailoctopus\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.0.0\";s:14:\"version_latest\";s:5:\"2.0.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemailoctopus.zip\";s:10:\"url_latest\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemailoctopus.zip\";}s:16:\"gravityformsemma\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemma.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsemma.zip\";}s:20:\"gravityformsfeedback\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfeedback.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfeedback.zip\";}s:22:\"gravityformsfreshbooks\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfreshbooks.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsfreshbooks.zip\";}s:23:\"gravityformsgeolocation\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.2\";s:14:\"version_latest\";s:5:\"1.5.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgeolocation.zip\";s:10:\"url_latest\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgeolocation.zip\";}s:23:\"gravityformsgetresponse\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.9.1\";s:14:\"version_latest\";s:5:\"1.9.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgetresponse.zip\";s:10:\"url_latest\";s:76:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgetresponse.zip\";}s:27:\"gravityformsgoogleanalytics\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.1\";s:14:\"version_latest\";s:5:\"2.4.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogleanalytics.zip\";s:10:\"url_latest\";s:80:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogleanalytics.zip\";}s:22:\"gravityformsgoogledocs\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogledocs.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgoogledocs.zip\";}s:24:\"gravityformsgooglesheets\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgooglesheets.zip\";s:10:\"url_latest\";s:77:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgooglesheets.zip\";}s:21:\"gravityformsgutenberg\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgutenberg.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsgutenberg.zip\";}s:21:\"gravityformshelpscout\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:7:\"2.4.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshelpscout.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshelpscout.zip\";}s:20:\"gravityformshighrise\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshighrise.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshighrise.zip\";}s:19:\"gravityformshipchat\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";s:20:\"minimum_requirements\";a:0:{}}s:19:\"gravityformshubspot\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.0.3\";s:14:\"version_latest\";s:5:\"3.0.3\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshubspot.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformshubspot.zip\";}s:20:\"gravityformsicontact\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsicontact.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsicontact.zip\";}s:19:\"gravityformsklaviyo\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:12:\"0.1.0-beta.1\";s:14:\"version_latest\";s:12:\"0.1.0-beta.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsklaviyo.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsklaviyo.zip\";}s:19:\"gravityformslogging\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformslogging.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformslogging.zip\";}s:19:\"gravityformsmadmimi\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmadmimi.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmadmimi.zip\";}s:21:\"gravityformsmailchimp\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.7.2\";s:14:\"version_latest\";s:5:\"5.7.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailchimp.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailchimp.zip\";}s:22:\"gravityformsmailerlite\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.1.0\";s:14:\"version_latest\";s:5:\"1.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailerlite.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailerlite.zip\";}s:19:\"gravityformsmailgun\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailgun.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailgun.zip\";}s:19:\"gravityformsmailjet\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailjet.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmailjet.zip\";}s:22:\"gravityformsmoderation\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.3.0\";s:14:\"version_latest\";s:5:\"1.3.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmoderation.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmoderation.zip\";}s:18:\"gravityformsmollie\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.2\";s:14:\"version_latest\";s:5:\"1.8.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmollie.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsmollie.zip\";}s:18:\"gravityformsnotion\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.0-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsnotion.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsnotion.zip\";}s:26:\"gravityformspartialentries\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.0\";s:14:\"version_latest\";s:5:\"1.8.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspartialentries.zip\";s:10:\"url_latest\";s:79:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspartialentries.zip\";}s:18:\"gravityformspaypal\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypal.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypal.zip\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:0:\"\";}s:29:\"gravityformspaypalpaymentspro\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:82:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpaymentspro.zip\";s:10:\"url_latest\";s:82:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpaymentspro.zip\";}s:21:\"gravityformspaypalpro\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpro.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspaypalpro.zip\";}s:20:\"gravityformspicatcha\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";s:20:\"minimum_requirements\";a:0:{}}s:16:\"gravityformspipe\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspipe.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspipe.zip\";}s:17:\"gravityformspolls\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.4.0\";s:14:\"version_latest\";s:5:\"4.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspolls.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspolls.zip\";}s:18:\"gravityformspopups\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspopups.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspopups.zip\";}s:20:\"gravityformspostmark\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.4.0\";s:14:\"version_latest\";s:5:\"1.4.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspostmark.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformspostmark.zip\";}s:16:\"gravityformsppcp\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.0.2\";s:14:\"version_latest\";s:5:\"4.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsppcp.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsppcp.zip\";}s:16:\"gravityformsquiz\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.3.1\";s:14:\"version_latest\";s:5:\"4.3.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsquiz.zip\";s:10:\"url_latest\";s:69:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsquiz.zip\";}s:21:\"gravityformsrecaptcha\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.2\";s:14:\"version_latest\";s:5:\"2.2.2\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:5:\"2.9.5\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:21:\"gravityformsrecaptcha\";s:12:\"parent_title\";s:16:\"reCAPTCHA Add-On\";}}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrecaptcha.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrecaptcha.zip\";}s:19:\"gravityformsrestapi\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrestapi.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsrestapi.zip\";}s:22:\"gravityformssalesforce\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.0.0\";s:14:\"version_latest\";s:5:\"2.0.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssalesforce.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssalesforce.zip\";}s:20:\"gravityformssendgrid\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.6.0\";s:14:\"version_latest\";s:5:\"1.6.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssendgrid.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssendgrid.zip\";}s:21:\"gravityformssignature\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.9.0\";s:14:\"version_latest\";s:7:\"4.9.1.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssignature.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssignature.zip\";}s:17:\"gravityformsslack\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsslack.zip\";s:10:\"url_latest\";s:70:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsslack.zip\";}s:18:\"gravityformssquare\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.5.1\";s:14:\"version_latest\";s:5:\"2.5.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssquare.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssquare.zip\";}s:18:\"gravityformsstripe\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"6.0.3\";s:14:\"version_latest\";s:5:\"6.0.3\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.9.26\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:18:\"gravityformsstripe\";s:12:\"parent_title\";s:13:\"Stripe Add-On\";}}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsstripe.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsstripe.zip\";}s:18:\"gravityformssurvey\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.2.1\";s:14:\"version_latest\";s:5:\"4.2.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssurvey.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformssurvey.zip\";}s:18:\"gravityformstrello\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:7:\"2.2.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstrello.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstrello.zip\";}s:21:\"gravityformsturnstile\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.5.0\";s:14:\"version_latest\";s:5:\"1.5.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsturnstile.zip\";s:10:\"url_latest\";s:74:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsturnstile.zip\";}s:18:\"gravityformstwilio\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"3.1.1\";s:14:\"version_latest\";s:5:\"3.1.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstwilio.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformstwilio.zip\";}s:28:\"gravityformsuserregistration\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"5.5.0\";s:14:\"version_latest\";s:5:\"5.5.0\";s:20:\"minimum_requirements\";a:1:{i:0;a:6:{s:25:\"minimum_requirements_name\";s:13:\"Gravity Forms\";s:25:\"minimum_requirements_slug\";s:12:\"gravityforms\";s:28:\"minimum_requirements_version\";s:6:\"2.10.3\";s:35:\"minimum_requirements_version_latest\";s:6:\"2.10.5\";s:11:\"parent_slug\";s:28:\"gravityformsuserregistration\";s:12:\"parent_title\";s:24:\"User Registration Add-On\";}}s:3:\"url\";s:81:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsuserregistration.zip\";s:10:\"url_latest\";s:81:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsuserregistration.zip\";}s:22:\"gravityformsversioning\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.1-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsversioning.zip\";s:10:\"url_latest\";s:75:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformsversioning.zip\";}s:20:\"gravityformswebhooks\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.7.0\";s:14:\"version_latest\";s:5:\"1.7.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswebhooks.zip\";s:10:\"url_latest\";s:73:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswebhooks.zip\";}s:19:\"gravityformswpforms\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:13:\"0.1.0-alpha.1\";s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswpforms.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformswpforms.zip\";}s:18:\"gravityformszapier\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"4.5.1\";s:14:\"version_latest\";s:5:\"4.5.1\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszapier.zip\";s:10:\"url_latest\";s:71:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszapier.zip\";}s:19:\"gravityformszohocrm\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.4.0\";s:14:\"version_latest\";s:7:\"2.4.0.2\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszohocrm.zip\";s:10:\"url_latest\";s:72:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravityformszohocrm.zip\";}s:11:\"gravitysmtp\";a:6:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.2.0\";s:14:\"version_latest\";s:5:\"2.2.0\";s:20:\"minimum_requirements\";a:0:{}s:3:\"url\";s:64:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravitysmtp.zip\";s:10:\"url_latest\";s:64:\"https://f004.backblazeb2.com/file/gpltimes/gfapi/gravitysmtp.zip\";}s:7:\"testing\";a:4:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:5:\"1.www\";s:20:\"minimum_requirements\";a:0:{}}}","off"),
("16205","_transient_timeout_GFCache_4aadc0fbdc79b9431a83b1450701d787","1783070481","off"),
("16206","_transient_GFCache_4aadc0fbdc79b9431a83b1450701d787","s:915:\"O:59:\"Gravity_Forms\\Gravity_Forms\\License\\GF_License_API_Response\":5:{s:4:\"data\";a:1:{i:0;a:19:{s:15:\"license_key_md5\";s:32:\"B5E0B5F8DD8689E6ACA49DD6E6E1A930\";s:12:\"date_created\";s:19:\"2023-01-01 00:00:00\";s:12:\"date_expires\";s:19:\"2035-01-01 00:00:00\";s:12:\"renewal_date\";s:19:\"2034-12-01 00:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:7:\"GFELITE\";s:12:\"product_name\";s:27:\"Gravity Forms Elite License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:3650;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:12:\"is_perpetual\";b:0;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:105;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}}s:6:\"errors\";a:0:{}s:6:\"status\";s:9:\"valid_key\";s:4:\"meta\";a:0:{}s:5:\"strat\";O:63:\"Gravity_Forms\\Gravity_Forms\\Transients\\GF_WP_Transient_Strategy\":0:{}}\";","off"),
("16233","_site_transient_timeout_php_check_b2d470a00ad958d6fbddca15b0988775","1783588900","off"),
("16234","_site_transient_php_check_b2d470a00ad958d6fbddca15b0988775","a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}","off"),
("16235","_transient_timeout_wp_rocket_remote_settings_timeout_active","1783070501","off"),
("16236","_transient_wp_rocket_remote_settings_timeout_active","1","off"),
("16239","_site_transient_timeout_fusion_patcher_check_num","1783070502","off"),
("16240","_site_transient_fusion_patcher_check_num","a:1:{s:5:\"avada\";i:0;}","off"),
("16241","_site_transient_timeout_feed_bc9fd7f8eaf5e82b6773ce761d04a9c6","1783027303","off"),
("16242","_site_transient_feed_bc9fd7f8eaf5e82b6773ce761d04a9c6","a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s: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:\"Mon, 29 Jun 2026 08:14: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: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:28:\"https://wordpress.org/?v=7.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:4:\"item\";a:10:{i:0;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:33:\"How to Manage Your Avada Licenses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://avada.com/blog/how-to-manage-your-avada-licenses/\";s: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:65:\"https://avada.com/blog/how-to-manage-your-avada-licenses/#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, 29 Jun 2026 05:45:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:2;a:5:{s:4:\"data\";s:8:\"My 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:\"Tutorial Videos\";s:7:\"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:345:\"Managing your Avada licenses has never been more accessible, thanks to the comprehensive features on the My Avada support and license management portal. For those new to the platform or looking for guidance, here\'s a detailed walkthrough of how to efficiently handle your Avada licenses and ensure the smooth operation of your web products.  ...\";s: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:18479:\"<div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 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-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: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-1\"><p>Managing your <a href=\"https://1.envato.market/e4rPJ1\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> licenses has never been more accessible, thanks to the comprehensive features on the <a href=\"https://avada.com/blog/my-avada-dot-com/\" target=\"_blank\" rel=\"noopener noreferrer\">My Avada support and license management portal</a>. For those new to the platform or looking for guidance, here&#8217;s a detailed walkthrough of how to efficiently handle your <a href=\"https://avada.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> licenses and ensure the smooth operation of your web products.</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-1 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Accessing The My Avada Portal</h2></div><div class=\"fusion-text fusion-text-2\"><p>To begin managing your licenses, navigate to the <a href=\"https://my.avada.com/\" target=\"_blank\" rel=\"noopener noreferrer\">My Avada portal</a>, which is accessible here. If you haven&#8217;t registered for an Avada Support account yet, watch the <a href=\"https://avada.com/documentation/how-to-register-for-my-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Register for My Avada</a> video for a step-by-step guide. Once registered, log in to access your account dashboard.</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 fetchpriority=\"high\" decoding=\"async\" width=\"1600\" height=\"1000\" alt=\"My Avada Login Screen\" title=\"My Avada Login Screen\" src=\"https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-login.png\" class=\"img-responsive wp-image-895033\" srcset=\"https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-login-200x125.png 200w, https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-login-400x250.png 400w, https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-login-600x375.png 600w, https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-login-800x500.png 800w, https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-login-1200x750.png 1200w, https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-login.png 1600w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1600px\" /></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-3\"><p>The dashboard provides a snapshot of all your licenses and various options for managing them. The <a href=\"https://avada.com/documentation/how-to-use-my-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Use My Avada</a> video offers a complete overview of the portal&#8217;s features; however, in this article, we&#8217;ll focus on managing your licenses specifically.</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\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Manage Licenses</h2></div><div class=\"fusion-video fusion-youtube\" style=\"--awb-max-width:1280px;--awb-max-height:720px;--awb-align-self:center;--awb-width:100%;\"><div class=\"video-shortcode\"><priv-fac-lite-youtube class=\"fusion-hidden lty-load\" data-privacy-type=\"youtube\" videoid=\"lk_AlGCHJNs\" class=\"landscape\" params=\"wmode=transparent&autoplay=1&amp;enablejsapi=1\" title=\"YouTube video player 1\" data-button-label=\"Play Video\" width=\"1280\" height=\"720\" data-thumbnail-size=\"auto\" data-no-cookie=\"on\"></priv-fac-lite-youtube><div class=\"fusion-privacy-placeholder\" style=\"width:1280px; height:720px;\" data-privacy-type=\"youtube\"><div class=\"fusion-privacy-placeholder-content\"><div class=\"fusion-privacy-label\">For privacy reasons YouTube needs your permission to be loaded.</div><button data-privacy-type=\"youtube\" class=\"fusion-button button-default fusion-button-default-size button fusion-privacy-consent\">I Accept</button></div></div></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-4\"><p>Once inside the My Avada Dashboard, you can see a summary of all your licenses at the top. You&#8217;ll also notice a section providing a quick overview of the most recent licenses. To manage all your licenses, click the <strong>&#8220;Manage Licenses&#8221;</strong> link or select <strong>&#8220;Licenses&#8221;</strong> from the top menu.</p>\n</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-2 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-2\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-dashboard.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[5c06cd08307185ddb0b]\" data-title=\"Avada Dashboard\" title=\"Avada Dashboard\"><img decoding=\"async\" width=\"2466\" height=\"2560\" alt=\"Avada Dashboard\" src=\"https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-dashboard.png\" class=\"img-responsive wp-image-895035\"/></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-5\"><p>The licenses management page contains helpful search and filtering options. You can search for a license by domain name or purchase code and use filters to sort licenses by their status: <strong>&#8220;Active,&#8221;</strong> <strong>&#8220;Locked,&#8221;</strong> or <strong>&#8220;All.&#8221;</strong> For example, if you search by the term <strong>&#8220;Avada,&#8221;</strong> you will quickly see all relevant licenses connected to that domain. Additionally, if any licenses are locked, you can contact support directly from this page to resolve the issue.</p>\n</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-3 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-3\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-manage-licenses.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[509747b76b31fdccd6e]\" data-title=\"Manage Avada Licenses\" title=\"Manage Avada Licenses\"><img decoding=\"async\" width=\"2560\" height=\"2120\" alt=\"Manage Avada Licenses\" src=\"https://avada.com/wp-content/uploads/2024/10/my-avada-portal-post-manage-licenses.png\" class=\"img-responsive wp-image-895036\"/></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-6\"><p>To check your current license data information, a <strong>&#8220;Refresh All&#8221;</strong> button checks for any changes in license status, such as recently registered or unregistered licenses.</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-4 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Individual Licenses</h3></div><div class=\"fusion-text fusion-text-7\"><p>When viewing an individual license, you&#8217;ll see detailed information, including the purchase code, license status, and purchase date. You can also view the licenses&#8217; associated domains—both the live domain and the staging domain (if applicable). Each license allows one live domain and one staging domain, making managing your projects&#8217; development and production environment easy.</p>\n<p>One important feature is the ability to unregister a license from a domain. Under the terms of the Avada license, each license is valid for a single website project according to <a href=\"https://themeforest.net/licenses/terms/regular\" target=\"_blank\" rel=\"noopener noreferrer\">Envato&#8217;s licensing terms and conditions</a>. While not being a right granted by the license itself, we offer the additional flexibility to reuse the license on a new project if, and only if, the old site has completely been removed (no longer online). If you forgot to unregister the license before deleting the site, you can do so directly from the My Avada portal. Click the <strong>&#8220;Unlink&#8221;</strong> icon to unregister the license and make it available for a new domain.</p>\n<p>Suppose you&#8217;ve updated the website to which a license is linked. In that case, clicking the <strong>&#8220;Refresh All&#8221;</strong> button will update the domain information in the portal, reflecting the current license connection.</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-5 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">License Deletion and Transfer</h3></div><div class=\"fusion-text fusion-text-8\"><p>The My Avada portal also allows you to delete a license from your account if needed. However, remember that deleting a license only removes it from your My Avada account. This feature is helpful if, for example, you need to transfer a license to a different account, such as when an agency passes the purchase code to an end user.</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-6 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Adding New Licenses</h3></div><div class=\"fusion-text fusion-text-9\"><p>If you have new licenses to add to your account, the &#8220;Add New License&#8221; button provides a simple process. You can manually enter a single purchase code or use the <strong>&#8220;Import from Envato&#8221;</strong> bulk import option. This allows you to import all licenses associated with <a href=\"https://1.envato.market/e4rPJ1\" target=\"_blank\" rel=\"noopener noreferrer\">your ThemeForest account</a>.</p>\n<p>After signing in to the Envato API with your ThemeForest credentials and authorizing the connection, any new licenses will be automatically added to your My Avada account.</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-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Resources</h2></div><div class=\"fusion-text fusion-text-10\"><p>For any additional questions, Avada provides a comprehensive <a href=\"https://avada.com/documentation/avada-registration-and-licensing-faq/\" target=\"_blank\" rel=\"noopener noreferrer\">Licensing and Registration FAQ</a> document that addresses many common inquiries.</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-8 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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-11\"><p>Managing your Avada licenses has never been simpler! With the My Avada support and license management portal, you can easily view, organize, and control all your licenses in one place. Whether you&#8217;re managing a single project or multiple domains, the portal offers powerful tools like search, filtering, and quick license refreshes to keep everything up to date.</p>\n<p>Effortlessly unregister licenses, transfer them between accounts, and add new ones from your ThemeForest profile with just a few clicks. Plus, with detailed video guides and a comprehensive FAQ, you&#8217;ll have all the support you need at your fingertips.</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:62:\"https://avada.com/blog/how-to-manage-your-avada-licenses/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: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:43:\"How To Manage Website Privacy &amp; Consent\";s:7:\"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://avada.com/blog/how-to-manage-website-privacy-consent/\";s: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:69:\"https://avada.com/blog/how-to-manage-website-privacy-consent/#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, 22 Jun 2026 09:58:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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: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:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Privacy\";s: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:\"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: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:313:\"Data privacy compliance is one of those website jobs nobody gets excited about; however, it is important to master. If you have visitors from the EU, California, or any region with data privacy laws, it\'s not optional — and the good news is that Avada has built a genuinely flexible system to handle it. One ...\";s: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:55749:\"<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-blend:overlay;--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-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-12\"><p>Data privacy compliance is one of those website jobs nobody gets excited about; however, it is important to master. If you have visitors from the EU, California, or any region with data privacy laws, it&#8217;s not optional — and the good news is that <a href=\"https://avada.com/\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> has built a genuinely flexible system to handle it. One place to set your options, and multiple ways to present them to your visitors.</p>\n<p>This post is the big-picture guide. We&#8217;ll cover the regulatory background, walk through every global privacy option in Avada, and configure the <a href=\"https://avada.com/documentation/avada-privacy-consent-bar/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Privacy &amp; Consent Bar</a> from scratch. If you&#8217;re looking for the deep dives on the <a href=\"https://avada.com/element/privacy-consent/\" target=\"_self\" rel=\"noopener noreferrer\">Privacy and Consent Element</a> itself, we&#8217;ve covered those separately — see <a href=\"https://avada.com/blog/how-to-use-the-avada-privacy-consent-element/\" target=\"_self\" rel=\"noopener noreferrer\">How To Use The Avada Privacy &amp; Consent Element</a> and <a href=\"https://avada.com/blog/how-to-add-privacy-consent-options-to-an-avada-off-canvas/\" target=\"_self\" rel=\"noopener noreferrer\">How To Add Privacy &amp; Consent Options to an Avada Off-Canvas</a>. This guide provides an overview of the foundations of privacy, consent, and how the various tools can work together.</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-two awb-exclude-from-toc\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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-10 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Benefits of Practicing Data Privacy Compliance</h2></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\"><img decoding=\"async\" width=\"2000\" height=\"400\" alt=\"Data Privacy Icons\" title=\"Data Privacy Icons\" src=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-icons.png\" class=\"img-responsive wp-image-897725\" srcset=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-icons-200x40.png 200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-icons-400x80.png 400w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-icons-600x120.png 600w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-icons-800x160.png 800w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-icons-1200x240.png 1200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-icons.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-13\"><p>Beyond just avoiding fines (which, fair enough, is the headline reason — GDPR penalties can reach 4% of global annual revenue), there are some genuinely practical benefits, especially for a website owner:</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-11 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">☇ Trust And Credibility</h3></div><div class=\"fusion-text fusion-text-14\"><p>Visitors are more privacy-aware than ever. A site that asks for consent clearly and respects the answer signals professionalism. People notice when a cookie banner gives them a real choice, versus when it&#8217;s a dark-pattern maze designed to wear them down — and that impression carries over to how much they trust your brand with things like their email address or credit card.</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-12 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">☇ Better Data Quality</h3></div><div class=\"fusion-text fusion-text-15\"><p>This one&#8217;s counterintuitive. When you only collect data from people who&#8217;ve actually consented, you end up with smaller but cleaner datasets. Your analytics reflect engaged visitors rather than everyone plus bots plus people who&#8217;d opt out if they could. Decisions made on that data tend to be sounder.</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-13 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">☇ Reduced Breach Exposure</h3></div><div class=\"fusion-text fusion-text-16\"><p>Compliance practices push you toward data minimization — collecting only what you need and keeping it only as long as necessary. The less personal data you hold, the less damage a breach can do, and the less attractive a target you are in the first place. You can&#8217;t leak what you never stored.</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-14 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">☇ Market Access</h3></div><div class=\"fusion-text fusion-text-17\"><p>If you sell to EU customers, compliance isn&#8217;t a nice-to-have; it&#8217;s the price of entry. The same increasingly applies to California, Brazil (LGPD), and a growing list of jurisdictions. Getting your house in order once opens multiple markets, and many B2B clients now require proof of compliance from vendors before they&#8217;ll sign anything.</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-15 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">☇ Operational Clarity</h3></div><div class=\"fusion-text fusion-text-18\"><p>The process of becoming compliant forces useful questions: what data are we actually collecting, why, where does it live, who has access? Plenty of businesses discover forgotten plugins, abandoned tracking scripts, or third-party services they didn&#8217;t realize were phoning home. That audit has value even setting the legal side aside.</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-16 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">☇ Competitive Differentiation</h3></div><div class=\"fusion-text fusion-text-19\"><p>As privacy becomes a buying criterion — and it is, particularly for younger and more technical audiences — being able to say &#8220;we load fonts locally, we don&#8217;t track you without asking&#8221; becomes a feature rather than a legal footnote.</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-17 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 the GDPR and the CCPA?</h2></div><div class=\"fusion-text fusion-text-20\"><p>GDPR stands for the <a href=\"https://gdpr.eu/\" target=\"_blank\" rel=\"noopener noreferrer\">General Data Protection Regulation</a>, a binding privacy framework that came into force in the European Union in 2018. And here&#8217;s the part people often miss: it doesn&#8217;t just apply to businesses in the EU. If you have customers in the EU, it applies to you too. Other jurisdictions have their own versions — the <a href=\"https://oag.ca.gov/privacy/ccpa\" target=\"_blank\" rel=\"noopener noreferrer\">CCPA</a> in California is the obvious one — so your actual obligations depend on where you&#8217;re based, where your customers are, and what third-party services your site uses.</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=\"2000\" height=\"800\" alt=\"GDPR Logo\" title=\"GDPR Logo\" src=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-gdpr-logo.png\" class=\"img-responsive wp-image-897726\" srcset=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-gdpr-logo-200x80.png 200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-gdpr-logo-400x160.png 400w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-gdpr-logo-600x240.png 600w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-gdpr-logo-800x320.png 800w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-gdpr-logo-1200x480.png 1200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-gdpr-logo.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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-exclamation-circle fas\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">If you&#8217;re unsure of your legal requirements, talk to a lawyer. This guide shows you the tools; it can&#8217;t tell you which boxes you legally need to tick.</span></div></div><div class=\"fusion-text fusion-text-21\"><p><strong>And a point worth noting:</strong> Avada itself doesn&#8217;t need to be GDPR-compliant because it doesn&#8217;t collect any data. The privacy tools exist to help you make your website compliant — because the moment you embed a YouTube video, load Google Fonts from a CDN, or run Google Analytics, you&#8217;re potentially sending visitor data to third parties.</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-18 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 the Whole System Fits Together in Avada</h2></div><div class=\"fusion-video fusion-youtube\" style=\"--awb-max-width:1280px;--awb-max-height:720px;--awb-align-self:center;--awb-width:100%;\"><div class=\"video-shortcode\"><priv-fac-lite-youtube class=\"fusion-hidden lty-load\" data-privacy-type=\"youtube\" videoid=\"20il92AFsFk\" class=\"landscape\" params=\"wmode=transparent&autoplay=1&amp;enablejsapi=1\" title=\"Website Privacy &amp; Consent in Avada\" data-button-label=\"Play Video\" width=\"1280\" height=\"720\" data-thumbnail-size=\"auto\" data-no-cookie=\"on\"></priv-fac-lite-youtube><div class=\"fusion-privacy-placeholder\" style=\"width:1280px; height:720px;\" data-privacy-type=\"youtube\"><div class=\"fusion-privacy-placeholder-content\"><div class=\"fusion-privacy-label\">For privacy reasons YouTube needs your permission to be loaded.</div><button data-privacy-type=\"youtube\" class=\"fusion-button button-default fusion-button-default-size button fusion-privacy-consent\">I Accept</button></div></div></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-22\"><p>Before we touch a single option, here&#8217;s the mental model. Avada&#8217;s Privacy System has two halves:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-custom_color_5);--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 fa-cogs fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>The Privacy Consent Tools (Global Options)</strong> – This is where you define your privacy setup: which embeds need consent, your cookie categories, expiration times, descriptions.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cogs fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>The Display Layer</strong> – The Privacy &amp; Consent Bar and/or the Privacy and Consent element. These are how visitors actually see and interact with the options you defined.</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-23\"><p>Both halves are totally optional, and they work independently. You might configure the consent tools and present them through the Element on your privacy policy page (or any other page on your site). You might skip the tools entirely and just show a simple bar that tells visitors about the necessary cookies. Or you might use everything together. It all depends on what you need to inform your visitors of. Everything lives under <strong>Options &gt; Privacy &amp; Consent</strong> in the Avada Global Options. Let&#8217;s go through it.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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=\"avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">Avada Dashboard → Options → Global Options → Privacy &amp; Consent</span></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-19 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:rgba(123,188,216,0.38);\">The Avada Global Privacy Options</mark></h2></div><div class=\"fusion-text fusion-text-24\"><p>By default, you&#8217;ll only see three options here, because both the Privacy Consent Tools and the Privacy &amp; Consent Bar are disabled out of the box. </p>\n</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-6 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-6\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c0ba37103d45a514daf]\" data-title=\"Avada Privacy Global Options\" title=\"Avada Privacy Global Options\"><img decoding=\"async\" width=\"2000\" height=\"1650\" alt=\"Avada Privacy Global Options\" src=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options.png\" class=\"img-responsive wp-image-897728\" srcset=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options-200x165.png 200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options-400x330.png 400w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options-600x495.png 600w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options-800x660.png 800w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options-1200x990.png 1200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-global-options.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></a></span></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-text fusion-text-25\"><p>There&#8217;s also an important note at the top explaining the cookie created when you use the privacy consent option — worth a read.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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=\"avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#005272;--awb-text-color:var(--awb-color1);\">Important Note</mark> &#8211; The options in this section help you comply more easily with data privacy regulations such as the GDPR. When the <strong>&#8220;Privacy Consent&#8221;</strong> option is enabled, Avada creates a cookie named <strong>&#8220;privacy_embeds&#8221;</strong> in visitors’ browsers to store and manage consent preferences for third-party embeds and tracking scripts. This also includes scripts added through <strong>&#8220;Custom Code Snippets&#8221;</strong> (Advanced &gt; Code Fields) that use a privacy category. You may want to include information about this cookie in your privacy policy.</p></span></div></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-20 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Google &amp; Font Awesome Fonts Mode</h3></div><div class=\"fusion-text fusion-text-26\"><p>This first option is small but genuinely useful. When set to <strong>&#8220;Local&#8221;</strong>, <a href=\"https://fonts.google.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Google Fonts</a> and <a href=\"https://fontawesome.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Font Awesome</a> fonts are downloaded to your own server, which satisfies GDPR criteria — no font requests pinging Google&#8217;s servers with your visitors&#8217; data. Alternatively, set it to <strong>&#8220;CDN&#8221;</strong> to load fonts from the Google and Font Awesome CDNs. If GDPR applies to you, <strong>&#8220;Local&#8221;</strong> is the safe choice.</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-21 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Privacy Consent Tools</h3></div><div class=\"fusion-text fusion-text-27\"><p>Turn it on, and Avada will prevent scripts and embeds from loading until your visitor gives consent. Do you need it? Maybe not. If you only have necessary cookies and no third-party embeds, you can leave this disabled and just let users know about your cookies in the privacy bar.</p>\n<p>But if your site embeds YouTube videos, runs Google Analytics, or loads anything else from a third party, enable it — and a whole range of new options appear.</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-22 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Privacy Consent Cookie Expiration</h3></div><div class=\"fusion-text fusion-text-28\"><p>How many days does the consent cookie last before visitors are asked again? The default is 30, and you can push it up to 366 days (for leap years).</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-23 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Privacy Consent Types</h3></div><div class=\"fusion-text fusion-text-29\"><p>Here you choose which embeds require consent. There are 12 in all, including a range of Google services. Only select what you actually use — there&#8217;s no point gating consent for services that never appear on your site. And note: custom code snippets with a privacy category are automatically included, so you don&#8217;t need to select those here.</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-24 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Privacy Selected Consent Types</h3></div><div class=\"fusion-text fusion-text-30\"><p>This controls which of those embeds are selected by default when a visitor first sees the consent bar or Element. Selecting them all means visitors opt out rather than opt in — check whether that&#8217;s acceptable under your local regulations before mirroring that choice.</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-25 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Third-Party Embed Description &amp; Placeholder Colors</h3></div><div class=\"fusion-text fusion-text-31\"><p>When a visitor hasn&#8217;t accepted a third-party embed, Avada shows a placeholder in its place — a box explaining that consent is needed, with a button to grant it. The description comes with a sensible default you can customize, and the two color options control the placeholder&#8217;s background and text. Tie these into your color palette (in the video, color 5 for the background and color 1 for the text) so the placeholders don&#8217;t look like an afterthought.</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-26 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Google Consent Mode v2</h3></div><div class=\"fusion-text fusion-text-32\"><p>This section gives you a label and description for each of the four Google options: Google Analytics, Google Advertising cookies, Google Advertising user data, and Google Advertising personalization. Defaults are pre-filled, but everything is editable.</p>\n</div><div class=\"fusion-title title fusion-title-27 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Consent Categories</h3></div><div class=\"fusion-text fusion-text-33\"><p>This is where the system gets properly flexible. It&#8217;s a repeater row, so you can add as many categories as you need, each with a custom title and description. The available category types are custom content, necessary cookies, functional cookies (third-party embeds), statistics cookies (analytics), and marketing cookies (advertising and targeting).</p>\n<p>These categories define the grouped sections visitors see in both the Avada Privacy &amp; Consent Bar and the Avada Privacy and Consent Element when the group layout is used. A cluster of related options follows:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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 fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Group Master Toggle</mark> — Adds a master checkbox next to each group title, allowing visitors to enable or disable an entire category at once. If you want this on the bar, set it here. The Element has its own override, so you can leave it off globally and enable it per-element.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">List WordPress Necessary Cookies</mark> &#8211; Only appears if you&#8217;ve added a category of type <strong>&#8220;necessary cookies&#8221;</strong>. Enable it, and an extra option appears to control the opacity of the necessary cookies, visually signaling that these can&#8217;t be toggled off.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Show Cookie Lifespan</mark> &#8211; Displays the expiration days you set earlier next to each cookie.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Show Cookie Description</mark> &#8211; Displays each cookie&#8217;s description below its consent item.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Cookie Description Toggle</mark> &#8211; Adds an expand/collapse button next to each consent item&#8217;s description. Like the master toggle, this can be overridden in the element, so you can leave it off globally if you only need it there.</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-34\"><p>Save the Global Options, and the definition half of the system is done. Now for the display half.</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-28 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:rgba(123,188,216,0.38);\">The Avada Privacy &amp; Consent Bar</mark></h2></div><div class=\"fusion-text fusion-text-35\"><p>Flip the Privacy &amp; Consent Bar option to <strong>“On”</strong>, and a bar appears along the bottom of your site, informing visitors of your Privacy and Consent details. A new batch of global options loads with it.</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-color2);\"><a href=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3ecd20e55ca8029299e]\" data-title=\"Avada Privacy Bar Options\" title=\"Avada Privacy Bar Options\"><img decoding=\"async\" width=\"2000\" height=\"1650\" alt=\"Avada Privacy Bar Options\" src=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options.jpg\" class=\"img-responsive wp-image-897729\" srcset=\"https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options-200x165.jpg 200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options-400x330.jpg 400w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options-600x495.jpg 600w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options-800x660.jpg 800w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options-1200x990.jpg 1200w, https://avada.com/wp-content/uploads/2026/06/manage-website-privacy-post-privacy-bar-options.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-36\"><p>The bar has two modes. If you enable it without the Privacy Consent Tools, you get just eight or nine options — enough for a simple bar that tells users about necessary cookies and nothing more. Perfectly valid. But with the consent tools enabled, you can also switch on the Privacy Bar Settings, which turns the bar into something far more capable — close to the full Privacy and Consent Element, living in a bar.</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-29 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Styling the Privacy Bar</h3></div><div class=\"fusion-text fusion-text-37\"><p>The first options control the general styling and appearance:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Privacy Bar Expanded Padding</mark> — The padding around your content (the content itself determines the overall size). The video example uses 30px all around.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Background Color, Font Size, Text Color, Link Color, &amp; Link Hover Color</mark> &#8211; Standard styling. The example uses color 7 for the background and color 1 for the text.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Privacy Bar Text</mark> &#8211; The actual message. This can be as short or as long as your privacy situation demands. There&#8217;s no template that fits everyone here; it depends entirely on what you need to disclose.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Privacy Bar Button Text</mark> &#8211; &#8220;Okay&#8221; by default, and that&#8217;s fine for most use cases.</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 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-30 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Privacy Bar Settings: The Advanced Mode</h3></div><div class=\"fusion-text fusion-text-38\"><p><strong>“Privacy Bar Button Save On Click”</strong> changes what your consent flow actually means. Set to <strong>“No”</strong>, the button is just an acknowledgment. The bar dismisses, and visitors grant consents individually via the placeholder buttons on the details panel.</p>\n<p>Set to <strong>“Yes”</strong>, clicking the button grants all the consent types you selected under Privacy Selected Consent Types. Either way, once the details panel is open, clicking the button always saves the current checkbox selection.</p>\n<p>That&#8217;s a meaningful difference. <strong>&#8220;No&#8221;</strong> means dismissing the bar grants nothing; <strong>&#8220;Yes&#8221;</strong> means one click consents to your defaults. Choose based on your regulatory requirements, not convenience.</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-31 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Button Behavior Option</h3></div><div class=\"fusion-text fusion-text-39\"><p>Enable <strong>“Privacy Bar Settings”</strong>, and a settings link is added to the bar that opens a full details panel with checkboxes for tracking and third-party embeds. A stack of new options arrives with it:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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 fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Settings Style</mark> — The settings control can be a plain link or a button.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Settings Text</mark> &#8211; &#8220;Settings&#8221; by default, changeable to anything.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Update Button Text</mark> &#8211; When a visitor changes a selection in the settings panel, the main button text switches from your normal label (<strong>&#8220;Okay&#8221;</strong>) to this one (<strong>&#8220;Update Settings&#8221;</strong> by default). Deselect everything back to how it was, and the button reverts. This is a small detail, but it gives visitors clear feedback that there&#8217;s something to save.</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-title title fusion-title-32 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Layout Options</h3></div><div class=\"fusion-text fusion-text-40\"><p>The settings content can display as Columns (sections spread across the screen) or tabs. Tabs come with their own extras — content height, border size, border and background colors, and content padding. Columns are the default and work well for most setups. Either way, Privacy Bar Content Max Width controls how much horizontal room the panel gets — bumping it to 90% gives the categories space to breathe.</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-33 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 and Detail Styling</h3></div><div class=\"fusion-text fusion-text-41\"><p>There are options for the heading font size and color, a column gap (30px by default), plus colors for the cookie lifespan and description text. The lifespan and description colors inherit the bar&#8217;s text color when left empty, but setting them separately (color 4 and color 3 in the example) helps visually distinguish the metadata from the main labels. The cookie description font size is 0.85em by default, which is easy to read.</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-34 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Consent Item Style</h3></div><div class=\"fusion-text fusion-text-42\"><p>Choose between standard checkboxes or slide toggles for the consent items. Toggles feel more modern, and if you pick them, you also get options for the inactive, active, and thumb colors.</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-35 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Accept All and Reject All Buttons</h3></div><div class=\"fusion-text fusion-text-43\"><p>Both are optional, and each includes editable button text when enabled. Whether you want them depends on your setup — if your defaults already reflect what most visitors would choose and the save-on-click behavior handles it, you may not need them at all.</p>\n<p>Once configured, the flow works like this: a visitor changes a selection in the tracking cookies or third-party embeds, the button switches to <strong>&#8220;Update Settings,&#8221;</strong> they click it, their preferences are saved, and the bar disappears for as long as your cookie expiration allows.</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-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Test It Out First</h2></div><div class=\"fusion-text fusion-text-44\"><p>With everything configured, visit a page with an embedded YouTube video — if YouTube consent hasn&#8217;t been granted, the video simply won&#8217;t load. In its place sits your styled placeholder asking for permission. Grant it, and the choice is stored in a cookie for the duration you set.</p>\n<p>One testing tip from the video that&#8217;ll save you some confusion: once you&#8217;ve saved your own consent preferences, the cookie is valid for the full expiration period — meaning the privacy bar won&#8217;t show for you anymore, even though you&#8217;re trying to test it. To reset, open Chrome DevTools (right-click and select Inspect), go to the <strong>“Application”</strong> tab, and clear the site data. That wipes the consent cookie (and logs you out, so keep your password handy), and you&#8217;re back to a fresh-visitor view.</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-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Other Avada Privacy Tools Worth Knowing</h2></div><div class=\"fusion-text fusion-text-45\"><p>The Privacy Bar and the Privacy Element get the spotlight, but Avada offers a few more privacy options.</p>\n<p><a href=\"https://avada.com/element/consent-field/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Consent Field Element</a> — If you&#8217;re using the <a href=\"https://avada.com/feature/form-builder/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Form Builder</a>, just add the Element into your form and write your consent text. Done. There&#8217;s also a legacy method for sites using the contact page template — under the Contact Template tab in global options, enable Display Data Privacy Confirmation Box, and a further option appears to customize the message. But that only applies to the contact page template, and Avada Forms is the far more flexible route.</p>\n<p><a href=\"https://avada.com/element/user-register/\" target=\"_self\" rel=\"noopener noreferrer\">The Avada User Register Element</a> — If people register on your site, this element includes a Registration Notice field near the bottom of its options. It displays custom text before the submit button — a natural spot to inform new users about your GDPR compliance or data handling.</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-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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>So that&#8217;s the full privacy and consent system in Avada: Global Options, where you define everything once; a configurable bar for site-wide notices; an Element for pages and Avada Off-Canvas pop-ups; and consent fields for your forms and registrations.</p>\n<p>The practical path forward looks like this. Work out your legal requirements first (lawyer, if in doubt). Set your fonts to Local if GDPR applies. Then decide how much of the system you need — a simple bar for a cookies-only site, or the full consent tools if you&#8217;re running third-party embeds and analytics. Define your consent types and categories in the global options, and pick your display method: the bar, the element, or both.</p>\n<p>And when you&#8217;re ready to build out the Element side — whether on a privacy policy page or as a polished Avada Off-Canvas pop-up — the two companion guides linked at the top walk through those builds step by step.</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:66:\"https://avada.com/blog/how-to-manage-website-privacy-consent/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: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:63:\"How To Add Privacy &amp; Consent Options to an Avada Off-Canvas\";s:7:\"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://avada.com/blog/how-to-add-privacy-consent-options-to-an-avada-off-canvas/\";s: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:89:\"https://avada.com/blog/how-to-add-privacy-consent-options-to-an-avada-off-canvas/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jun 2026 09:04: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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: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:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"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: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:\"Here\'s a fact about privacy policy pages: almost nobody visits them. You can place the Avada Privacy and Consent Element on this page (the privacy policy page), but if that\'s your only consent touchpoint, most visitors will never see it. That\'s the problem this setup solves. By placing the Privacy and Consent Element inside an ...\";s: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:33136:\"<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-blend:overlay;--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-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-47\"><p>Here&#8217;s a fact about privacy policy pages: almost nobody visits them. You can place the <a href=\"https://avada.com/element/privacy-consent/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Privacy and Consent Element</a> on this page (the privacy policy page), but if that&#8217;s your only consent touchpoint, most visitors will never see it.</p>\n<p>That&#8217;s the problem this setup solves. By placing the <a href=\"https://avada.com/documentation/privacy-consent-element/\" target=\"_self\" rel=\"noopener noreferrer\">Privacy and Consent Element</a> inside an Avada Off-Canvas, you bring the consent choice directly to your visitors as soon as they arrive. It&#8217;s flexible, it follows current best practice, and honestly, it&#8217;s one of the cleaner consent implementations you can build with <a href=\"https://avada.com/\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> and <a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a>.</p>\n<p>In our previous post, we covered the <a href=\"https://avada.com/blog/how-to-use-the-avada-privacy-consent-element/\" target=\"_self\" rel=\"noopener noreferrer\">general use of the Privacy Element</a>. In this post, we&#8217;ll explore how to build a setup that uses two Avada Off-Canvases working together to manage the Privacy and Consent options. The first is a small pop-up with <strong>&#8220;Accept All&#8221;</strong> and <strong>&#8220;Manage Cookies&#8221;</strong> buttons. The second includes the full Privacy and Consent options for visitors who want to manually choose their cookies (regulations such as the <a href=\"https://gdpr.eu/\" target=\"_blank\" rel=\"noopener noreferrer\">EU&#8217;s GDPR</a> require sites to give you clear choices). Let&#8217;s take a closer look.</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-39 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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-40 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Preliminary: Configure The Consent Options</h2></div><div class=\"fusion-text fusion-text-48\"><p>Everything begins in the <a href=\"https://avada.com/documentation/avada-global-options/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Global Options</a>. Head to the <strong>Privacy Consent Tool</strong> section in Avada&#8217;s Privacy and Consent Global Options to set up your consent types and cookie categories. These settings apply to both the <a href=\"https://avada.com/documentation/avada-privacy-consent-bar/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Privacy and Consent Bar</a> and the Privacy and Consent Element, so you only need to configure them once. For this setup, leave the Privacy and Consent Bar turned <strong>“Off”</strong>.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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=\"avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">Avada Dashboard → Options → Global Options → Privacy &amp; Consent</span></div></div><div class=\"fusion-video fusion-youtube\" style=\"--awb-max-width:1280px;--awb-max-height:720px;--awb-align-self:center;--awb-width:100%;\"><div class=\"video-shortcode\"><priv-fac-lite-youtube class=\"fusion-hidden lty-load\" data-privacy-type=\"youtube\" videoid=\"85s0VU46fyc\" class=\"landscape\" params=\"wmode=transparent&autoplay=1&amp;enablejsapi=1\" title=\"How To Use the Avada Privacy &amp; Consent Element in an Off-Canvas\" data-button-label=\"Play Video\" width=\"1280\" height=\"720\" data-thumbnail-size=\"auto\" data-no-cookie=\"on\"></priv-fac-lite-youtube><div class=\"fusion-privacy-placeholder\" style=\"width:1280px; height:720px;\" data-privacy-type=\"youtube\"><div class=\"fusion-privacy-placeholder-content\"><div class=\"fusion-privacy-label\">For privacy reasons YouTube needs your permission to be loaded.</div><button data-privacy-type=\"youtube\" class=\"fusion-button button-default fusion-button-default-size button fusion-privacy-consent\">I Accept</button></div></div></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-49\"><p><strong>One quick note on approach:</strong> there&#8217;s no single correct way to implement consent. You could use the bar, the Element on a page, an <a href=\"https://avada.com/documentation/how-to-use-the-off-canvas-builder/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Off-Canvas</a>, or a combination of all three. Best practice simply says visitors need an obvious way to accept the defaults and a real way to make their own selections. This two-pop-up setup delivers both.</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\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_1);--awb-text-color:var(--awb-color8);\">Step 1:</mark> Create the Trigger Off-Canvas</h2></div><div class=\"fusion-text fusion-text-50\"><p>Create a new <a href=\"https://1.envato.market/e4rPJ1\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> Off-Canvas — we&#8217;ll call it <strong>“Privacy Trigger”</strong>. This is the pop-up every visitor sees first.</p>\n</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-8 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-8\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c0cc2d73088718f9922]\" data-title=\"Avada Privacy Consent Manage Off-Canvas\" title=\"Avada Privacy Consent Manage Off-Canvas\"><img decoding=\"async\" width=\"2000\" height=\"1175\" alt=\"Avada Privacy Consent Manage Off-Canvas\" src=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage.jpg\" class=\"img-responsive wp-image-897718\" srcset=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage-200x118.jpg 200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage-400x235.jpg 400w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage-600x353.jpg 600w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage-800x470.jpg 800w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage-1200x705.jpg 1200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-manage.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-51\"><p>Your Off-Canvas can be a sliding bar or a pop-up, any size and position you like. For this example, use these settings:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Type</mark> — Pop-up</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Width</mark> &#8211; 600px</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Position</mark> — Centered horizontally, top vertically, with a 100px margin to push it down from the edge</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Conditions</mark> — Entire site</div></li></ul><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-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Configure the Close, Conditions, &amp; Triggers Tabs</h3></div><div class=\"fusion-text fusion-text-52\"><p>In the <strong>Close</strong> tab, turn the close button <strong>“Off”</strong>. This nudges visitors to actually address the cookie question rather than dismiss it. They can still click the overlay to close (which can be disabled), but since that&#8217;s not obvious, most people will use one of the buttons instead.</p>\n<p>In the <strong>Conditions</strong> tab, enable conditions and keep the default of displaying on the <strong>“Entire site”</strong>. On any page, the pop-up appears.</p>\n<p>In the <strong>Triggers</strong> tab, set the trigger to “<strong>Time on Page”</strong> with a duration of 2 seconds. The page loads, the visitor gets a moment to orient themselves, then the pop-up appears.</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-43 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Interaction Behavior</h3></div><div class=\"fusion-text fusion-text-53\"><p>In the <strong>Rules</strong> tab, you&#8217;ll find the <strong>Privacy and Consent Interaction Behavior</strong> option. It has three settings:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">None</mark> — No special behavior.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Display Until Consented</mark> &#8211; The Off-Canvas opens for visitors who haven&#8217;t saved their consent choices yet. Once they save, it stops appearing.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Display Until Consented &amp; Close Off-Canvas</mark> — Same as above, but it also automatically closes the Off-Canvas once the visitor saves their choices.</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>Choose <strong>“Display Until Consented and Close Off-Canvas”</strong>. Keep in mind the auto-close part requires a Privacy element on the page with its save action set to Ajax — we&#8217;ll set that in <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_1);--awb-text-color:var(--awb-color8);\">Step 2</mark>.</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-44 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Add The Content</h3></div><div class=\"fusion-text fusion-text-55\"><p>The content here is deliberately simple: a title, a short line of text with a link to more information, and two buttons that do the real work.</p>\n<p><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#276e85;--awb-text-color:var(--awb-color1);\">Button 1</mark>​ — <strong>&#8220;Accept All&#8221;</strong>. Edit the button and set the <strong>Button URL</strong> to <strong>Dynamic Data</strong>, then choose the <strong>Privacy Consent Action of Accept All</strong>. One click, all cookies accepted, visitor moves on. You could instead choose <strong>Save/Update</strong> (which saves the defaults from your global options) or <strong>&#8220;Reject All&#8221;</strong> if you want to offer that.</p>\n<p><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#276e85;--awb-text-color:var(--awb-color1);\">Button 2</mark> — <strong>&#8220;Manage Cookies&#8221;</strong>. This button also uses Avada Dynamic Data, but with the <strong>Open Off-Canvas</strong> option — pointed at the second Off-Canvas we&#8217;re about to build.</p>\n<p><strong>One important detail:</strong> these buttons only work if the Privacy and Consent Element exists somewhere on the page. In this setup, the Element lives in the second Off-Canvas, which means it&#8217;s in the DOM and the buttons function correctly. Skip the second Off-Canvas, and the <strong>“Accept All”</strong> button does nothing.</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-45 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_1);--awb-text-color:var(--awb-color8);\">Step 2:</mark> Create the Privacy Off-Canvas</h2></div><div class=\"fusion-text fusion-text-56\"><p>Now create the second Avada Off-Canvas — call it <strong>“Privacy”</strong>. This one holds the Privacy and Consent Element content and options.</p>\n</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-9 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-9\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3ec1b84e195696e9957]\" data-title=\"Avada Privacy Consent Options Off-Canvas\" title=\"Avada Privacy Consent Options Off-Canvas\"><img decoding=\"async\" width=\"2000\" height=\"1175\" alt=\"Avada Privacy Consent Options Off-Canvas\" src=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options.jpg\" class=\"img-responsive wp-image-897717\" srcset=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options-200x118.jpg 200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options-400x235.jpg 400w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options-600x353.jpg 600w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options-800x470.jpg 800w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options-1200x705.jpg 1200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-off-canvas-post-options.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-57\"><p>The settings largely mirror the first:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Width</mark> &#8211; 600px</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Close Tab</mark> — Same settings as the trigger pop-up</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Conditions</mark> — Entire site</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Triggers</mark> — None — this pop-up only opens when someone clicks <strong>&#8220;Manage Cookies&#8221;</strong> in the first Off-Canvas pop-up</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Rules</mark> — Set the Privacy and Consent Interaction Behavior to <strong>“Display Until Consented and Close Off-Canvas”</strong>, same as before</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:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-46 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Add Content to the Privacy Off-Canvas</h3></div><div class=\"fusion-text fusion-text-58\"><p>Add some privacy text at the top, then add the <strong>Privacy and Consent Element</strong>. This is where the configuration differs from that of a privacy policy page, where you&#8217;d typically let the Element spread out. In a <strong>600px</strong> pop-up, you want to be compact. Use these options:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Layout</mark> — Grouped — Set to <strong>“Stacked”</strong></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Collapsible Groups</mark> — <strong>“Accordion”</strong> — So only one group can be open at a time</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Collapsed on Load</mark> — <strong>“Enabled”</strong> — Visitors see a tidy list of categories, not a wall of toggles</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Group Master Toggle</mark> — <strong>“On”</strong> — Each cookie category gets one switch that controls everything inside it</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-59\"><p>The master toggle is smarter than it first appears. It has three positions: <strong>“On”</strong> when all consent types in the category are selected, <strong>“Off”</strong> when none are selected, and “Intermediate” when only some are selected. So if a visitor opens <strong>&#8220;Functional Cookies&#8221;</strong> and deselects YouTube, then opens Statistics and deselects <strong>&#8220;Google Analytics&#8221;</strong>, they&#8217;ll see all three toggle states reflected at a glance.</p>\n<p>Visitors who want detail can expand a group, view individual options, and even read the descriptions. Visitors who don&#8217;t can flip a category switch and be done. Both get served.</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-47 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Save Action to Ajax</h3></div><div class=\"fusion-text fusion-text-60\"><p>Enable all three buttons on the element, and set the <strong>“Save Action”</strong> to <strong>“Ajax”</strong>. As the option description explains, <strong>Ajax</strong> saves the consent client-side, immediately replaces visible consent-gated placeholders, and fires an event — no full-page reload. It&#8217;s also what makes the auto-close behavior from the Rules tab actually work.</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-48 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_1);--awb-text-color:var(--awb-color8);\">Step 3:</mark> Test It on the Front End</h2></div><div class=\"fusion-text fusion-text-61\"><p>Load any page on your site. After two seconds, the trigger pop-up appears. Click <strong>&#8220;Accept All&#8221;</strong>, and the pop-up closes — consent is saved with every content type enabled. Click <strong>&#8220;Manage Cookies&#8221;</strong> instead, and the second pop-up opens with your accordion of cookie categories.</p>\n<p>Toggle a whole category, or expand groups to decide on individual cookies. Save your choices (or <strong>&#8220;Accept All&#8221;</strong>), and both Off-Canvases close automatically. That&#8217;s the whole flow. Two seconds in, two clicks maximum, and the visitor never sees the pop-up again. It works just as well on mobile, too.</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-49 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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-62\"><p>You don&#8217;t strictly need both Off-Canvases. If you&#8217;d rather skip the intro pop-up, you can run the second Off-Canvas on its own — just add a trigger to it (<strong>Time on Page</strong> works well) and let visitors land directly in the full consent panel.</p>\n<p>The two-step version is worth the extra few minutes, though. It gives agreeable visitors a one-click exit while keeping full control one click away for everyone else. And with Avada&#8217;s Privacy and Consent options, you&#8217;ve got the flexibility to build whichever version fits your site.</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:86:\"https://avada.com/blog/how-to-add-privacy-consent-options-to-an-avada-off-canvas/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:79:\"\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:30:\"Version 7.15.5 Security Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://avada.com/blog/version-7-15-5-security-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://avada.com/blog/version-7-15-5-security-update/#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, 15 Jun 2026 14:20:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:19:\"Website Maintenance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s: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:358:\"We have released Avada 7.15.5, delivering an array of exciting new features, improvements, and fixing three security issues:  SECURITY: Fixed a possible PHP object injection via post meta. SECURITY: Fixed a possible arbitrary file deletion when deleting custom icon sets. SECURITY: Fixed a possible privilege escalation via post meta using Avada Forms.   ...\";s: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:6501:\"<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:calc( 1280px + 0px );margin-left: calc(-0px / 2 );margin-right: calc(-0px / 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-blend:overlay;--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:10px;--awb-spacing-left-large:0px;--awb-width-medium:100%;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-spacing-right-small:0px;--awb-spacing-left-small:0px;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-63\" style=\"--awb-text-transform:none;\"><p>We have released <a href=\"https://avada.com/whats-new/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada 7.15.5</a>, delivering an array of exciting new features, improvements, and fixing three security issues:</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-9 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-shield-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>SECURITY: Fixed a possible PHP object injection via post meta.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-shield-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">SECURITY: Fixed a possible arbitrary file deletion when deleting custom icon sets.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-shield-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">SECURITY: Fixed a possible privilege escalation via post meta using Avada Forms.</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-64\" style=\"--awb-text-transform:none;\"><p>This is disclosed in our <a href=\"https://avada.com/documentation/avada-changelog\" target=\" _self\" rel=\"noopener noreferrer\">Changelog</a> and our <a href=\"https://avada.com/documentation/important-update-information\" target=\" _self\" rel=\"noopener noreferrer\">Important Update Info</a> help file.</p>\n<p>Like WordPress and any entity that develops software, we understand that security is not absolute and is a continuous process managed as such. We do our best to prevent security issues as proactively as possible, as we do not assume they’ll never come up. Our responsibility is to quickly take care of them and work to get our customers notified and prepared. This is why we recommend keeping your website and plugins up-to-date and maintained at all times.</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-50 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Should I Do Next?</h2></div><div class=\"fusion-text fusion-text-65\"><p>We cannot stress enough the importance of ensuring that your website is kept up to date and maintained at all times. Please update to ensure that your installation is issue-free and the fix detailed above is applied. These are our detailed update instructions:</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-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/updating-avada-older-versions/\" target=\"_blank\" rel=\"noopener noreferrer\">Updating from an old version of Avada?</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/important-update-information/\" target=\"_blank\" rel=\"noopener noreferrer\">Important Update Info</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-update-the-avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Update</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-patcher/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Patcher</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-changelog/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Changelog</a></div></li></ul>\n<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-66\"><p>We would like to extend our gratitude and thanks to Patchstack.</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:59:\"https://avada.com/blog/version-7-15-5-security-update/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: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:50:\"How to Use the Avada Privacy &amp; Consent Element\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://avada.com/blog/how-to-use-the-avada-privacy-consent-element/\";s: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:76:\"https://avada.com/blog/how-to-use-the-avada-privacy-consent-element/#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, 08 Jun 2026 13:43: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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: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:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"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: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:353:\"Cookie consent (the permission a website needs to store or access small tracking files (cookies) on your device) is one of those things you have to get right, but nobody actually enjoys setting it up. Regulations like the EU\'s GDPR require sites to give you clear choices—like \"Accept All,\" \"Reject,\" or \"Manage Preferences\"—before tracking your ...\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:36300:\"<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-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_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-blend:overlay;--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-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-67\"><p>Cookie consent (the permission a website needs to store or access small tracking files (cookies) on your device) is one of those things you have to get right, but nobody actually enjoys setting it up. Regulations like the <a href=\"https://gdpr.eu/\" target=\"_blank\" rel=\"noopener noreferrer\">EU&#8217;s GDPR</a> require sites to give you clear choices—like <strong>&#8220;Accept All,&#8221;</strong> <strong>&#8220;Reject,&#8221;</strong> or <strong>&#8220;Manage Preferences&#8221;</strong>—before tracking your online activity or showing personalized ads.</p>\n<p>The good news? If you&#8217;re running <a href=\"https://avada.com/\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> and <a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a>, you&#8217;ve already got a proper tool for it baked in. The <a href=\"https://avada.com/element/privacy-consent/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Privacy and Consent Element</a> lets your visitors decide for themselves which embeds and cookies they&#8217;ll allow, right on the page, no third-party plugin required. Here&#8217;s how to set it up and tune it to fit your site.</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-51 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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-52 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 This Element Actually Does</h2></div><div class=\"fusion-text fusion-text-68\"><p>The <a href=\"https://avada.com/documentation/privacy-consent-element/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Privacy and Consent Element</a> gives your visitors a list of the cookies your site uses, sorted into the familiar categories: necessary, functional, statistical, and marketing. They tick the ones they&#8217;re happy with, save their choice, and your <a href=\"https://1.envato.market/e4rPJ1\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> website remembers it.</p>\n</div><div class=\"fusion-video fusion-youtube\" style=\"--awb-max-width:1280px;--awb-max-height:720px;--awb-align-self:center;--awb-width:100%;\"><div class=\"video-shortcode\"><priv-fac-lite-youtube class=\"fusion-hidden lty-load\" data-privacy-type=\"youtube\" videoid=\"1EC4w9sTtT8\" class=\"landscape\" params=\"wmode=transparent&autoplay=1&amp;enablejsapi=1\" title=\"How to Use the Avada Privacy &amp; Consent Element\" data-button-label=\"Play Video\" width=\"1280\" height=\"720\" data-thumbnail-size=\"auto\" data-no-cookie=\"on\"></priv-fac-lite-youtube><div class=\"fusion-privacy-placeholder\" style=\"width:1280px; height:720px;\" data-privacy-type=\"youtube\"><div class=\"fusion-privacy-placeholder-content\"><div class=\"fusion-privacy-label\">For privacy reasons YouTube needs your permission to be loaded.</div><button data-privacy-type=\"youtube\" class=\"fusion-button button-default fusion-button-default-size button fusion-privacy-consent\">I Accept</button></div></div></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-69\"><p>It&#8217;s one piece of Avada&#8217;s wider <a href=\"https://avada.com/documentation/how-to-use-the-avada-privacy-consent-tools/\" target=\"_self\" rel=\"noopener noreferrer\">privacy management toolkit</a>, so it works hand in hand with your Avada Global Privacy Settings rather than replacing them.</p>\n<p>Here&#8217;s the gotcha that trips people up: the Element won&#8217;t even show in your Elements list until you enable it.</p>\n<p>Head to <strong>Global Options → Privacy and Consent</strong> and switch on the Privacy Consent option. Save your options, then refresh the page; the Element will now be available to configure in the Avada Builder.</p>\n</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-10 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-10\"><a href=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[a7c5e8869ef74d0386f]\" data-title=\"Avada Privacy &#038; Consent Element\" title=\"Avada Privacy &#038; Consent Element\"><img decoding=\"async\" width=\"1800\" height=\"1065\" alt=\"Avada Privacy &amp; Consent Element\" src=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element.png\" class=\"img-responsive wp-image-897702\" srcset=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-200x118.png 200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-400x237.png 400w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-600x355.png 600w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-800x473.png 800w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-1200x710.png 1200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element.png 1800w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1800px\" /></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-70\"><p>Everything the Element displays — your consent types, which categories are active, descriptions, lifespans — pulls from those <a href=\"https://avada.com/documentation/avada-global-options/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Global Options</a>. So set those up the way you want first, then the Element just reflects them. You can place the Element anywhere on your site, including:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-custom_color_5);--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-cogs fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>On your website’s privacy policy page</strong> – WordPress even gives you a draft privacy policy page out of the box, which makes a tidy spot for it.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cogs fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Inside an Avada Off-Canvas</strong> – More on this below, but this is great if you want a slide-out consent panel instead of a static section.</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-71\"><p>Either way, once it&#8217;s placed, visitors can manage their preferences from there.</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-53 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Element Options Overview</h2></div><div class=\"fusion-text fusion-text-72\"><p>Add the Element to your website, and you&#8217;ll see it already populated with the global settings you set. Now let&#8217;s go ahead and configure it:</p>\n</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-11 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-11\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[fdf10eee77c6ea3c89a]\" data-title=\"Avada Privacy &#038; Consent Element Options\" title=\"Avada Privacy &#038; Consent Element Options\"><img decoding=\"async\" width=\"2000\" height=\"1872\" alt=\"Avada Privacy &amp; Consent Element Options\" src=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options.png\" class=\"img-responsive wp-image-897703\" srcset=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options-200x187.png 200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options-400x374.png 400w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options-600x562.png 600w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options-800x749.png 800w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options-1200x1123.png 1200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-element-options.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></a></span></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-54 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Privacy text</h3></div><div class=\"fusion-text fusion-text-73\"><p>This is your intro blurb. Write whatever you want here to explain how you handle third-party embeds and cookies. A short, plain sentence does the job.</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-55 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Cookie grouping layout</h3></div><div class=\"fusion-text fusion-text-74\"><p>You can keep a flat list (the default) or switch to <strong>&#8220;Grouped,&#8221;</strong> which sorts cookies by category. After selecting <strong>“Grouped,”</strong> five more controls appear:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Group Display</mark> — Stack the groups vertically or lay them out as <strong>Columns</strong>. Choose <strong>Columns</strong>, and you also get a group minimum width and a <strong>Column</strong> gap to fine-tune spacing.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Visible Cookie Groups</mark> &#8211; This pulls straight from your consent categories. Toggle any group <strong>on</strong> or <strong>off</strong> here. Got custom groups you don&#8217;t want showing? Switch them <strong>off</strong>.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Show Group Titles</mark> — <strong>“On”</strong> by default. You can also set the HTML tag for the title, so if your page structure needs the group headings to be <strong>H3</strong>, you can make that happen.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Show Group Description</mark> — This displays the category description you wrote in the consent categories area. Only applies to the grouped layout.</div></li></ul><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-56 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Form field layout</h3></div><div class=\"fusion-text fusion-text-75\"><p>Choose <strong>“Stacked”</strong> or <strong>“Floated”</strong>. You won&#8217;t notice much with the grouped layout, but on a flat list, floated lets shorter items (like your necessary cookies) sit neatly side by side instead of stacking.</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-57 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ List WordPress necessary cookies</h3></div><div class=\"fusion-text fusion-text-76\"><p><strong>“On”</strong> by default. You can override it to <strong>“Off”</strong> here if you want.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#EBFAFF;--awb-accent-color:#2b4575;--awb-border-size:0px;--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-plug fal\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">If the <strong>WooCommerce</strong> or <strong>The Events Calendar</strong> plugins are active, their required cookies are automatically pulled in. Handy, and one less thing to manage manually.</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-title title fusion-title-58 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Lifespan and description toggles</h3></div><div class=\"fusion-text fusion-text-77\"><p>If you&#8217;ve enabled cookie lifespan and cookie description in your website’s Avada Global Options, the Element displays them as well. But you can turn either off right here if you&#8217;d rather keep the consent area clean and simple.</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-59 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 buttons</h3></div><div class=\"fusion-text fusion-text-78\"><p>This is where you control the action buttons at the bottom:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Show Update Button</mark> — <strong>“On”</strong> by default, with editable button text.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Show Accept All Button</mark> &#8211; Turn it on and you can set its label.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Show Reject All Button</mark> &#8211; Turn it on and you can set its label.</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-79\"><p>Then there&#8217;s the <strong>Save Action</strong>:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Reload Page</mark> — Submits the form and reloads so consent-gated content re-renders.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Ajax</mark> &#8211; Saves client-side, swaps placeholders instantly, and fires an event. Use this one when the element lives inside an Avada Off-Canvas.</div></li></ul><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-60 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">↳ Visibility and CSS</h3></div><div class=\"fusion-text fusion-text-80\"><p>Here you&#8217;ll find the usual visibility controls (show or hide by screen size), plus CSS Class and CSS ID fields for further styling customization.</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-61 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Design Tab</h2></div><div class=\"fusion-text fusion-text-81\"><p>This tab lets you style the Element to best suit your website’s aesthetic. Here you can:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-custom_color_5);--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 fa-fill-drip fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Set margins and padding for the Element.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-fill-drip fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Control typography for the group title and main text.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-fill-drip fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Adjust the opacity of the necessary cookies — a nice touch that visually signals they can&#8217;t be toggled off.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-fill-drip fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Set colors for the cookie lifespan and cookie description, plus a description font size.</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-82\"><p>A small example: set a bit of bottom margin, point the group title at your subheading typography set, nudge the font back to 18px, and color the lifespan text to match your brand. Little things, but they make the consent area feel like part of your site rather than a bolt-on.</p>\n<p>And don&#8217;t forget the <strong>Extras Tab</strong> for conditional rendering and animation — you can fade the whole thing in from the side if you want a bit of polish.</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-62 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Visitors Actually See</h2></div><div class=\"fusion-text fusion-text-83\"><p>On the website&#8217;s front end, a visitor chooses the cookies they&#8217;re comfortable with:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-custom_color_5);--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 fa-cookie fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Choose <strong>“Accept All”</strong> or <strong>“Update”</strong>, and their choices are saved to a cookie. Third-party embeds load by default.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-cookie fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Choose <strong>“Reject All”</strong>, and every checkbox clears, saving the privacy cookie with no consents.</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-84\"><p>Say a visitor deselects YouTube and clicks <strong>“Update”</strong>. The page reloads, they get an update notice, and now any page with a YouTube embed won&#8217;t automatically load that video. Instead, the visitor gets full control over whether to load it, with a link back to your website privacy policy page (set under <strong>Settings → Privacy</strong> in the WordPress Dashboard).</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-12 hover-type-none\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[85ab9cb93c5d521e761]\" data-title=\"Cookie Consent\" title=\"Cookie Consent\"><img decoding=\"async\" width=\"2000\" height=\"1340\" alt=\"Cookie Consent\" src=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection.png\" class=\"img-responsive wp-image-897706\" srcset=\"https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection-200x134.png 200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection-400x268.png 400w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection-600x402.png 600w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection-800x536.png 800w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection-1200x804.png 1200w, https://avada.com/wp-content/uploads/2026/06/avada-privacy-consent-post-cookie-selection.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-85\"><p>Meanwhile, an embed they did approve — a Google Map, say — loads normally, because permission&#8217;s already on file. It&#8217;s granular, and it respects exactly what each person chose.</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-63 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Using it in an Avada Off-Canvas</h2></div><div class=\"fusion-text fusion-text-86\"><p>If you&#8217;d rather have a slide-out consent panel than a section on a page, you can turn off the Privacy and Consent bar and put the Element inside an <a href=\"https://avada.com/feature/off-canvas-builder/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Off-Canvas</a> instead. Set it to load a few seconds after the page does, and it&#8217;ll show the same information in a panel.</p>\n<p>The Avada Off-Canvas options have a Privacy and Consent interaction behavior setting in the rules section, with three choices:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">None</mark> — No special behavior.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Display Until Consented</mark> &#8211; Opens the Avada Off-Canvas for visitors who haven&#8217;t saved their choices yet. Once they have, it stops opening.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-long-arrow-alt-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Display Until Consent &amp; Close the Off-Canvas</mark> &#8211; Same as above, but auto-closes the panel the moment they save. This one needs your save action set to <strong>“Ajax”</strong>.</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-87\"><p>That last option is the smoothest experience: the visitor consents, the panel quietly slides away, and they get on with their day.</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-64 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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-88\"><p>The Privacy and Consent Element is one of those features that looks fiddly until you&#8217;ve clicked through it once; then it just makes sense. Set up your website’s Global Options, drop the Element where it fits, tune the layout, and you&#8217;ve got a consent system that actually respects your visitors&#8217; choices instead of forcing them into clicking <strong>&#8220;Accept.&#8221;</strong></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:73:\"https://avada.com/blog/how-to-use-the-avada-privacy-consent-element/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: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:40:\"Your Questions About Avada One, Answered\";s:7:\"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://avada.com/blog/your-questions-about-avada-one-answered/\";s: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/your-questions-about-avada-one-answered/#comments\";s: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, 03 Jun 2026 14:37:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Avada One\";s: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:\"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:3;a:5:{s:4:\"data\";s:9:\"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: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:319:\"We recently shared the A New Chapter for Avada blog post, introducing Avada One and explaining why our plans changed along the way. Since the announcement, we have spent time reading everything you sent back to us and posted to the Facebook group, etc. The comments, the messages, the long posts, the short ones. We ...\";s: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:32462:\"<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-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_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-blend:overlay;--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-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-89\"><p>We recently shared the <a href=\"https://avada.com/blog/a-new-chapter-for-avada/\" target=\"_self\" rel=\"noopener noreferrer\">A New Chapter for Avada</a> blog post, introducing Avada One and explaining why our plans changed along the way. Since the announcement, we have spent time reading everything you sent back to us and posted to the Facebook group, etc. The comments, the messages, the long posts, the short ones. We have read all of it.</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-13 hover-type-none\"><img decoding=\"async\" width=\"2000\" height=\"500\" alt=\"Avada One Logo\" title=\"Avada One Logo\" src=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo.png\" class=\"img-responsive wp-image-897682\" srcset=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-200x50.png 200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-400x100.png 400w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-600x150.png 600w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-800x200.png 800w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-1200x300.png 1200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-90\"><p>Some of you are excited. Some of you are worried. Some of you are frustrated, and a few of you are angry. All of those reactions are fair, and we are glad you voiced them. Rather than replying to everyone one by one, we have compiled the most frequently asked questions and concerns and answered them here as plainly as we can. If your question is not covered, it does not mean we missed it, and more answers are coming as things firm up.</p>\n<p>We have created a shortened version with just the quick answers and a longer one, if you want the full reasoning behind them.</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-65 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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-66 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 short version</h2></div><ul style=\"--awb-iconcolor:var(--awb-custom_color_5);--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 fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>Why a subscription at all?</strong> – Because development never stops, and a one-time payment only funds it once. Product support, ongoing development, and servers that deliver prebuilt content all carry real, continuous costs. A subscription lets us keep building steadily rather than in bursts, and with AI features for customers in the mix, it is genuinely the only model that works. It helps both products last.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>If a subscription lapses, does the website break?</strong> – No. The site continues to run exactly as it does today. You stop receiving updates, support, and prebuilt content, but nothing on the live site breaks or gets locked. This is the same thing that happens when you deactivate a purchase code in Avada today.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>How does licensing work for agencies and clients?</strong> – One subscription covers a set number of sites, and whoever buys it holds it. No more juggling many separate licenses or the old ThemeForest support extension model. The bundles are designed so that the more sites you cover, the lower the effective cost per site becomes, making the larger tiers very economical for agencies. Everything is managed from one account in My Avada.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Will Avada Classic continue to be developed, or quietly be abandoned?</strong> – It keeps being developed. We are still shipping updates, including a release this week. Classic continues to receive security fixes, bug fixes, and smaller new features, exactly as it has while we have been building the new foundation, which will now be included in Avada One. Avada Classic will receive updated features from Avada One when feasible, and features that are not tied to the new framework we are building. That also makes sure there won’t be breaking changes. It is supported and not going away. If you want the lifetime, one-time option, you still have it.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Is Avada One still WordPress, or a separate platform?</strong> – It is still WordPress. You install it on your own WordPress site, as you always do. At the start, it will feel very close to the Avada you know, and it will diverge over time, but it stays a WordPress product. The word platform refers to the account and management layer on top.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Will existing Avada sites still work, and will my setup carry over?</strong> – Avada Classic remains fully compatible with your current sites, custom CSS, custom scripts, and child themes. If you move a current, up-to-date site to Avada One, it will migrate, though some legacy features will not carry over (to start, the legacy layouts from Global Options). We are building tools to help with that migration.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>We voted for performance &amp; mobile, not AI &amp; marketing. What happened?</strong> – Performance is a real priority, and it is a core reason Avada One exists. To be straight with you, fully achieving it requires major foundational changes that couldn&#8217;t be added to the old architecture, which is why we built the new one. You will see improvement in the initial release, but the larger gains come over time as we keep building on that foundation. This is ongoing work, not a finished result on day one. AI and marketing tools are additions on top, not a replacement for the core builder and performance work.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Why not just sell Classic directly on avada.com and skip the subscription?</strong> – ThemeForest has been Avada Classic&#8217;s home for 14 years, and we&#8217;ll keep everything about Avada Classic as you are used to, keeping it right where you have always found it. There is no downside to you either way: Avada Classic remains a one-time purchase, fully supported, exactly as it always has been.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Will existing customers be recognized?</strong> – Yes. Every existing Avada customer gets 50% off the standard single-site plan, with no conditions. If you own more licenses, that same 50% applies to a larger version of the plan covering more sites, matched to how many you own. Prefer the AI-enabled plan instead? You can apply the same recognition there at 25% off. More details below.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-comment-dots fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>What about pricing and timing?</strong> – Full pricing lands closer to launch, once it is final, rather than as numbers; we might still change them. The recognition commitment above is what we are making now. We aim to launch during the summer (August &#8211; September).</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-67 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Now the longer version</h2></div><div class=\"fusion-title title fusion-title-68 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;Why subscription at all? Avada was a one-time purchase.&#8221;</h3></div><div class=\"fusion-text fusion-text-91\"><p>We understand this completely, and we won’t frame a subscription somehow as a gift. It is a change, and for some of you, it might be unwelcome. Nevertheless, there are profound reasons for the change that will also benefit you.</p>\n<p>A one-time purchase pays the team once. Maintaining and improving a platform is never-ending work, and in practice, nobody buys <a href=\"https://avada.com/\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> once and expects it to stand still. You expect ongoing development, and rightly so. But that creates a mismatch: the money comes in once while the work has to continue for years. A subscription ties the money coming in to the pace of work going out. That is the actual reason, not a marketing line.</p>\n<p>It also helps to be clear that none of this is static or free to run. AI features carry real per-use costs. The servers that deliver prebuilt content cost money to run. Support costs money. Development costs money. Those costs continue every month regardless of when someone bought their license. A subscription aligns with that ongoing reality, and, in particular, AI features are simply not sustainable under a one-time model.</p>\n<p>It is also worth remembering that support was never actually free under the old model. On ThemeForest, ongoing support is a separate paid extension available after purchase. So a subscription that already includes updates and support is not adding a cost that did not exist before. For many people, it bundles together things they were already paying for piece by piece, and once full pricing is public, we think the comparison will look a good deal more reasonable than it might feel in the abstract right now.</p>\n<p>There is a second point worth sitting with. A lifetime updates promise is only as good as the company&#8217;s ability to keep funding them. If we cannot afford to keep building, you still own your lifetime license, but the updates stop anyway. A one-time model quietly carries that risk for everyone. A subscription lets us keep the promise rather than slowly run out of room to keep it, and in the end, that protects both products.</p>\n<p>And to be very clear about what is not happening: nothing is being taken away from you. Classic stays a one-time purchase on ThemeForest. Your existing licenses still work. Your client sites are untouched. Nothing is billed to you retroactively. Avada One is a new, separate product, not your existing Avada placed behind a paywall.</p>\n<p>For the agencies among you, there is a parallel worth pointing out. Many of you have already moved your own clients away from one-off project fees and onto maintenance retainers, for exactly the same reason we are describing here: a living website is ongoing work, and ongoing work is best matched by ongoing, predictable income on both sides. It is the same principle you already apply in your own businesses. And because a subscription is a clean, recurring line item, it slots naturally into the maintenance plans and quotes you already build for clients, much like hosting or a premium plugin, rather than being a cost you have to absorb yourself.</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-69 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;What actually happens to a client site if the subscription lapses?&#8221;</h3></div><div class=\"fusion-text fusion-text-92\"><p>We saw this fear spreading, sometimes phrased as <em><strong>&#8216;stop paying or your site dies.&#8217;</strong></em> Plain and simple: this is not true. If an Avada One subscription lapses, the live website continues to work. Visitors see it exactly as before.</p>\n<p>What you lose access to is the same set of things you would lose in Avada Classic today if you deactivated a purchase code: product updates, support, and prebuilt content imports. The site itself is not locked or broken. You have a website; it runs, end of story.</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-70 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;How does licensing actually work for agencies and clients?&#8221;</h3></div><div class=\"fusion-text fusion-text-93\"><p>This came up a lot from those of you managing many sites. Here is how it works:</p>\n<p>The whole idea behind Avada One is a single subscription, not a pile of separate licenses to juggle, and not the old ThemeForest support extension model. If you are an agency, one subscription covers all the site allowances you need. Whoever buys the subscription owns it and holds the account. If you build a site for a client and you want the client to own the subscription, the client buys it and holds the account. If you would rather manage it yourself across all your client work, buy the bundle that fits your number of sites. This is the same way most subscriptions work, including the hosting and premium plugins many of you already pass through to clients.</p>\n<p>The bundles are built so that the cost per site drops steeply as you scale. A larger agency bundle costs only a few dollars per site per year, far less than buying and maintaining individual licenses ever did. So no single client site becomes a burden, and the overall value at scale is greater than before.</p>\n<p>Licenses are not permanently attached to a single site. If you remove Avada One from one website, you can use that slot on another, as long as your total active installs stay within your subscription&#8217;s limit. So moving, retiring, or handing off a site is straightforward.</p>\n<p>For agencies, the new OAuth-based registration and the central Dashboard in My Avada are a real practical gain. You connect a site to your account with a login instead of juggling purchase codes, and you see and manage everything in one place. Updates and site management across many projects become simpler than before. Clean handovers, clear ownership, one screen for many sites.</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-71 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;Classic is going to die. You will say it won&#8217;t, but it will.&#8221;</h3></div><div class=\"fusion-text fusion-text-94\"><p>This was one of the deepest concerns we saw, and we take it seriously.  Since simple reassurance alone is worth very little, consider our track record with updates. We have always kept Avada up to date, frequently,  and have continued to do so over the past several months, during which we have also been working on Avada One. Another release is going out this week. That is not a goodbye tour. Classic continues to get security fixes, bug fixes, and new features. What is true is that the larger new capabilities, the ones built on the new architecture, will live in Avada One. Classic will receive fewer, smaller feature additions than Avada One. We are not going to pretend otherwise.</p>\n<p>But there is an important difference between smaller and abandoned. Avada Classic has always been a stable, dependable product, and it will continue to be just that. It will keep working with the sites you have already built. So, we won’t let Avada Classic just silently die. There is no reason to be afraid of that. If the lifetime, one-time model is what you want, you still have it, and we will keep supporting it just as we have throughout the time we have been building Avada One.</p>\n<p>There is another angle to consider here. The reason Avada Classic can stay stable is the same reason we built Avada One separately in the first place. Avada One introduces changes deep enough that we cannot guarantee they will leave your existing sites, custom CSS, scripts, and child themes untouched. If we had forced those changes into the product you already use, we would have broken sites. Lots of them. Keeping Classic as its own product is what protects you from that.</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-72 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;Will existing customers actually be recognized, or is that just a nice sentence?&#8221;</h3></div><div class=\"fusion-text fusion-text-95\"><p>We hinted at this in the first post, and many of you, rightly, wanted something concrete. So here is a real commitment, not a hint. The full plans and pricing come closer to launch, but we wanted you to know the shape of it now.</p>\n<p>Every existing Avada customer gets <strong>50% off the standard single-site plan</strong>: no exceptions, and no conditions on when or how much you bought. If you own Avada, this applies to you.</p>\n<p>If you own more than one license, the same 50% applies to all of them. It unlocks a larger version of that plan, one that covers more sites and is matched to the number of licenses you currently own. The more you have built on Avada over the years, the further your recognition scales. So whether you run a single site or manage hundreds, the offer reflects what you have actually invested in Avada.</p>\n<p>Or, if you would prefer an AI-enabled plan, you can apply the same recognition there instead, at 25% off, matched to your licenses the same way. The discount is smaller only because that plan includes AI credits, which carry a real ongoing cost on our side.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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-long-arrow-right fas\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">You have a choice: <strong>50%</strong> off the standard plan, or <strong>25%</strong> off the AI-enabled plan.</span></div></div><div class=\"fusion-text fusion-text-96\"><p>We will determine your license count using your existing account, so there is nothing for you to dig up or prove manually.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#fee2e1;--awb-accent-color:#a02323;--awb-border-size:0px;--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-exclamation-circle fas\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">You will have three months from launch day to claim it.</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-title title fusion-title-73 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;We voted for performance and mobile, not AI and marketing.&#8221;</h3></div><div class=\"fusion-text fusion-text-97\"><p>Another fair critique that we want to answer properly. Some of you pointed out that when we asked what mattered most, speed and mobile ranked high, while AI and marketing tools ranked a bit lower, and yet those were part of the headlines.</p>\n<p>Two things. First, performance absolutely is a priority for us, and it is a core reason Avada One exists at all. But here we want to be realistic rather than oversell. Fully achieving the performance we want requires major, foundational changes, the kind that simply could not be bolted onto the old architecture. That is exactly what the new foundation is built to enable. You will see improvement in the initial release, but the bigger gains come progressively as we keep building on that foundation. We would rather tell you plainly that this is ongoing work than have you expect a finished, maximally fast product on day one and feel let down. The point of the new architecture is that the ceiling is much higher, and we can keep pushing toward it over time, rather than hitting the wall the old structure imposed. </p>\n<p>Second, AI and marketing tools are visible headlines because they are new and easy to point at, but they are additions, not a substitute for the core work. They also sit on top of the platform rather than relying on deeper performance changes, so we can ship them without waiting for that foundational work to be fully complete. The core experience, the builder, the performance, and the workflows are still the center of the product. </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-74 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;If I want to move a site to Avada One, will it actually carry over?&#8221;</h3></div><div class=\"fusion-text fusion-text-98\"><p>For sites that are current and using Avada&#8217;s recent tools, yes, you can migrate to Avada One rather than rebuild from scratch. We want to be straight about the limits, though. Because Avada One is built on a new foundation, some legacy features will not carry across. To begin with, that means the legacy layouts from Global Options. It is worth saying that these are not arbitrary removals. Leaving behind older, heavier legacy approaches is part of how the new foundation achieves the performance gains we discussed above. Carrying every old method forward indefinitely is one of the things that held back the previous architecture.</p>\n<p>We are not leaving you to sort this out alone. We are actively building migration tools to help move those pieces across as smoothly as possible. At release, we will provide a definitive list of exactly what does and does not carry over, so there are no surprises, and you can plan with full clarity.</p>\n<p>This is also why keeping your sites up to date matters. The closer a site is to Avada&#8217;s latest building techniques, the smoother any future move will be. That is worth doing for its own sake today, not only as preparation for Avada One.</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-75 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">&#8220;Why not just sell Classic directly on avada.com and skip subscription?&#8221;</h3></div><div class=\"fusion-text fusion-text-99\"><p>A few of you asked why we do not sell the one-time Avada Classic directly on our site rather than through ThemeForest. ThemeForest has been Avada Classic&#8217;s home for 14 years, and we are going to keep everything about Avada Classic as you are used to it, right where you have always found it.</p>\n<p>More to the point, this is mostly a question that answers itself: nothing about Avada Classic changes. There is no downside to you either way. It remains the one-time purchase it has always been, in the same place, fully supported, exactly as you know it. The thing that matters to you- that Avada Classic stays available one time and keeps working- is unchanged. </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-76 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">One last thing</h2></div><div class=\"fusion-text fusion-text-100\"><p>To those of you weighing whether to stay: we hear you, including those who tell us plainly that a subscription is not for you. We are not going to argue you out of how you feel about it. What we will do is make sure Classic remains a genuine, supported home for the work you have already built, and make sure that if you do try Avada One, the terms are fair and the door back is always open.</p>\n<p>Pricing details, launch timing, and more answers will be provided as they become available. Thanks for your feedback. Thanks for your patience.</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:68:\"https://avada.com/blog/your-questions-about-avada-one-answered/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:\"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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:79:\"\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:30:\"Version 7.15.4 Security Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://avada.com/blog/version-7-15-4-security-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://avada.com/blog/version-7-15-4-security-update/#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, 02 Jun 2026 13:50:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:19:\"Website Maintenance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s: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:379:\"We have released Avada 7.15.4, delivering an array of exciting new features, improvements, and fixing four security issues: SECURITY: Fixed a possible arbitrary file deletion via a form entry value in Avada Forms. SECURITY: Fixed a possible privilege escalation via invalid role assignment in the register action of Avada Forms. SECURITY: Fixed possible PHP object injection ...\";s: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:6623:\"<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:calc( 1280px + 0px );margin-left: calc(-0px / 2 );margin-right: calc(-0px / 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-blend:overlay;--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:0px;--awb-margin-bottom-large:10px;--awb-spacing-left-large:0px;--awb-width-medium:100%;--awb-spacing-right-medium:0px;--awb-spacing-left-medium:0px;--awb-width-small:100%;--awb-spacing-right-small:0px;--awb-spacing-left-small:0px;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-101\" style=\"--awb-text-transform:none;\"><p>We have released <a href=\"https://avada.com/whats-new/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada 7.15.4</a>, delivering an array of exciting new features, improvements, and&nbsp;fixing four security issues:</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-19 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-shield-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">SECURITY: Fixed a possible arbitrary file deletion via a form entry value in Avada Forms.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-shield-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">SECURITY: Fixed a possible privilege escalation via invalid role assignment in the register action of Avada Forms.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-shield-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">SECURITY: Fixed possible PHP object injection via live editor preview meta and unrestricted render callback in partial refreshes.</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-102\" style=\"--awb-text-transform:none;\"><p>This is disclosed in our <a href=\"https://avada.com/documentation/avada-changelog\" target=\" _self\" rel=\"noopener noreferrer\">Changelog</a> and our <a href=\"https://avada.com/documentation/important-update-information\" target=\" _self\" rel=\"noopener noreferrer\">Important Update Info</a> help file.</p>\n<p>Like WordPress and any entity that develops software, we understand that security is not absolute and is a continuous process managed as such. We do our best to prevent security issues as proactively as possible, as we do not assume they’ll never come up. Our responsibility is to quickly take care of them and work to get our customers notified and prepared. This is why we recommend keeping your website and plugins up-to-date and maintained at all times.</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-77 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Should I Do Next?</h2></div><div class=\"fusion-text fusion-text-103\"><p>We cannot stress enough the importance of ensuring that your website is kept up to date and maintained at all times. Please update to ensure that your installation is issue-free and the fix detailed above is applied. These are our detailed update instructions:</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-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/updating-avada-older-versions/\" target=\"_blank\" rel=\"noopener noreferrer\">Updating from an old version of Avada?</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/important-update-information/\" target=\"_blank\" rel=\"noopener noreferrer\">Important Update Info</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-update-the-avada-website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Update</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-patcher/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Patcher</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-external-link-alt fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-changelog/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Changelog</a></div></li></ul>\n<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-104\"><p>We would like to extend our gratitude and thanks to Patchstack and Wordfence.</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:59:\"https://avada.com/blog/version-7-15-4-security-update/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:23:\"A New Chapter for 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:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://avada.com/blog/a-new-chapter-for-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:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://avada.com/blog/a-new-chapter-for-avada/#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, 28 May 2026 09:26:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Avada One\";s: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:\"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:3;a:5:{s:4:\"data\";s:9:\"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: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:316:\"It\'s been a while since our last roadmap update in October 2025, and we know many of you have been wondering what\'s next. Before anything else, we want to acknowledge that directly. The gap in communication has been longer than we would have liked, and longer than you deserved. We understand that silence can be ...\";s: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:45030:\"<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-blend:overlay;--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-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-105\"><p>It&#8217;s been a while since our last <a href=\"https://avada.com/blog/avada-roadmap-october-2025-progress-update/\" target=\"_self\" rel=\"noopener noreferrer\">roadmap update</a> in October 2025, and we know many of you have been wondering what&#8217;s next. Before anything else, we want to acknowledge that directly. The gap in communication has been longer than we would have liked, and longer than you deserved.</p>\n<p>We understand that silence can be unsettling, especially when you&#8217;re relying on a product for your day-to-day work or waiting on news that matters to your plans. That was not the experience we wanted to give you, and we take responsibility for it.</p>\n<p>While we’ll go into more detail throughout this post, the short version is that we’ve spent the past few months carefully evaluating the future direction of the <a href=\"https://avada.com/\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> ecosystem and ensuring we take the right long-term path for both our products and our users.</p>\n<p>Part of that process also coincided with significant <a href=\"https://hub.author.envato.com/changes-to-envato-market-revenue-share-and-exclusivity-what-you-need-to-know/\" target=\"_blank\" rel=\"noopener noreferrer\">platform and business-model changes</a> introduced by Envato that directly impact authors and long-term product sustainability. As those changes unfolded, it became increasingly important for us to take the time to evaluate not just the technical roadmap ahead but also how we can continue to deliver the level of innovation, support, and long-term commitment that Avada users expect from us. Because of that, we felt it was important not to rush into further roadmap updates or announcements until we had a clear, confident direction for the platform and the ecosystem as a whole.</p>\n<p>Throughout that time, we know many of you have been eagerly following the progress of what we previously introduced as Avada 8, looking forward to its release and the improvements we&#8217;ve been previewing along the way. We understand this news will land differently depending on what you&#8217;ve been waiting for, and we want to acknowledge that. Whether you&#8217;re excited about what&#8217;s next or you simply rely on Avada every day and want to know it&#8217;s in good hands, we hear you. This post is our honest account of where things stand and where we&#8217;re headed.</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-78 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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-79 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Journey So Far</h2></div><div class=\"fusion-text fusion-text-106\"><p>What started as a new framework steadily evolved into something much broader in scope, and the story of how that happened is worth telling properly.</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-14 hover-type-none\"><img decoding=\"async\" width=\"2000\" height=\"480\" alt=\"The Avada Journey\" title=\"The Avada Journey\" src=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-journey-narrow.png\" class=\"img-responsive wp-image-897681\" srcset=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-journey-narrow-200x48.png 200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-journey-narrow-400x96.png 400w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-journey-narrow-600x144.png 600w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-journey-narrow-800x192.png 800w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-journey-narrow-1200x288.png 1200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-journey-narrow.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-107\"><p>Over the past two years, we&#8217;ve been working intensively on what we initially introduced as Avada 8, a completely reimagined experience with a new UI, improved UX, enhanced performance, and a modernized data structure. Along the way, we&#8217;ve shared glimpses of that journey through our roadmap updates.</p>\n<p>As the project matured, we saw how modern design and development patterns were evolving across the industry. New ways of building, structuring content, and creating workflows were emerging, and the possibilities in web creation were expanding in directions that opened up genuinely exciting opportunities. Rather than lock ourselves into an earlier approach, we deliberately raised the bar.</p>\n<p>That meant revisiting parts of the foundation we had already built, not because the original direction was wrong, but because we saw a better path and wanted to take it. We didn&#8217;t just want to follow those trends. We wanted to implement them in a way that meets the level of quality and refinement you expect from Avada. Doing that properly took 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-80 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Scope, Foundation, &amp; the Limits of Backward Compatibility</h2></div><div class=\"fusion-text fusion-text-108\"><p>And as the scope grew, so did the depth of the decisions in front of us. Each time we pushed further into what Avada 8 was becoming, it became clearer that the changes we were making were not just additive. They were foundational. The kind of changes that, if done right, would allow us to build things in the future that would simply not be possible on the architecture we had been working within before. And if done hastily, it would result in exactly the kind of fragmented, patchwork system that creates more problems than it solves.</p>\n<p>At the same time, we made a conscious decision: we didn&#8217;t want to rush out a major release built on partially adapted foundations, only to spend the following months or even years refining, restructuring, or correcting underlying systems. Many of the improvements we had been working on require bigger changes to the core framework and codebase. Without taking the time to implement them properly from the ground up, the result could easily have become a system that limits what we can build on top of it for years to come. Instead, we chose to invest more time upfront to ensure a solid, future-proof foundation.</p>\n<p>As that scope grew, another challenge became increasingly clear. The depth of architectural change we were pursuing pushed hard against the constraints of backward compatibility. Supporting the full weight of the existing Avada structure while simultaneously building something genuinely new created a tension that could not simply be engineered away. At a certain point, trying to do both well meant doing neither well. The more we tried to preserve full compatibility with everything that came before, the more it constrained what we could build for the future.</p>\n<p>Over time, it became clear that the scale of what we were building could not be realistically integrated into the existing Avada product structure without fundamentally altering the experience that many users know, love, and rely on today.</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-81 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Introducing Avada One</h2></div><div class=\"fusion-text fusion-text-109\"><p>With that in mind, as the scope and long-term vision evolved, we recognized that a different approach would ultimately yield the best result for everyone.</p>\n<p>To be direct: Avada 8, as it was originally conceived and communicated, will not be released. What began as Avada 8 grew so significantly in scope and ambition that it outgrew the boundaries of a traditional major version update. Trying to ship it as one would have meant compromising on the very things that made it worth building. We&#8217;re not willing to do that, and we don&#8217;t think you would want us to either.</p>\n<p>Instead, that vision has evolved into something broader: a new, dedicated platform built around a modernized interface, reimagined workflows, improved performance, deeper flexibility, AI-powered capabilities, and an entirely new architectural foundation designed for long-term evolution.</p>\n<p>Rather than trying to force all those changes into the existing Avada product structure, we decided to allow that vision to grow into its own dedicated platform: <strong>Avada One</strong>.</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-15 hover-type-none\"><img decoding=\"async\" width=\"2000\" height=\"500\" alt=\"Avada One Logo\" title=\"Avada One Logo\" src=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo.png\" class=\"img-responsive wp-image-897682\" srcset=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-200x50.png 200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-400x100.png 400w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-600x150.png 600w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-800x200.png 800w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo-1200x300.png 1200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-logo.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-110\"><p>The name is deliberate. Avada has always been built around the idea of giving website creators everything they need in one place. With <strong>Avada One</strong>, that idea takes on a whole new meaning. One product. One account to connect and manage all your sites. One platform that, over time, will bring together design, content, AI, and marketing capabilities in a way never before possible. Built for everything modern web creation requires, and built to make managing it all significantly simpler.</p>\n<p>That is the foundation we are building toward. And with <strong>Avada One</strong>, we are building it from the ground up.</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-82 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 the Stage</h3></div><div class=\"fusion-text fusion-text-111\"><p>Avada One represents the next generation of the Avada experience, built from the ground up on a new architectural foundation and designed around the workflows, expectations, and possibilities of modern web creation. And here we want to set expectations clearly from the start, because we think that matters more than building anticipation.</p>\n<p>Avada One will not arrive as the full product we have been previewing over time. The initial release is a foundation. From that foundation, the experience will grow into something that simply would not have been possible within the current Avada framework. It establishes the new architecture, core systems, and ways of working that everything else will be built on. Much of what you know from Avada will still feel familiar in that first version, and that is intentional. But what is different under the surface matters enormously for where Avada One can go from here, even if not all of that is immediately visible in the early experience.</p>\n<p>From launch, our plan is to move at pace. Regular feature updates will build progressively and bring Avada One closer to the full vision we have been working toward. The destination remains the same as what we have been previewing. The path there is incremental and deliberate, because we believe that is the right way to build something that will genuinely last.</p>\n<p>At the same time, this approach allows us to protect and preserve what many users already love about Avada today. And that distinction is important.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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-bullhorn fas\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">Avada One is a completely separate product from the original Avada. It is not a replacement, and it does not change how existing Avada customers use, manage, or build websites with Avada and WordPress.</span></div></div><div class=\"fusion-text fusion-text-112\"><p>The original Avada will continue to be sold on ThemeForest with the same licensing model, ongoing updates, support, fixes, and continued development. Nothing about your current setup has changed.</p>\n<p>For users who are excited about the future-facing vision we&#8217;ve been building toward, Avada One will open the door to that next-generation experience. For users who love the current Avada experience exactly as it is, that path remains fully supported. You do not need both; each is designed for a different direction, and the choice is entirely yours.</p>\n<p>Avada One will be sold directly through avada.com and will follow a subscription-based model designed to support the long-term sustainability, infrastructure, and ongoing innovation behind the platform.</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-83 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">What the Initial Release Includes</h3></div><div class=\"fusion-text fusion-text-113\"><p>While the full scope of the initial release will be shaped by what we can deliver to the standard Avada One deserves, some things are already certain.​</p>\n<p>Starting with something that will make a noticeable difference from day one: Avada One ships as a single, unified package. No more separate Avada Core and Avada Builder plugins to install, manage, or keep in sync. One product, one update, one place to manage everything.</p>\n<p>Product registration is also getting a meaningful overhaul. Instead of managing purchase codes, you will connect your website directly to your My Avada account using a simple OAuth login. From there, you can see and manage all connected sites in one place, making it significantly easier to keep track of your projects and licenses.</p>\n<p>On the design side, Avada One introduces a completely new dashboard experience and a comprehensive overhaul of global color handling across your projects. On the AI side, the platform will include practical, integrated tools for image creation, image adjustment, and text generation, as well as an AI-powered help center to support you as you work.</p>\n<p>These are the starting points. Beyond everything we have already been building toward and previewing as part of the Avada vision, we are also excited to share that marketing and sales tools will be coming to Avada One as a dedicated addition. Bringing those capabilities directly into the platform has been part of our planning alongside the core product, and it is one of the things we are most looking forward to introducing as Avada One grows. <strong>More on that soon.</strong></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-84 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Two Products, Two Experiences</h2></div><div class=\"fusion-text fusion-text-114\"><p>The original Avada and Avada One are designed to coexist long-term, serving different needs and different directions:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-custom_color_5);--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 icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>Avada Classic</strong> – Focuses on stability, continuity, and the proven experience that existing users know and rely on. That means updates, with new features, maintenance improvements, and security fixes, will be ongoing as usual. There is no plan to change that. </div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>Avada One</strong> – Focuses on new architecture, modern workflows, and future-facing capabilities, free to evolve without the constraints of maintaining full backward compatibility.</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>The naming distinction and separation allows both products to grow as intended, without one limiting the other. And it allows you to choose the experience that best fits your workflow, projects, and future needs.</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-85 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 About Compatibility?</h2></div><div class=\"fusion-text fusion-text-116\"><p>We know that one of the first questions many of you will have is how the original Avada and Avada One will work together in practice, especially regarding existing websites, workflows, and long-term compatibility.</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-16 hover-type-none\"><img decoding=\"async\" width=\"2000\" height=\"500\" alt=\"Avada Compatibility\" title=\"Avada Compatibility\" src=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-compatibility.png\" class=\"img-responsive wp-image-897677\" srcset=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-compatibility-200x50.png 200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-compatibility-400x100.png 400w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-compatibility-600x150.png 600w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-compatibility-800x200.png 800w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-compatibility-1200x300.png 1200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-compatibility.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-117\"><p>At the beginning of this journey, Avada One will offer compatibility with current Avada content and workflows, for sites that have kept up with Avada&#8217;s recent updates and are using its current set of tools. If you&#8217;ve been keeping pace with Avada&#8217;s evolution, you&#8217;ll be able to explore and transition smoothly, without having to rebuild or change everything you already have in place.</p>\n<p>If your site relies on older approaches or has not been updated in some time, some content may not carry over directly. This is a good moment to review and modernise your setup, not only to take advantage of what current Avada already offers, but to make any future move to Avada One as straightforward as possible.</p>\n</p>\n<p>At the same time, it&#8217;s important to understand that Avada and Avada One are built on different foundations and will evolve as separate products over time. As Avada One continues to develop independently, a fully seamless long-term upgrade path between the two may become less practical. But that&#8217;s a bridge for the future; there is no requirement or deadline to move, and you can continue using Avada exactly as you do today for as long as you choose.</p>\n<p>And that&#8217;s also what makes this exciting. Avada One is not just a continuation, it&#8217;s the beginning of a new chapter. A platform where we can explore new ideas, introduce new workflows, and build the future of web creation in a more flexible and modern way.</p>\n<p>We want to invite you to be part of that journey from the very beginning. Your feedback, your use cases, and your experience will play a key role in shaping where Avada One goes next.</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-86 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Avada One Is Subscription-Based</h2></div><div class=\"fusion-text fusion-text-118\"><p>Avada One will be offered as a subscription-based product, and this decision was not made lightly. It also reflects the realities of recent changes to Envato&#8217;s author ecosystem, as outlined earlier in this post, further reinforcing the need for a sustainable, long-term platform.</p>\n<p>The scale of innovation, infrastructure, AI-powered capabilities, long-term maintenance, and continuous development behind Avada One requires a model different from the traditional one-time licensing structure. Most importantly, this model allows us to build Avada One for the long term and continue investing heavily in development, support, and the platform&#8217;s future.</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-17 hover-type-none\"><img decoding=\"async\" width=\"2000\" height=\"600\" alt=\"Avada Subscription\" title=\"Avada Subscription\" src=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-subscription.png\" class=\"img-responsive wp-image-897678\" srcset=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-subscription-200x60.png 200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-subscription-400x120.png 400w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-subscription-600x180.png 600w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-subscription-800x240.png 800w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-subscription-1200x360.png 1200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-subscription.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-119\"><p>It also gives us the flexibility to offer more scalable, cost-efficient options for agencies, freelancers, and multi-site users, including bundled licensing that makes managing multiple projects significantly easier and more economical.</p>\n<p>In addition, Avada One will be available in different subscription tiers, including options both with and without built-in AI credits, allowing users to choose the setup that best fits their workflow and needs.</p>\n<p>We know pricing and subscription tiers will be top of mind for many of you, along with questions around how access and licensing will work between Avada and Avada One, and whether existing Avada customers will be recognized in some way. What we can say is that we&#8217;re aiming for pricing that reflects the value Avada One delivers while remaining accessible, and structured to feel like a familiar, reasonable step for users who are already part of the Avada ecosystem. Everything is currently being worked through in detail, and we will share full information as soon as we get closer to launch and everything is ready to be communicated properly.</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-87 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">When Will Avada One Launch?</h2></div><div class=\"fusion-text fusion-text-120\"><p>Alongside pricing and subscription details, another question we know many of you will have is timing. At this stage, we cannot share a specific release date yet. We can say we aim to launch this summer. Avada One is well underway, with a significant portion of the underlying work and core architecture in place.</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-18 hover-type-none\"><img decoding=\"async\" width=\"2000\" height=\"500\" alt=\"Avada One Launch\" title=\"Avada One Launch\" src=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-launch.png\" class=\"img-responsive wp-image-897679\" srcset=\"https://avada.com/wp-content/uploads/2026/05/avada-one-post-launch-200x50.png 200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-launch-400x100.png 400w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-launch-600x150.png 600w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-launch-800x200.png 800w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-launch-1200x300.png 1200w, https://avada.com/wp-content/uploads/2026/05/avada-one-post-launch.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-121\"><p>Rather than being an early-stage concept, Avada One is now transitioning into its first release phase. Many parts are already complete, and the current focus is on refining, stabilizing, and bringing everything together into a cohesive first version. From launch, the plan is to move at pace, with regular feature updates that build progressively toward the full experience we have been working toward.</p>\n<p>We are intentionally avoiding committing to a firm date too early to ensure what we announce is something we can fully stand behind. As soon as we are in a position to share a clear launch timeline, we will communicate it directly.</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-88 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Key Takeaways</h2></div><div class=\"fusion-text fusion-text-122\"><p>To help summarize everything covered in this update, here are the most important points:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-custom_color_5);--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 icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Avada will continue as a core product:</mark></strong> It will remain available on ThemeForest (Envato), fully supported, and continuously updated as part of its established evolution. Nothing changes for existing users.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">A new direction has emerged for next-generation development:</mark></strong> What was previously referred to as “Avada 8” grew beyond the scope of a traditional major release. Rather than compromise the foundation, we decided to build something new from the ground up.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Avada One introduces a new, separate product path:</mark></strong> Avada One is a standalone product designed to deliver the next-generation Avada experience, including a new Dashboard foundation, a Global Colors overhaul, and integrated AI tools for image creation, image adjustment, text generation, and in-product help. It ships as a single unified package, with no separate plugins to install or manage, and a new OAuth-based registration system that lets you connect to and monitor all your sites from one account. Marketing and sales tools are also being added as a dedicated feature. Avada One will be sold directly through <a href=\"https://avada.com/\">avada.com</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">The initial release is a foundation, not the finished vision:</mark></strong> Avada One will launch as a solid, working platform with a clear direction. From there, regular feature updates will build progressively toward the full experience we have been previewing.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Both products will coexist with different purposes:</mark></strong> Avada Classic focuses on stability, continuity, and familiarity, while Avada One focuses on new architecture, workflows, and future-facing capabilities.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Avada One is not a replacement for Avada Classic:</mark></strong> You do not need both products. Each is designed for a different use case and direction.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Avada One will evolve through incremental releases:</mark></strong> Instead of a single major launch, its full vision will be delivered in steps.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Compatibility will exist initially, but may evolve over time:</mark></strong> Early compatibility will help with transition, but the two platforms may diverge as they develop independently. </div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Avada One will be subscription-based, with flexible tiers:</mark></strong> This enables continued investment in infrastructure and innovation—with options including bundled agency and multi-site licensing, and tiers with and without built-in AI credits. </div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">Avada One pricing and tiers are currently being defined:</mark></strong> Designed to reflect its value while remaining accessible and feeling like a natural step for existing Avada users. Full details will be shared closer to launch. </div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">A release is targeted for this summer, &amp; development is underway:</mark></strong> Avada One is actively progressing toward its initial release phase, with the current focus on stabilizing and bringing everything together into a cohesive first version. </div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-free-updates\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-marker\" style=\"--awb-color:#DAEEFB;--awb-text-color:var(--awb-color8);\">You&#8217;re invited to help shape Avada One:</mark></strong> Early users will play a meaningful role in shaping the platform through real-world use, feedback, and experience. </div></li></ul><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-89 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Journey Starts Now</h2></div><div class=\"fusion-text fusion-text-123\"><p>What we are building with Avada One marks the beginning of a new chapter for the Avada ecosystem, not a single release moment, but an ongoing evolution of ideas, workflows, and capabilities that will continue to grow over time.</p>\n<p>We also want to say plainly: we know this journey has asked for a lot of patience from you. The wait has been longer than any of us planned for, and the road has taken turns we didn&#8217;t anticipate. We don&#8217;t take that lightly, and we are committed to showing through our actions going forward that the decisions we&#8217;ve made were made with your long-term experience in mind.</p>\n<p>Avada Classic itself remains exactly as you know it today: a stable, trusted product that continues to receive updates, improvements, and long-term support throughout its lifecycle. And Avada One represents the next generation of thinking, a platform you can grow into at your own pace, when and if it makes sense for you.</p>\n<p>If you choose to explore Avada One when it becomes available, you will be joining us at the very start of that journey, helping shape it through real-world use, feedback, and experience. And if you continue working with Avada Classic as it is today, nothing changes for you.</p>\n<p>Either way, this is not a replacement for what came before. It is an expansion of what is possible. We are looking forward to building this next phase together with you.</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:52:\"https://avada.com/blog/a-new-chapter-for-avada/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: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:50:\"How to Use the Avada Live Visual Builder Shortcuts\";s:7:\"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/how-to-use-the-avada-live-visual-builder-shortcuts/\";s: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/how-to-use-the-avada-live-visual-builder-shortcuts/#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, 25 May 2026 14:46: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:4:{i:0;a:5:{s:4:\"data\";s:5:\"Avada\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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: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:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"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: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:304:\"If you\'re building pages using the Avada Live Visual Builder and still reaching for your mouse every time you want to save, preview, or undo something, you\'re leaving real time on the table. Not a huge amount per click, sure. But multiplied across a build? It adds up fast. The good news: Avada has a ...\";s: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:27858:\"<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-blend:overlay;--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-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-124\"><p>If you&#8217;re building pages using the <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Live Visual Builder</a> and still reaching for your mouse every time you want to save, preview, or undo something, you&#8217;re leaving real time on the table. Not a huge amount per click, sure. But multiplied across a build? It adds up fast.</p>\n<p>The good news: <a href=\"https://avada.com/\" target=\"_self\" rel=\"noopener noreferrer\">Avada</a> has a solid set of keyboard shortcuts baked right into the Live Visual Builder. Most people never touch them. You&#8217;re about to be one of the ones who does.</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-90 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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-91 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Where to Find the Full List</h2></div><div class=\"fusion-text fusion-text-125\"><p>Before we get into the shortcuts themselves, here&#8217;s the move to use when you inevitably blank on one: In the <a href=\"https://avada.com/documentation/the-avada-live-workspace/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Live Visual Builder</a>, open the toolbar, go to <strong>&#8220;Support&#8221;</strong>, then click <strong>&#8220;Shortcuts&#8221;</strong>. The whole list lives there. Bookmark that in your brain. It&#8217;s the cheat sheet you don&#8217;t have to print.</p>\n</div><div class=\"fusion-video fusion-youtube\" style=\"--awb-max-width:1280px;--awb-max-height:720px;--awb-align-self:center;--awb-width:100%;\"><div class=\"video-shortcode\"><priv-fac-lite-youtube class=\"fusion-hidden lty-load\" data-privacy-type=\"youtube\" videoid=\"EDT3roF-tOY\" class=\"landscape\" params=\"wmode=transparent&autoplay=1&amp;enablejsapi=1\" title=\"How to Use the Avada Live Builder Shortcuts\" data-button-label=\"Play Video\" width=\"1280\" height=\"720\" data-thumbnail-size=\"auto\" data-no-cookie=\"on\"></priv-fac-lite-youtube><div class=\"fusion-privacy-placeholder\" style=\"width:1280px; height:720px;\" data-privacy-type=\"youtube\"><div class=\"fusion-privacy-placeholder-content\"><div class=\"fusion-privacy-label\">For privacy reasons YouTube needs your permission to be loaded.</div><button data-privacy-type=\"youtube\" class=\"fusion-button button-default fusion-button-default-size button fusion-privacy-consent\">I Accept</button></div></div></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-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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=\"avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#005272;--awb-text-color:var(--awb-color1);\">Avada Tip:</mark> &#8211; Throughout this post, when you see <strong>Cmd/Ctrl</strong>, use <strong>Cmd</strong> on a Mac and <strong>Ctrl</strong> on Windows. That&#8217;s it. No other translation needed.</p></span></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-92 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Toggle Shortcuts</h2></div><div class=\"fusion-text fusion-text-126\"><p>These are the shortcuts that change what&#8217;s on your screen, fast. They&#8217;re the gateway to keyboard-driven editing.</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-93 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Open the Command Palette — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + K</mark>​</h3></div><div class=\"fusion-text fusion-text-127\"><p>If you&#8217;re on Avada 7.15.3 or later, you&#8217;ve got the <a href=\"https://avada.com/documentation/how-to-use-the-avada-builder-command-palette/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Command Palette</a>. And honestly, this one shortcut might be the most powerful tool in the builder. <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + K</mark> opens it instantly. If that combo is already taken by something else on your machine, <strong>F1</strong> also works.</p>\n<p>If you haven&#8217;t already, check out our dedicated <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_self\" rel=\"noopener noreferrer\">Avada Command Palette post</a>. For now, just know: this is the one to memorize first.</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-94 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Toggle the sidebar — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Shift + T</mark>​</h3></div><div class=\"fusion-text fusion-text-128\"><p>Need more breathing room on your canvas? Hit <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Shift + T</mark> and the sidebar gets out of your way. Hit it again, and it&#8217;s back. Great for when you&#8217;re zoomed in on a complex layout and want to see the whole thing.</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-95 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Enter preview mode — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Shift + P</mark>​</h3></div><div class=\"fusion-text fusion-text-129\"><p><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Shift + P</mark> flips you into preview mode so you can see what the page actually looks like without all the builder chrome. Hit it again to come back to editing.</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-96 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Action Shortcuts</h2></div><div class=\"fusion-text fusion-text-130\"><p>These are the ones that do things, save, undo, delete, that kind of stuff.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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=\"avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#005272;--awb-text-color:var(--awb-color1);\">Avada Tip:</mark> &#8211; If any of these shortcuts aren&#8217;t working, check whether another app on your computer is using the same combo. Clipboard managers, screenshot tools, and browser extensions are usually the culprits. More on that in a sec.</span></div></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-97 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Save your work — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + S</mark></h3></div><div class=\"fusion-text fusion-text-131\"><p>The single most important shortcut on this list. Use it constantly. Use it after every meaningful change. Your future self will thank you the next time your browser refreshes at the worst possible moment.</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-98 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Save as template — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Shift + S</mark>​</h3></div><div class=\"fusion-text fusion-text-132\"><p>Built something you want to reuse on another page? <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Shift + S</mark> saves your current content as a template. Way faster than digging through menus.</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-99 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Undo and redo — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Z</mark>​ and <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Y</mark>​</h3></div><div class=\"fusion-text fusion-text-133\"><p>The classics. Undo with <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Z</mark>​. Redo with <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Y</mark>. If you&#8217;ve ever used a computer, your fingers already know these. Avada just respects what your muscle memory expects.</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-100 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Clear the layout — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + D</mark>​</h3></div><div class=\"fusion-text fusion-text-134\"><p>This one nukes everything on the current layout. Don&#8217;t worry, a confirmation dialog pops up first, so you can&#8217;t accidentally torch an hour of work. But still: handle with respect.</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-101 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Close any open modal — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Enter</mark></h3></div><div class=\"fusion-text fusion-text-135\"><p>If you&#8217;ve got the Preferences, Shortcuts, or any other modal open, <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Enter</mark> closes it. No mouse needed.</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-102 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Open the custom CSS panel — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Shift + C</mark></h3></div><div class=\"fusion-text fusion-text-136\"><p>If you live in custom CSS, this one will be your best friend. <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Shift + C</mark> pops open the page&#8217;s CSS panel directly.</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-103 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Open the page in the backend builder — <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:var(--awb-custom_color_5);--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Q</mark></h3></div><div class=\"fusion-text fusion-text-137\"><p>Need to jump from Live Visual Builder to the Backend Builder (Wireframe mode) for the same page? <mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#63b8ed;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + Q</mark> opens it in a new tab. Both views, same page, side by side. Useful when you want to compare or work in whichever mode fits the task.</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-104 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Responsive Preview Shortcuts</h2></div><div class=\"fusion-text fusion-text-138\"><p>This is the section that, once you start using it, you&#8217;ll wonder how you ever worked without.</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color8);--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-keyboard fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + 1</mark> → Desktop view</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-keyboard fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + 2</mark> → Mobile view</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-keyboard fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#282828;--awb-text-color:var(--awb-color1);\">Cmd/Ctrl + 3</mark> → Tablet view</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-139\"><p>Designing responsive layouts means constantly flipping between screen sizes. Instead of clicking those tiny device icons every single time, just tap a number. You&#8217;ll cycle through views fast enough to actually catch the bugs you&#8217;d otherwise miss.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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=\"avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\"><mark class=\"fusion-highlight custom-textcolor highlight1 awb-highlight-background rounded\" style=\"--awb-color:#005272;--awb-text-color:var(--awb-color1);\">Avada Tip:</mark> &#8211; These specific combos (<strong>Cmd/Ctrl + 1/2/3</strong>) are popular with clipboard managers and browser tab-switching tools. If yours are hijacked, try adding Alt to the combo. So <strong>Cmd/Ctrl + Alt + 1</strong>, and so on. Annoying, but the alt-modified version usually slips past whatever&#8217;s intercepting them.</p></span></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-105 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 Gotchas Worth Knowing</h2></div><div class=\"fusion-text fusion-text-140\"><p>A few things that&#8217;ll save you a frustrated Google search later:</p>\n</div><ul style=\"--awb-iconcolor:var(--awb-color6);--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-info-circle far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Shortcut conflicts are the #1 reason these &#8220;don&#8217;t work.&#8221;</strong> – Before assuming Avada is broken, check your other apps. Clipboard managers (Raycast, Alfred, Paste), screenshot tools, and even your browser extensions love claiming these key combos.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Mac vs Windows isn&#8217;t just Cmd vs Ctrl</strong>. – On some Windows setups, certain Function keys (like <strong>F1</strong>) are mapped to system actions by default. You may need to hit <strong>Fn + F1</strong> or change your keyboard&#8217;s function key behavior in your OS settings.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>You don&#8217;t have to memorize all of them at once.</strong> – Pick three to start. I&#8217;d suggest <strong>Cmd/Ctrl + S</strong> (save), <strong>Cmd/Ctrl + K</strong> (Command Palette), and the responsive trio. Those alone will change how fast you build.</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:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-106 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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-141\"><p>Keyboard shortcuts only work if you actually use them. Reading this post won&#8217;t make you faster. Using one shortcut ten times a day, every day, for a week — that will.</p>\n<p>So next time you sit down to build a page in Avada Live, pick one shortcut from this list and force yourself to use it instead of clicking. By the end of the week, it&#8217;ll be automatic. Then add another.</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:79:\"https://avada.com/blog/how-to-use-the-avada-live-visual-builder-shortcuts/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:79:\"\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:37:\"The WordPress Media Library Explained\";s:7:\"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://avada.com/blog/the-wordpress-media-library-explained/\";s: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:69:\"https://avada.com/blog/the-wordpress-media-library-explained/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 May 2026 07:17:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:2;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://theme-fusion.com/?p=386710\";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:312:\"In this post, we will explore the WordPress Media Library to help you understand where your images and other media files are stored once they are added to your website. We will also look at how you can perform basic editing on your images, including changing their size with the scaling or cropping tools and ...\";s: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:41246:\"<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-blend:overlay;--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-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-142\"><p>In this post, we will explore the <a href=\"https://wordpress.org/documentation/article/media-library-screen/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress Media Library</a> to help you understand where your images and other media files are stored once they are added to your website. We will also look at how you can perform basic editing on your images, including changing their size with the scaling or cropping tools and rotating and flipping them. This may be especially helpful once you have gone through the <a href=\"https://avada.com/blog/wordpress-posts-and-pages-explained/\" target=\"_self\" rel=\"noopener noreferrer\">WordPress Pages and Posts</a> post.</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-19 hover-type-none\"><img decoding=\"async\" width=\"2000\" height=\"500\" alt=\"WordPress Democratize Publishing\" title=\"WordPress Democratize Publishing\" src=\"https://avada.com/wp-content/uploads/2026/03/wordpress-democratize-publishing.png\" class=\"img-responsive wp-image-897499\" srcset=\"https://avada.com/wp-content/uploads/2026/03/wordpress-democratize-publishing-200x50.png 200w, https://avada.com/wp-content/uploads/2026/03/wordpress-democratize-publishing-400x100.png 400w, https://avada.com/wp-content/uploads/2026/03/wordpress-democratize-publishing-600x150.png 600w, https://avada.com/wp-content/uploads/2026/03/wordpress-democratize-publishing-800x200.png 800w, https://avada.com/wp-content/uploads/2026/03/wordpress-democratize-publishing-1200x300.png 1200w, https://avada.com/wp-content/uploads/2026/03/wordpress-democratize-publishing.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-143\"><p>Finally, we will cover how to add image galleries to your posts and pages. This feature of <a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a> makes it easy to insert a selection of images into a post and then configure how they are organized.</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-107 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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--8\" data-awb-toc-id=\"8\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;.awb-toc-el__list.awb-toc-el__list--0 li:first-child&quot;,&quot;ignore_headings_words&quot;:&quot;&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 far&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-108 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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 WordPress Media Library Explained</h2></div><div class=\"fusion-text fusion-text-144\"><p>Every WordPress website has a media library. Each time you add an image to a post, page, or elsewhere on your website, it is automatically added to the media library. This library of media files, such as images, videos, and audio, can be found under the Media item in the sidebar menu of your WordPress website’s Admin Dashboard.</p>\n</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-color2);\"><img decoding=\"async\" width=\"2000\" height=\"1345\" alt=\"WordPress Media Library\" title=\"WordPress Media Library\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-screen.jpg\" class=\"img-responsive wp-image-894552\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-screen-200x135.jpg 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-screen-400x269.jpg 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-screen-600x404.jpg 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-screen-800x538.jpg 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-screen-1200x807.jpg 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-screen.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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\"><p>Once you’ve opened the media library, you can change the view to either a list or grid layout. You can also filter the items by type or date and search the library for specific files.</p>\n</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-color2);\"><img decoding=\"async\" width=\"2000\" height=\"555\" alt=\"WordPress Media Library Sorting Filter\" title=\"WordPress Media Library Sorting Filter\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-filter.jpg\" class=\"img-responsive wp-image-894553\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-filter-200x56.jpg 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-filter-400x111.jpg 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-filter-600x167.jpg 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-filter-800x222.jpg 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-filter-1200x333.jpg 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-library-filter.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-109 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Media Library Attachment Details</h2></div><div class=\"fusion-text fusion-text-146\"><p>Clicking an item in the media library lets you inspect the file and learn more about it. The attachment details screen displays information about the file, including its name, type, upload date, and file size and dimensions.</p>\n</div><div class=\"fusion-image-element\" style=\"text-align:center;--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-22 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-22\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[95e52ef329cb8aa60d0]\" data-title=\"WordPress Media Library Attachment Details\" title=\"WordPress Media Library Attachment Details\"><img decoding=\"async\" width=\"2000\" height=\"1502\" alt=\"WordPress Media Library Attachment Details\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details.jpg\" class=\"img-responsive wp-image-894554\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details-200x150.jpg 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details-400x300.jpg 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details-600x451.jpg 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details-800x601.jpg 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details-1200x901.jpg 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-attachment-details.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-147\"><p>You can also see which post the image was uploaded to and where it is being used on your website. The URL field on the attachment details screen displays the direct link to the file. This can be useful if you want to manually link to the media file from one of your posts or pages, or even externally from your website. Examples of this could be in an email or a social media post.</p>\n<p>By default, every image and other media file uploaded to your website has an attachment page. This is a management page that includes the file and some other basic information about it. All changes made to the attachment details will be automatically saved in WordPress. Below is a list of the default settings on the attachment page:</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-25 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><span style=\"color: rgb(87, 87, 87);\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Uploaded on</mark></span> – The date when the media file was uploaded.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Uploaded by</mark> – The author who uploaded the Media.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Uploaded to</mark> – Title of the Post or Page that contains this Media. Click on the title to view that Post or Page in an edit Screen. If the Media was unattached to any Post or Page, this line does not appear.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">File name</mark> – The name of the media file.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">File type</mark> – The MIME Type of media file.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">File size</mark> – The file size of the media file.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Dimensions</mark> – (Image files only) The dimensions of image media.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Alternative Text</mark> – (Image files only) The alt text for the image, e.g., “Mountain View,” to describe the media. This is used for improved accessibility.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Title</mark> – The name of the media. A title is often shown on attachment pages and galleries if themes or plugins are designed to display it.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Caption</mark> – A brief explanation of the media.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Description</mark> – An explanation of this particular media.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">File URL</mark> – Read-only display of a direct link to the media file.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Copy URL to clipboard</mark> – Click to copy the URL of the file into the clipboard.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Artist</mark> – (Voice files only) Singer, composer or producer of this media.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Album</mark> – (Voice files only) Album title that includes this media.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">View attachment page</mark> &#8211; Shows the media in a simulated view of how the image would look when displayed in your Theme.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Edit more details</mark> &#8211; Displays the Edit Media Screen. See the Edit Media for details on editing Media information.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Download file</mark> &#8211; Makes it easier for users to download their uploaded media by providing a download link on the attachment details screen and in the media modal.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Delete permanently</mark> &#8211; Deletes the media.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-angle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><mark class=\"fusion-highlight light highlight1 awb-highlight-marker\" style=\"--awb-color:var(--awb-color4);\">Edit image</mark> &#8211; (Image files only) Allows you to make edits such as rotate, scale, and crop. See the Edit Image Screen.</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-110 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Adding Files to the WordPress Media Library</h2></div><div class=\"fusion-text fusion-text-148\"><p>Images or other media files you insert into your posts and pages are automatically added to the media library, and you can also add them directly to the library yourself. You might want to do this if you’d like to make several files available to your co-authors for use in their posts or if you need to link to the files from elsewhere on your site or link to them externally without publishing them in a post.</p>\n<p>Adding the images directly to the media library is very straightforward. You can drag and drop them into place by clicking on the <strong>&#8220;Add New&#8221;</strong> item under the Media sidebar menu. Alternatively, you can click the Select Files button to locate the files on your computer the old-fashioned way. You can select multiple files simultaneously to save time with whichever option you choose.</p>\n</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-color2);\"><img decoding=\"async\" width=\"2000\" height=\"456\" alt=\"WordPress Upload New Media\" title=\"WordPress Upload New Media\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-upload-media.png\" class=\"img-responsive wp-image-894555\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-upload-media-200x46.png 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-upload-media-400x91.png 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-upload-media-600x137.png 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-upload-media-800x182.png 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-upload-media-1200x274.png 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-upload-media.png 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-149\"><p>Once the files are in the library, they can be edited and inserted into your posts and pages by clicking the Add Media button on the post editor screen.</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-111 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Editing Images in WordPress</h2></div><div class=\"fusion-text fusion-text-150\"><p>When viewing the attachment details page for an image, you will notice, at the bottom, a <strong>&#8220;Edit More Details&#8221;</strong> link. Clicking this button takes you to an <strong>&#8220;Edit&#8221;</strong> option. If you click <strong>&#8220;Edit,&#8221;</strong> you will be presented with options that allow you to make basic changes to the image. The editing features include cropping, scaling, image rotation, and image flipping.</p>\n</div><div class=\"fusion-image-element\" style=\"text-align:center;--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-24 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-24\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[fb7a4ae3f7f8db4c546]\" data-title=\"WordPress Basic Image Editing\" title=\"WordPress Basic Image Editing\"><img decoding=\"async\" width=\"2000\" height=\"1248\" alt=\"WordPress Basic Image Editing\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image.jpg\" class=\"img-responsive wp-image-894556\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-200x125.jpg 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-400x250.jpg 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-600x374.jpg 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-800x499.jpg 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-1200x749.jpg 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-151\"><p>However, you can also scale an image proportionally to reduce its dimensions while maintaining its aspect ratio. Furthermore, you can also crop an image by dragging the cursor over it to make a selection. This allows you to select the area to keep, with the rest of the image discarded.</p>\n</div><div class=\"fusion-image-element\" style=\"text-align:center;--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-25 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-25\" style=\"border:1px solid var(--awb-color2);\"><a href=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ad059906aca4a611273]\" data-title=\"WordPress Scale Image\" title=\"WordPress Scale Image\"><img decoding=\"async\" width=\"2000\" height=\"1247\" alt=\"WordPress Scale Image\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale.jpg\" class=\"img-responsive wp-image-894557\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale-200x125.jpg 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale-400x249.jpg 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale-600x374.jpg 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale-800x499.jpg 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale-1200x748.jpg 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-image-scale.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-152\"><p>After you’ve made any changes, remember to save the image before returning it to the media library. Now, you can insert the new version of the file into your posts and pages. Any previous instances of the image on your website will remain as they were.</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-112 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">WordPress Media Library Settings</h2></div><div class=\"fusion-text fusion-text-153\"><p>Whenever you upload a new image to your website, WordPress creates three more versions of that file: thumbnail, media, and large. Each of these three versions has different dimensions or physical size. You can change these three default sizes through the Media Settings screen if necessary.</p>\n</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\"><img decoding=\"async\" width=\"1700\" height=\"1500\" alt=\"WordPress Media Settings\" title=\"WordPress Media Settings\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-media-settings.jpg\" class=\"img-responsive wp-image-894558\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-media-settings-200x176.jpg 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-media-settings-400x353.jpg 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-media-settings-600x529.jpg 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-media-settings-800x706.jpg 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-media-settings-1200x1059.jpg 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-edit-media-settings.jpg 1700w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1700px\" /></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-154\"><p>In the media library settings, you can also configure how files are organized on your server as you upload them. Managing one or multiple <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> websites will mean that you will be managing hundreds, if not thousands, of media files such as images, videos, audios, documents, etc., and this is why WordPress media organization is vital. This is where <a href=\"https://ninjateam.org/wordpress-media-library-folders/\" target=\"_blank\" rel=\"noopener noreferrer\">FileBird</a> comes in.</p>\n</div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#EBFAFF;--awb-accent-color:#2b4575;--awb-border-size:0px;--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-info-circle fal\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">The <a href=\"https://avada.com/blog/filebird-a-best-selling-wordpress-media-management-plugin/\" target=\"_self\" rel=\"noopener noreferrer\">FileBird plugin</a> is included and 100% free with your purchase of Avada. Once you have purchased Avada for your website, you can download the plugin from your <a href=\"https://avada.com/documentation/how-to-use-my-avada/\" target=\"_self\" rel=\"noopener noreferrer\">My Avada</a> account.</span></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-113 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Cleaning Up the Media Library</h2></div><div class=\"fusion-text fusion-text-155\"><p>As each image you add to your WordPress website is automatically added to the media library, the size of the library can quickly grow. While you won’t want to delete any images used in your posts, you may&nbsp;want to delete the ones in the library that haven’t been used on your site.</p>\n<p>WordPress makes it easy to filter the images or other media files that haven’t been inserted into (attached to) a page or post. You can view all the unattached files by selecting <strong>&#8220;Unattached&#8221;</strong> from the filter drop-down list.</p>\n</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-color2);\"><img decoding=\"async\" width=\"2000\" height=\"911\" alt=\"Unattached Media Library Images\" title=\"Unattached Media Library Images\" src=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-unnattached.jpg\" class=\"img-responsive wp-image-894559\" srcset=\"https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-unnattached-200x91.jpg 200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-unnattached-400x182.jpg 400w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-unnattached-600x273.jpg 600w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-unnattached-800x364.jpg 800w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-unnattached-1200x547.jpg 1200w, https://avada.com/wp-content/uploads/2024/06/wordpress-media-library-post-unnattached.jpg 2000w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2000px\" /></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-156\"><p>These are the files that were either uploaded directly to the media library rather than inserted into a post first, or added to a post but later deleted. If you are sure you no longer need these files, you can delete them in one fell swoop by clicking the <strong>&#8220;Delete Selected&#8221;</strong> button.</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-114 fusion-sep-none fusion-title-text fusion-title-size-two\" style=\"--awb-margin-top-small:0px;--awb-margin-bottom-small:0.5em;\"><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-157\"><p>Hopefully, you now understand how WordPress stores and manages the images and other media files you&#8217;ve added to your website. WordPress image galleries can also be a handy way to work with images more effectively on your website. </p>\n<p>Using image thumbnails, which automatically link to larger versions of your photographs and other images, can help your pages load faster and let your visitors see more of your media content on a single page.</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:#ebfaff;--awb-accent-color:#005272;--awb-border-size:0px;--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=\"avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\"><a href=\"https://avada.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> is not only a WordPress theme; it is more than that. It is an intuitive <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Website Builder</a> for WordPress and <a href=\"https://avada.com/feature/woocommerce/\" target=\"_blank\" rel=\"noopener noreferrer\">eCommerce</a>. Avada&#8217;s design and styling flexibility will empower anyone, from beginners to freelancers, to launch professional websites fast.</span></div></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:66:\"https://avada.com/blog/the-wordpress-media-library-explained/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\";a:16:{s:4:\"date\";s:29:\"Thu, 02 Jul 2026 09:21:43 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"server\";s:10:\"cloudflare\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:4:\"etag\";s:34:\"\"1244c510eacbc44a509d05335585a2cd\"\";s:13:\"last-modified\";s:29:\"Tue, 30 Jun 2026 01:46:04 GMT\";s:4:\"link\";s:54:\"<https://avada.com/wp-json/>; rel=\"https://api.w.org/\"\";s:12:\"x-powered-by\";s:9:\"WP Engine\";s:11:\"x-cacheable\";s:17:\"CacheAlways: feed\";s:13:\"cache-control\";s:28:\"max-age=600, must-revalidate\";s:7:\"x-cache\";s:6:\"HIT: 1\";s:16:\"content-encoding\";s:4:\"gzip\";s:10:\"set-cookie\";s:305:\"__cf_bm=UchDLCcKNjR.3hYHqWOcwUX5vwVHmFafj4I6QUVowpk-1782984103.2168102-1.0.1.1-FGfHL5SkY0gVvm5gNPCjJC5587J07fCCUP0tOUj5ZBmR2gMK7.INV0E2Irbm1NBU2twmbyqSrEzobsyicq79lMyN_Sm1xYnzOFUlOY9c7pdlH60VlTvNVIq51HpEmMWO; HttpOnly; SameSite=None; Secure; Path=/; Domain=avada.com; Expires=Thu, 02 Jul 2026 09:51:43 GMT\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:6:\"cf-ray\";s:20:\"a14c94f51b380be8-DXB\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:5:\"build\";i:1780330368;s:21:\"cache_expiration_time\";i:1783027303;s:23:\"__cache_expiration_time\";i:1783027303;}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("16243","_site_transient_timeout_feed_mod_bc9fd7f8eaf5e82b6773ce761d04a9c6","1783027303","off"),
("16244","_site_transient_feed_mod_bc9fd7f8eaf5e82b6773ce761d04a9c6","1782984103","off"),
("16245","_transient_timeout_fusion_tos","1783588907","off"),
("16246","_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:308:\"Controls the top/bottom offset of the boxed 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: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:15:\"soft_dependency\";b:1;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>1173</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:429:\"<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://dr.frex.digital/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>, or <a href=\"https://dr.frex.digital/wp-admin/post.php?post=7&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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:82:\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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>361</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:46:\"https://dr.frex.digital/wp-admin/nav-menus.php\";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:332:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant Mega Menu setup, we recommend using the Library Mega Menus. To create a Mega Menu, visit the <a href=\"https://dr.frex.digital/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:70:\"https://dr.frex.digital/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:73:\"https://dr.frex.digital/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:326:\"<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://dr.frex.digital/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:336:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Page Title Bar Builder to create a custom Page Title Bar Layout. <a href=\"https://dr.frex.digital/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:10:{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:\"breacrumb_home_label\";a:7:{s:5:\"label\";s:28:\"Breadcrumbs Home Anchor Text\";s:11:\"description\";s:353:\"Controls the text anchor of the Homelink. Leave empty for translateable default of &quot;Home&quot;.  <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:\"breacrumb_home_label\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breacrumb_home_label\";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:337:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant Sliding Bar setup, we recommend using the Avada Off Canvas Builder. To create an Off Canvas, <a href=\"https://dr.frex.digital/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:44:\"https://dr.frex.digital/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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:44:\"https://dr.frex.digital/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 - 2026 | <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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:84:\"https://dr.frex.digital/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:83:\"url(\"https://dr.frex.digital/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:5:{i:0;s:7:\"buttons\";i:1;s:5:\"menus\";i:2;s:4:\"tocs\";i:3;s:11:\"tabstoggles\";i:4;s:10:\"off_canvas\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:7:{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:10:\"off_canvas\";s:10:\"Off Canvas\";}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:260:\"Controls the number of <a href=\"https://dr.frex.digital/wp-admin/themes.php?page=avada_options&lang=en#excerpt_base\" target=\"_blank\" rel=\"noopener noreferrer\">words</a> in the excerpts on the assigned blog page in \"Settings > Reading\" or on blog archive pages.\";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:319:\"<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://dr.frex.digital/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:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Live Builder to create a custom Content Layout. <a href=\"https://dr.frex.digital/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:340:\"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://dr.frex.digital/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:22:{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:465:\"Controls the number of <a href=\"https://dr.frex.digital/wp-admin/themes.php?page=avada_options&lang=en#excerpt_base\" target=\"_blank\" rel=\"noopener noreferrer\">words</a> in the excerpts on 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:20:\"portfolio_with_front\";a:5:{s:5:\"label\";s:38:\"Portfolio Include Permalink Front Base\";s:11:\"description\";s:137:\"Turn on to include the front base defined by the permalink structure set in Settings &gt; Permalinks. Make sure to regenerate permalinks.\";s:2:\"id\";s:20:\"portfolio_with_front\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}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:319:\"<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://dr.frex.digital/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:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Live Builder to create a custom Content Layout. <a href=\"https://dr.frex.digital/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:41:{s:7:\"blogger\";s:7:\"Blogger\";s:7:\"bluesky\";s:7:\"Bluesky\";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:6:\"github\";s:6:\"GitHub\";s:9:\"instagram\";s:9:\"Instagram\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"mastodon\";s:8:\"Mastodon\";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:8:\"snapchat\";s:8:\"Snapchat\";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:7:\"threads\";s:7:\"Threads\";s:6:\"tiktok\";s:6:\"Tiktok\";s:6:\"tumblr\";s:6:\"Tumblr\";s:7:\"twitter\";s:1:\"X\";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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:7:\"bluesky\";i:3;s:6:\"reddit\";i:4;s:8:\"linkedin\";i:5;s:8:\"whatsapp\";i:6;s:8:\"telegram\";i:7;s:6:\"tumblr\";i:8;s:4:\"xing\";i:9;s:5:\"email\";i:10;s:9:\"copy_link\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:15:{s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:1:\"X\";s:7:\"bluesky\";s:7:\"Bluesky\";s:6:\"reddit\";s:6:\"Reddit\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"mastodon\";s:8:\"Mastodon\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:8:\"telegram\";s:8:\"Telegram\";s:7:\"threads\";s:7:\"Threads\";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:9:\"copy_link\";s:9:\"Copy Link\";}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:295:\"Controls the color of the social icon box.  <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:\"sharing_social_links_box_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: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:300:\"Controls the box radius of the social icon box.  <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:\"sharing_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";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: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:306:\"Controls the interior padding of the social icon box.  <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:\"sharing_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";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: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:19:{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:13:\"lightbox_zoom\";a:8:{s:5:\"label\";s:25:\"Lightbox Image Hover Zoom\";s:11:\"description\";s:86:\"Set the scale factor for hovered images inside the lightbox. Set to 1 to disable zoom.\";s:2:\"id\";s:13:\"lightbox_zoom\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"2\";s:4:\"step\";s:4:\"0.05\";}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_zoom\";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:13:\"lightbox_loop\";a:7:{s:5:\"label\";s:21:\"Loop Lightbox Gallery\";s:11:\"description\";s:37:\"Turn on to loop the lightbox gallery.\";s:2:\"id\";s:13:\"lightbox_loop\";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:13:\"lightbox_loop\";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:1837:\"<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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D4e26b6513a\">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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D4e26b6513a\">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://dr.frex.digital/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1&#038;_wpnonce=4e26b6513a\">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:1475:\"<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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3Dc6085e002a\">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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3Dc6085e002a\">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://dr.frex.digital/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1&#038;_wpnonce=c6085e002a\">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:22:\"Map Zoom Control Icons\";s:11:\"description\";s:53:\"Turn on to display the google map zoom 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:11:{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:10:{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:7:\"choices\";a:8:{s:4:\"post\";s:5:\"Posts\";s:4:\"page\";s:5:\"Pages\";s:15:\"avada_portfolio\";s:15:\"Portfolio Items\";s:9:\"avada_faq\";s:9:\"FAQ Items\";s:7:\"product\";s:20:\"WooCommerce Products\";s:12:\"tribe_events\";s:21:\"Events Calendar Posts\";s:5:\"class\";s:7:\"Classes\";s:10:\"instructor\";s:11:\"Instructors\";}}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:27:\"search_add_woo_product_skus\";a:6:{s:5:\"label\";s:35:\"Search for WooCommerce Product SKUs\";s:11:\"description\";s:132:\"Turn on to also search for WooCommerce product SKUs. This will only work, if products have been added to the search results content.\";s:2:\"id\";s:27:\"search_add_woo_product_skus\";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:319:\"<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://dr.frex.digital/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:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Live Builder to create a custom Content Layout. <a href=\"https://dr.frex.digital/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:203:\"Controls the number of <a href=\"https://dr.frex.digital/wp-admin/themes.php?page=avada_options&lang=en#excerpt_base\" target=\"_blank\" rel=\"noopener noreferrer\">words</a> in the excerpts on search results.\";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:1:\"X\";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:1:\"X\";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:18:{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:14:\"faq_with_front\";a:5:{s:5:\"label\";s:32:\"FAQ Include Permalink Front Base\";s:11:\"description\";s:137:\"Turn on to include the front base defined by the permalink structure set in Settings &gt; Permalinks. Make sure to regenerate permalinks.\";s:2:\"id\";s:14:\"faq_with_front\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}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:9:{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:21:\"totop_scroll_progress\";a:7:{s:5:\"label\";s:26:\"ToTop Show Scroll Progress\";s:11:\"description\";s:65:\"Turn on to show the page scroll progress within the ToTop Button.\";s:2:\"id\";s:21:\"totop_scroll_progress\";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:17:\".to-top-container\";s:9:\"className\";s:26:\"awb-to-top-scroll-progress\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}i:1;a:3:{s:7:\"setting\";s:14:\"totop_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"left\";}i:2;a:3:{s:7:\"setting\";s:14:\"totop_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:5:\"right\";}}}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:25:{s:23:\"enable_language_updates\";a:6:{s:5:\"label\";s:23:\"Enable Language Updates\";s:11:\"description\";s:165:\"If your site is using a language other than English, enabling this option will allow you to get updated language files for your locale as soon as they are available.\";s:2:\"id\";s:23:\"enable_language_updates\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"dependencies_status\";a:6:{s:5:\"label\";s:40:\"Avada&#039;s Option Network Dependencies\";s:11:\"description\";s:381:\"Avada&#039;s Option Network consists of Global Options, Page Options and Builder Options and each of them have dependent options ON by default. This means the only options you see are the only ones currently available for your selection. However, if you wish to disable this feature, simply turn this option off, and all dependencies will be disabled (requires save &amp; refresh).\";s:2:\"id\";s:19:\"dependencies_status\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:27:\"disable_code_block_encoding\";a:6:{s:5:\"label\";s:19:\"Code Block Encoding\";s:11:\"description\";s:92:\"Turn on to enable encoding in the Avada Builder code block and syntax highlighting elements.\";s:2:\"id\";s:27:\"disable_code_block_encoding\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"disable_megamenu\";a:6:{s:5:\"label\";s:16:\"Legacy Mega Menu\";s:11:\"description\";s:48:\"Turn on to enable Avada&#039;s legacy mega menu.\";s:2:\"id\";s:16:\"disable_megamenu\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:15:\"partial_refresh\";a:1:{s:31:\"theme_features_disable_megamenu\";a:4:{s:8:\"selector\";s:22:\".fusion-header-wrapper\";s:19:\"container_inclusive\";b:1;s:15:\"render_callback\";a:2:{i:0;s:31:\"Avada_Partial_Refresh_Callbacks\";i:1;s:6:\"header\";}s:21:\"success_trigger_event\";s:15:\"header-rendered\";}}}s:19:\"status_widget_areas\";a:6:{s:5:\"label\";s:19:\"Legacy Widget Areas\";s:11:\"description\";s:55:\"Turn on to enable the legacy widget areas of WordPress.\";s:2:\"id\";s:19:\"status_widget_areas\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:19:\"status_avada_studio\";a:6:{s:5:\"label\";s:12:\"Avada Studio\";s:11:\"description\";s:31:\"Turn on to enable Avada studio.\";s:2:\"id\";s:19:\"status_avada_studio\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:16:\"avada_rev_styles\";a:7:{s:5:\"label\";s:34:\"Avada Styles For Slider Revolution\";s:11:\"description\";s:80:\"Turn on to enable the Avada styles and use the default Slider Revolution styles.\";s:2:\"id\";s:16:\"avada_rev_styles\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:8:\"css_vars\";a:2:{i:0;a:3:{s:4:\"name\";s:28:\"--avada-rev-image-shadow-top\";s:13:\"value_pattern\";s:83:\"url(\"https://dr.frex.digital/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:86:\"url(\"https://dr.frex.digital/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:19:\"meta_tags_separator\";a:5:{s:5:\"label\";s:19:\"Meta Tags Separator\";s:11:\"description\";s:118:\"Set a separator character that can be used in the Avada Page Options SEO tab for post title and description meta tags.\";s:2:\"id\";s:19:\"meta_tags_separator\";s:7:\"default\";s:1:\"-\";s:4:\"type\";s:4:\"text\";}s:16:\"status_opengraph\";a:6:{s:5:\"label\";s:36:\"Description And Open Graph Meta Tags\";s:11:\"description\";s:352:\"Turn on to enable custom description meta tag and open graph meta tags. These are used for SEO and when sharing pages on social networks like Facebook. <strong>IMPORTANT:</strong> Some SEO plugins, like Yoast SEO or RankMath, add their own implementation of this, so either disable the option in the plugin, or disable it here, to avoid duplicate tags.\";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:4:{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:120:\"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:15:\"space_body_open\";a:7:{s:5:\"label\";s:24:\"Space after &lt;body&gt;\";s:11:\"description\";s:113:\"Only accepts JavaScript code, wrapped with &lt;script&gt; tags and valid HTML markup inside the &lt;body&gt; tag.\";s:2:\"id\";s:15:\"space_body_open\";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:113:\"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:451:\"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://dr.frex.digital/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:15:\"awb_image_sizes\";a:8:{s:5:\"label\";s:17:\"Avada Image Sizes\";s:11:\"description\";s:537:\"Choose which Avada image sizes should be created for every image uploaded to the Media Library. <strong>NOTE:</strong> Image sizes used in legacy areas/features of Avada are marked with (L). When you remove image sizes here, please check your site to make sure all layouts display correctly. After changing this value, please install and run the <a target=\"_blank\" href=\"https://dr.frex.digital/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:\"awb_image_sizes\";s:7:\"default\";a:14:{i:0;s:10:\"fusion-200\";i:1;s:10:\"fusion-400\";i:2;s:10:\"fusion-600\";i:3;s:10:\"fusion-800\";i:4;s:11:\"fusion-1200\";i:5;s:10:\"blog-large\";i:6;s:11:\"blog-medium\";i:7;s:12:\"recent-posts\";i:8;s:22:\"recent-works-thumbnail\";i:9;s:14:\"portfolio-full\";i:10;s:13:\"portfolio-one\";i:11;s:13:\"portfolio-two\";i:12;s:15:\"portfolio-three\";i:13;s:14:\"portfolio-five\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:14:{s:10:\"fusion-200\";s:11:\"200px Width\";s:10:\"fusion-400\";s:11:\"400px Width\";s:10:\"fusion-600\";s:11:\"600px Width\";s:10:\"fusion-800\";s:11:\"800px Width\";s:11:\"fusion-1200\";s:12:\"1200px Width\";s:10:\"blog-large\";s:14:\"Blog Large (L)\";s:11:\"blog-medium\";s:15:\"Blog Medium (L)\";s:12:\"recent-posts\";s:16:\"Recent Posts (L)\";s:22:\"recent-works-thumbnail\";s:16:\"Recent Works (L)\";s:14:\"portfolio-full\";s:18:\"Portfolio Full (L)\";s:13:\"portfolio-one\";s:19:\"Portfolio 1 Col (L)\";s:13:\"portfolio-two\";s:19:\"Portfolio 2 Col (L)\";s:15:\"portfolio-three\";s:19:\"Portfolio 3 Col (L)\";s:14:\"portfolio-five\";s:19:\"Portfolio 5 Col (L)\";}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:236:\"Set to \'on\' to clear WP\'s object cache on post edit, post deletion, and Avada Form Entries page view. 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:436:\"When enabled, third party CSS files will be combined into Avada\'s main stylesheet. Plugins affected are 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:207:\"Set to \'on\' to enable the generation of critical CSS. Once turned on you can manage it from the <a href=\"https://dr.frex.digital/wp-admin/admin.php?page=avada-critical\" target=\"_blank\">critical CSS page</a>.\";s:2:\"id\";s:12:\"critical_css\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"cache_server_ip\";a:6:{s:5:\"label\";s:15:\"Cache Server IP\";s:11:\"description\";s:201:\"For unique cases where you are using CloudFlare and a cache server, ex: varnish cache. Enter your cache server IP to clear the Global Options dynamic CSS cache. Consult with your server admin for help.\";s:2:\"id\";s:15:\"cache_server_ip\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"js_compiler\";a:6:{s:5:\"label\";s:18:\"Enable JS Compiler\";s:11:\"description\";s:174:\"By default all the JavaScript files are combined. Disabling the JS compiler will load non-combined JavaScript files. This will have an impact on the performance of your site.\";s:2:\"id\";s:11:\"js_compiler\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"pwa_section\";a:4:{s:5:\"label\";s:19:\"Progressive Web App\";s:2:\"id\";s:11:\"pwa_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:19:\"pwa_required_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:381:\"<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://dr.frex.digital/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\";}}}}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("16247","_transient_timeout_fusion_fb_tos","1783588907","off"),
("16248","_transient_fusion_fb_tos","a:44:{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:203:\"Controls the number of <a href=\"https://dr.frex.digital/wp-admin/themes.php?page=avada_options&lang=en#excerpt_base\" target=\"_blank\" rel=\"noopener noreferrer\">words</a> 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:23:\"Carousel Autoplay Speed\";s:11:\"description\";s:74:\"Controls the autoplay 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:3:\"500\";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:12:{s:4:\"fade\";s:4:\"Fade\";s:5:\"slide\";s:8:\"Slide Up\";s:11:\"slide-right\";s:11:\"Slide Right\";s:10:\"slide-left\";s:10:\"Slide Left\";s:12:\"scroll-right\";s:12:\"Scroll Right\";s:11:\"scroll-left\";s:11:\"Scroll Left\";s:17:\"scroll-right-free\";s:17:\"Scroll Right Free\";s:16:\"scroll-left-free\";s:16:\"Scroll Left Free\";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:309:\"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 to be 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: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:7:{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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--gallery_border_color\";}}}s:21:\"gallery_border_radius\";a:8:{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:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:23:\"--gallery_border_radius\";}}}}}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:1457:\"<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://www.instagram.com/oauth/authorize?enable_fb_login=0&force_authentication=1&client_id=566437275995657&redirect_uri=https://updates.theme-fusion.com/insta-api-v2&response_type=code&scope=instagram_business_basic&state=https%3A%2F%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada_wpnonce%3D94ee53eef5\">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://www.instagram.com/oauth/authorize?enable_fb_login=0&force_authentication=1&client_id=566437275995657&redirect_uri=https://updates.theme-fusion.com/insta-api-v2&response_type=code&scope=instagram_business_basic&state=https%3A%2F%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada_wpnonce%3D94ee53eef5\">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://dr.frex.digital/wp-admin/admin.php?page=avada&#038;revoke_instagram=1&#038;_wpnonce=94ee53eef5\">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:277:\"Select the map style. For more information about licensing, please see the documentation <a href=\"https://wiki.openstreetmap.org/wiki/Raster_tile_providers\" target=\"_blank\" rel=\"noopener noreferrer\">Raster Tile Providers </a>. Using Mapbox Style will required API Access Token.\";s:2:\"id\";s:23:\"openstreetmap_map_style\";s:7:\"choices\";a:20:{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:11:\"Carto Light\";s:10:\"carto-dark\";s:10:\"Carto Dark\";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: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:11:\"Box 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:8:{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:24:\"testimonial_border_width\";a:7:{s:5:\"label\";s:23:\"Testimonial Border Size\";s:11:\"description\";s:39:\"Set the border size of the testimonial.\";s:2:\"id\";s:24:\"testimonial_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:30:\"--testimonial-border-width-top\";s:6:\"choice\";s:3:\"top\";s:2:\"po\";b:0;}i:1;a:3:{s:4:\"name\";s:32:\"--testimonial-border-width-right\";s:6:\"choice\";s:5:\"right\";s:2:\"po\";b:0;}i:2;a:3:{s:4:\"name\";s:33:\"--testimonial-border-width-bottom\";s:6:\"choice\";s:6:\"bottom\";s:2:\"po\";b:0;}i:3;a:3:{s:4:\"name\";s:31:\"--testimonial-border-width-left\";s:6:\"choice\";s:4:\"left\";s:2:\"po\";b:0;}}}s:24:\"testimonial_border_style\";a:8:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:24:\"Testimonial Border Style\";s:11:\"description\";s:45:\"Controls the border style of the testimonial.\";s:2:\"id\";s:24:\"testimonial_border_style\";s:7:\"default\";s:5:\"solid\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:5:\"solid\";s:5:\"Solid\";s:6:\"dashed\";s:6:\"Dashed\";s:6:\"dotted\";s:6:\"Dotted\";}s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:38:\"--awb-testimonial-border-style-default\";s:7:\"element\";s:4:\"body\";}}}s:24:\"testimonial_border_color\";a:6:{s:4:\"type\";s:11:\"color-alpha\";s:5:\"label\";s:24:\"Testimonial Border Color\";s:11:\"description\";s:45:\"Controls the border color of the testimonial.\";s:2:\"id\";s:24:\"testimonial_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:8:\"css_vars\";a:1:{i:0;a:3:{s:4:\"name\";s:38:\"--awb-testimonial-border-color-default\";s:7:\"element\";s:4:\"body\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:25:\"testimonial_border_radius\";a:8:{s:5:\"label\";s:25:\"Testimonial Border Radius\";s:11:\"description\";s:41:\"Set the border radius of the testimonial.\";s:2:\"id\";s:25:\"testimonial_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:48:\"--awb-testimonial-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:49:\"--awb-testimonial-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:52:\"--awb-testimonial-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:51:\"--awb-testimonial-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:\"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:7:{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:16:\"text_user_select\";a:8:{s:4:\"type\";s:15:\"radio-buttonset\";s:5:\"label\";s:16:\"User Text Select\";s:11:\"description\";s:45:\"Controls how and if the text can be selected.\";s:2:\"id\";s:16:\"text_user_select\";s:7:\"default\";s:4:\"auto\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:3:{s:4:\"auto\";s:10:\"Selectable\";s:3:\"all\";s:3:\"All\";s:4:\"none\";s:14:\"Not Selectable\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:18:\"--text_user_select\";}}}}}s:23:\"title_shortcode_section\";a:6:{s:5:\"label\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"title_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:9:\"fusiona-H\";s:6:\"fields\";a:5:{s:20:\"title_text_transform\";a:7:{s:5:\"label\";s:14:\"Text Transform\";s:11:\"description\";s:33:\"Choose how the text is displayed.\";s:2:\"id\";s:20:\"title_text_transform\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:5:{s:0:\"\";s:7:\"Default\";s:4:\"none\";s:4:\"None\";s:9:\"uppercase\";s:9:\"Uppercase\";s:9:\"lowercase\";s:9:\"Lowercase\";s:10:\"capitalize\";s:10:\"Capitalize\";}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:22:\"--title_text_transform\";}}}s:16:\"title_style_type\";a:7:{s:5:\"label\";s:15:\"Title Separator\";s:11:\"description\";s:55:\"Controls the type of title separator that will display.\";s:2:\"id\";s:16:\"title_style_type\";s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:10:{s:12:\"single solid\";s:12:\"Single Solid\";s:13:\"single dashed\";s:13:\"Single Dashed\";s:13:\"single dotted\";s:13:\"Single Dotted\";s:12:\"double solid\";s:12:\"Double Solid\";s:13:\"double dashed\";s:13:\"Double Dashed\";s:13:\"double dotted\";s:13:\"Double Dotted\";s:15:\"underline solid\";s:15:\"Underline Solid\";s:16:\"underline dashed\";s:16:\"Underline Dashed\";s:16:\"underline dotted\";s:16:\"Underline Dotted\";s:4:\"none\";s:4:\"None\";}}s:18:\"title_border_color\";a:7:{s:5:\"label\";s:21:\"Title Separator Color\";s:11:\"description\";s:43:\"Controls the color of the title separators.\";s:2:\"id\";s:18:\"title_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:20:\"--title_border_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:12:\"title_margin\";a:8:{s:5:\"label\";s:13:\"Title Margins\";s:11:\"description\";s:84:\"Controls the margin of the titles. Leave empty to use corresponding heading margins.\";s:2:\"id\";s:12:\"title_margin\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:3:\"0px\";}s:9:\"transport\";s:11:\"postMessage\";s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:18:\"--title_margin-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:20:\"--title_margin-right\";s:6:\"choice\";s:5:\"right\";}i:2;a:2:{s:4:\"name\";s:21:\"--title_margin-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:3;a:2:{s:4:\"name\";s:19:\"--title_margin-left\";s:6:\"choice\";s:4:\"left\";}}}s:19:\"title_margin_mobile\";a:8:{s:5:\"label\";s:20:\"Title Mobile Margins\";s:11:\"description\";s:125:\"Controls the margin of the titles on mobiles. Leave empty together with desktop margins to use corresponding heading margins.\";s:2:\"id\";s:19:\"title_margin_mobile\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"default\";a:4:{s:3:\"top\";s:4:\"10px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"10px\";s:4:\"left\";s:3:\"0px\";}s:4:\"type\";s:7:\"spacing\";s:7:\"choices\";a:4:{s:3:\"top\";b:1;s:5:\"right\";b:1;s:6:\"bottom\";b:1;s:4:\"left\";b:1;}s:8:\"css_vars\";a:4:{i:0;a:2:{s:4:\"name\";s:25:\"--title_margin_mobile-top\";s:6:\"choice\";s:3:\"top\";}i:1;a:2:{s:4:\"name\";s:27:\"--title_margin_mobile-right\";s:6:\"choice\";s:5:\"right\";}i:2;a:2:{s:4:\"name\";s:28:\"--title_margin_mobile-bottom\";s:6:\"choice\";s:6:\"bottom\";}i:3;a:2:{s:4:\"name\";s:26:\"--title_margin_mobile-left\";s:6:\"choice\";s:4:\"left\";}}}}}s:25:\"toggles_shortcode_section\";a:5:{s:5:\"label\";s:7:\"Toggles\";s:2:\"id\";s:25:\"toggles_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:18:\"fusiona-expand-alt\";s:6:\"fields\";a:18:{s:14:\"accordion_type\";a:6:{s:5:\"label\";s:21:\"Toggles or Accordions\";s:11:\"description\";s:102:\"Toggles allow several items to be open at a time. Accordions only allow one item to be open at a time.\";s:2:\"id\";s:14:\"accordion_type\";s:7:\"default\";s:10:\"accordions\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:7:\"toggles\";s:7:\"Toggles\";s:10:\"accordions\";s:10:\"Accordions\";}}s:20:\"accordion_boxed_mode\";a:5:{s:5:\"label\";s:17:\"Toggle Boxed Mode\";s:11:\"description\";s:101:\"Turn on to display items in boxed mode. Toggle divider line must be disabled for this option to work.\";s:2:\"id\";s:20:\"accordion_boxed_mode\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}s:21:\"accordion_border_size\";a:7:{s:5:\"label\";s:30:\"Toggle Boxed Mode Border Width\";s:11:\"description\";s:44:\"Controls the border size of the toggle item.\";s:2:\"id\";s:21:\"accordion_border_size\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:15:\"soft_dependency\";b:1;s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"0\";s:3:\"max\";s:2:\"20\";s:4:\"step\";s:1:\"1\";}}s:22:\"accordian_border_color\";a:6:{s:5:\"label\";s:30:\"Toggle Boxed Mode Border Color\";s:11:\"description\";s:45:\"Controls the border color of the toggle item.\";s:2:\"id\";s:22:\"accordian_border_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:26:\"accordian_background_color\";a:6:{s:5:\"label\";s:34:\"Toggle Boxed Mode Background Color\";s:11:\"description\";s:49:\"Controls the background color of the toggle item.\";s:2:\"id\";s:26:\"accordian_background_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:21:\"accordian_hover_color\";a:6:{s:5:\"label\";s:40:\"Toggle Boxed Mode Background Hover Color\";s:11:\"description\";s:55:\"Controls the background hover color of the toggle item.\";s:2:\"id\";s:21:\"accordian_hover_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;}s:22:\"accordion_divider_line\";a:6:{s:5:\"label\";s:19:\"Toggle Divider Line\";s:11:\"description\";s:52:\"Turn on to display a divider line between each item.\";s:2:\"id\";s:22:\"accordion_divider_line\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:15:\"soft_dependency\";b:1;}s:23:\"accordion_divider_color\";a:6:{s:5:\"label\";s:18:\"Divider Line Color\";s:11:\"description\";s:42:\"Controls the color of toggle divider line.\";s:2:\"id\";s:23:\"accordion_divider_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:25:\"--accordion_divider_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"accordion_divider_hover_color\";a:6:{s:5:\"label\";s:24:\"Divider Line Hover Color\";s:11:\"description\";s:48:\"Controls the hover color of toggle divider line.\";s:2:\"id\";s:29:\"accordion_divider_hover_color\";s:7:\"default\";s:17:\"var(--awb-color3)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:31:\"--accordion_divider_hover_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:26:\"accordion_title_typography\";a:7:{s:2:\"id\";s:26:\"accordion_title_typography\";s:5:\"label\";s:23:\"Toggle Title Typography\";s:11:\"description\";s:44:\"Choose the typography for all toggle titles.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"text-transform\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"16px\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:34:\"var(--awb-typography1-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography1-letter-spacing)\";s:5:\"color\";s:17:\"var(--awb-color8)\";}}s:19:\"accordion_icon_size\";a:6:{s:5:\"label\";s:16:\"Toggle Icon Size\";s:11:\"description\";s:25:\"Set the size of the icon.\";s:2:\"id\";s:19:\"accordion_icon_size\";s:7:\"default\";s:2:\"16\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:2:\"40\";s:4:\"step\";s:1:\"1\";}}s:20:\"accordian_icon_color\";a:5:{s:5:\"label\";s:17:\"Toggle Icon Color\";s:11:\"description\";s:41:\"Controls the color of icon in toggle box.\";s:2:\"id\";s:20:\"accordian_icon_color\";s:7:\"default\";s:17:\"var(--awb-color1)\";s:4:\"type\";s:11:\"color-alpha\";}s:20:\"accordion_icon_boxed\";a:5:{s:5:\"label\";s:22:\"Toggle Icon Boxed Mode\";s:11:\"description\";s:45:\"Turn on to display toggle icon in boxed mode.\";s:2:\"id\";s:20:\"accordion_icon_boxed\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}s:24:\"accordian_inactive_color\";a:7:{s:5:\"label\";s:30:\"Toggle Icon Inactive Box Color\";s:11:\"description\";s:46:\"Controls the color of the inactive toggle box.\";s:2:\"id\";s:24:\"accordian_inactive_color\";s:7:\"default\";s:17:\"var(--awb-color8)\";s:4:\"type\";s:11:\"color-alpha\";s:15:\"soft_dependency\";b:1;s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:26:\"--accordian_inactive_color\";}}}s:28:\"accordion_content_typography\";a:7:{s:2:\"id\";s:28:\"accordion_content_typography\";s:5:\"label\";s:25:\"Toggle Content Typography\";s:11:\"description\";s:45:\"Choose the typography for all toggle content.\";s:4:\"type\";s:10:\"typography\";s:6:\"global\";b:1;s:7:\"choices\";a:7:{s:11:\"font-family\";b:1;s:11:\"font-weight\";b:1;s:9:\"font-size\";b:1;s:14:\"text-transform\";b:1;s:11:\"line-height\";b:1;s:14:\"letter-spacing\";b:1;s:5:\"color\";b:1;}s:7:\"default\";a:7:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:17:\"var(--awb-color8)\";}}s:22:\"accordian_active_color\";a:6:{s:5:\"label\";s:25:\"Toggle Hover Accent Color\";s:11:\"description\";s:58:\"Controls the accent color on hover for icon box and title.\";s:2:\"id\";s:22:\"accordian_active_color\";s:7:\"default\";s:17:\"var(--awb-color5)\";s:4:\"type\";s:11:\"color-alpha\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:24:\"--accordian_active_color\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}}s:29:\"accordian_active_accent_color\";a:5:{s:5:\"label\";s:26:\"Toggle Active Accent Color\";s:11:\"description\";s:59:\"Controls the accent color on active for icon box and title.\";s:2:\"id\";s:29:\"accordian_active_accent_color\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:11:\"color-alpha\";}s:20:\"accordion_icon_align\";a:6:{s:5:\"label\";s:21:\"Toggle Icon Alignment\";s:11:\"description\";s:38:\"Controls the alignment of toggle icon.\";s:2:\"id\";s:20:\"accordion_icon_align\";s:7:\"default\";s:4:\"left\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"choices\";a:2:{s:4:\"left\";s:4:\"Left\";s:5:\"right\";s:5:\"Right\";}}}}s:28:\"user_login_shortcode_section\";a:6:{s:5:\"label\";s:10:\"User Login\";s:2:\"id\";s:28:\"user_login_shortcode_section\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:24:\"fusiona-calendar-check-o\";s:6:\"fields\";a:6:{s:21:\"user_login_text_align\";a:7:{s:5:\"label\";s:21:\"User Login Text Align\";s:11:\"description\";s:160:\"Controls the alignment of all user login content. &quot;Text Flow&quot; follows the default text align of the site. &quot;Center&quot; will center all elements.\";s:2:\"id\";s:21:\"user_login_text_align\";s:7:\"default\";s:6:\"center\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:8:\"textflow\";s:9:\"Text Flow\";s:6:\"center\";s:6:\"Center\";}}s:28:\"user_login_form_field_layout\";a:7:{s:5:\"label\";s:28:\"User Login Form Field Layout\";s:11:\"description\";s:173:\"Choose if form fields should be stacked and full width, or if they should be floated. <strong>IMPORTANT:</strong> This option only works for the login and the register form.\";s:2:\"id\";s:28:\"user_login_form_field_layout\";s:7:\"default\";s:7:\"stacked\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:7:\"stacked\";s:7:\"Stacked\";s:7:\"floated\";s:7:\"Floated\";}}s:27:\"user_login_form_show_labels\";a:7:{s:5:\"label\";s:22:\"User Login Show Labels\";s:11:\"description\";s:50:\"Controls if the form field labels should be shown.\";s:2:\"id\";s:27:\"user_login_form_show_labels\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:33:\"user_login_form_show_placeholders\";a:7:{s:5:\"label\";s:28:\"User Login Show Placeholders\";s:11:\"description\";s:56:\"Controls if the form field placeholders should be shown.\";s:2:\"id\";s:33:\"user_login_form_show_placeholders\";s:7:\"default\";s:3:\"yes\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:32:\"user_login_form_show_remember_me\";a:7:{s:5:\"label\";s:36:\"User Login Show Remember Me Checkbox\";s:11:\"description\";s:75:\"Controls if the remenber me checkbox should be displayed in the login form.\";s:2:\"id\";s:32:\"user_login_form_show_remember_me\";s:7:\"default\";s:2:\"no\";s:4:\"type\";s:15:\"radio-buttonset\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}}s:32:\"user_login_form_background_color\";a:6:{s:5:\"label\";s:32:\"User Login Form Background Color\";s:11:\"description\";s:42:\"Controls the color of the form background.\";s:2:\"id\";s:32:\"user_login_form_background_color\";s:7:\"default\";s:17:\"var(--awb-color2)\";s:4:\"type\";s:11:\"color-alpha\";s:9:\"transport\";s:11:\"postMessage\";}}}s:23:\"video_shortcode_section\";a:7:{s:5:\"label\";s:5:\"Video\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:23:\"video_shortcode_section\";s:7:\"default\";s:0:\"\";s:4:\"icon\";s:13:\"fusiona-video\";s:4:\"type\";s:9:\"accordion\";s:6:\"fields\";a:3:{s:15:\"video_max_width\";a:6:{s:5:\"label\";s:13:\"Maximum Width\";s:11:\"description\";s:46:\"Set the maximum width using a valid CSS value.\";s:2:\"id\";s:15:\"video_max_width\";s:7:\"default\";s:4:\"100%\";s:4:\"type\";s:4:\"text\";s:8:\"css_vars\";a:1:{i:0;a:2:{s:4:\"name\";s:32:\"--fusion-video-max-width-default\";s:7:\"element\";s:4:\"body\";}}}s:14:\"video_controls\";a:6:{s:5:\"label\";s:14:\"Video Controls\";s:11:\"description\";s:55:\"Controls whether the video controls should show or not.\";s:2:\"id\";s:14:\"video_controls\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:3:\"yes\";s:7:\"choices\";a:2:{s:3:\"yes\";s:4:\"Show\";s:2:\"no\";s:4:\"Hide\";}}s:13:\"video_preload\";a:6:{s:5:\"label\";s:16:\"Video Preloading\";s:11:\"description\";s:203:\"Controls how / if the browser should preload the video. Choose &quot;Metadata&quot; if only the video metadata should be preloaded on page load or &quot;Auto&quot; to preload the full video on page load.\";s:2:\"id\";s:13:\"video_preload\";s:4:\"type\";s:15:\"radio-buttonset\";s:7:\"default\";s:4:\"auto\";s:7:\"choices\";a:3:{s:4:\"auto\";s:4:\"Auto\";s:8:\"metadata\";s:8:\"Metadata\";s:4:\"none\";s:4:\"None\";}}}}s:28:\"visibility_shortcode_section\";a:6:{s:5:\"label\";s:23:\"Visibility Size Options\";s:2:\"id\";s:28:\"visibility_shortcode_section\";s:11:\"description\";s:0:\"\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:14:\"fusiona-mobile\";s:6:\"fields\";a:1:{s:16:\"visibility_moved\";a:4:{s:2:\"id\";s:16:\"visibility_moved\";s:5:\"label\";s:0:\"\";s:4:\"type\";s:6:\"custom\";s:11:\"description\";s:235:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> You can now find the visibility breakpoints on the main <a href=\"#\" class=\"fusion-quick-option\" data-fusion-option=\"visibility_small\">responsive tab</a>.</div>\";}}}}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("16249","_transient_timeout_fusion_tos_flat","1783588907","off"),
("16250","_transient_fusion_tos_flat","a:696:{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:308:\"Controls the top/bottom offset of the boxed 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: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:15:\"soft_dependency\";b:1;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>1173</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:429:\"<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://dr.frex.digital/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>, or <a href=\"https://dr.frex.digital/wp-admin/post.php?post=7&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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:82:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:82:\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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>361</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:46:\"https://dr.frex.digital/wp-admin/nav-menus.php\";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:332:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant Mega Menu setup, we recommend using the Library Mega Menus. To create a Mega Menu, visit the <a href=\"https://dr.frex.digital/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:70:\"https://dr.frex.digital/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:73:\"https://dr.frex.digital/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:326:\"<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://dr.frex.digital/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:336:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Page Title Bar Builder to create a custom Page Title Bar Layout. <a href=\"https://dr.frex.digital/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:\"breacrumb_home_label\";a:7:{s:5:\"label\";s:28:\"Breadcrumbs Home Anchor Text\";s:11:\"description\";s:353:\"Controls the text anchor of the Homelink. Leave empty for translateable default of &quot;Home&quot;.  <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:\"breacrumb_home_label\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:15:\"soft_dependency\";b:1;s:15:\"partial_refresh\";a:1:{s:44:\"page_title_bar_contents_breacrumb_home_label\";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:337:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant Sliding Bar setup, we recommend using the Avada Off Canvas Builder. To create an Off Canvas, <a href=\"https://dr.frex.digital/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:44:\"https://dr.frex.digital/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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:44:\"https://dr.frex.digital/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 - 2026 | <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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:83:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:84:\"https://dr.frex.digital/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:84:\"https://dr.frex.digital/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:83:\"url(\"https://dr.frex.digital/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:5:{i:0;s:7:\"buttons\";i:1;s:5:\"menus\";i:2;s:4:\"tocs\";i:3;s:11:\"tabstoggles\";i:4;s:10:\"off_canvas\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:7:{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:10:\"off_canvas\";s:10:\"Off Canvas\";}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:260:\"Controls the number of <a href=\"https://dr.frex.digital/wp-admin/themes.php?page=avada_options&lang=en#excerpt_base\" target=\"_blank\" rel=\"noopener noreferrer\">words</a> in the excerpts on the assigned blog page in \"Settings > Reading\" or on blog archive pages.\";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:319:\"<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://dr.frex.digital/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:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Live Builder to create a custom Content Layout. <a href=\"https://dr.frex.digital/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:340:\"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://dr.frex.digital/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:465:\"Controls the number of <a href=\"https://dr.frex.digital/wp-admin/themes.php?page=avada_options&lang=en#excerpt_base\" target=\"_blank\" rel=\"noopener noreferrer\">words</a> in the excerpts on 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:20:\"portfolio_with_front\";a:5:{s:5:\"label\";s:38:\"Portfolio Include Permalink Front Base\";s:11:\"description\";s:137:\"Turn on to include the front base defined by the permalink structure set in Settings &gt; Permalinks. Make sure to regenerate permalinks.\";s:2:\"id\";s:20:\"portfolio_with_front\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}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:319:\"<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://dr.frex.digital/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:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Live Builder to create a custom Content Layout. <a href=\"https://dr.frex.digital/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:41:{s:7:\"blogger\";s:7:\"Blogger\";s:7:\"bluesky\";s:7:\"Bluesky\";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:6:\"github\";s:6:\"GitHub\";s:9:\"instagram\";s:9:\"Instagram\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"mastodon\";s:8:\"Mastodon\";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:8:\"snapchat\";s:8:\"Snapchat\";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:7:\"threads\";s:7:\"Threads\";s:6:\"tiktok\";s:6:\"Tiktok\";s:6:\"tumblr\";s:6:\"Tumblr\";s:7:\"twitter\";s:1:\"X\";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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Header Builder to create a custom Header Layout. <a href=\"https://dr.frex.digital/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:318:\"<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://dr.frex.digital/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:320:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Footer Builder to create a custom Footer Layout. <a href=\"https://dr.frex.digital/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:7:\"bluesky\";i:3;s:6:\"reddit\";i:4;s:8:\"linkedin\";i:5;s:8:\"whatsapp\";i:6;s:8:\"telegram\";i:7;s:6:\"tumblr\";i:8;s:4:\"xing\";i:9;s:5:\"email\";i:10;s:9:\"copy_link\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:15:{s:8:\"facebook\";s:8:\"Facebook\";s:7:\"twitter\";s:1:\"X\";s:7:\"bluesky\";s:7:\"Bluesky\";s:6:\"reddit\";s:6:\"Reddit\";s:8:\"linkedin\";s:8:\"LinkedIn\";s:8:\"mastodon\";s:8:\"Mastodon\";s:8:\"whatsapp\";s:8:\"WhatsApp\";s:8:\"telegram\";s:8:\"Telegram\";s:7:\"threads\";s:7:\"Threads\";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:9:\"copy_link\";s:9:\"Copy Link\";}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:295:\"Controls the color of the social icon box.  <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:\"sharing_social_links_box_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: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:300:\"Controls the box radius of the social icon box.  <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:\"sharing_social_links_boxed_radius\";s:7:\"default\";s:3:\"4px\";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: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:306:\"Controls the interior padding of the social icon box.  <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:\"sharing_social_links_boxed_padding\";s:7:\"default\";s:3:\"8px\";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: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:13:\"lightbox_zoom\";a:8:{s:5:\"label\";s:25:\"Lightbox Image Hover Zoom\";s:11:\"description\";s:86:\"Set the scale factor for hovered images inside the lightbox. Set to 1 to disable zoom.\";s:2:\"id\";s:13:\"lightbox_zoom\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"slider\";s:7:\"choices\";a:3:{s:3:\"min\";s:1:\"1\";s:3:\"max\";s:1:\"2\";s:4:\"step\";s:4:\"0.05\";}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_zoom\";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:13:\"lightbox_loop\";a:7:{s:5:\"label\";s:21:\"Loop Lightbox Gallery\";s:11:\"description\";s:37:\"Turn on to loop the lightbox gallery.\";s:2:\"id\";s:13:\"lightbox_loop\";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:13:\"lightbox_loop\";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:1837:\"<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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D4e26b6513a\">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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D4e26b6513a\">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://dr.frex.digital/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1&#038;_wpnonce=4e26b6513a\">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:1475:\"<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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3Dc6085e002a\">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%2Fdr.frex.digital%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3Dc6085e002a\">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://dr.frex.digital/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1&#038;_wpnonce=c6085e002a\">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:22:\"Map Zoom Control Icons\";s:11:\"description\";s:53:\"Turn on to display the google map zoom 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:10:{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:7:\"choices\";a:8:{s:4:\"post\";s:5:\"Posts\";s:4:\"page\";s:5:\"Pages\";s:15:\"avada_portfolio\";s:15:\"Portfolio Items\";s:9:\"avada_faq\";s:9:\"FAQ Items\";s:7:\"product\";s:20:\"WooCommerce Products\";s:12:\"tribe_events\";s:21:\"Events Calendar Posts\";s:5:\"class\";s:7:\"Classes\";s:10:\"instructor\";s:11:\"Instructors\";}}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:27:\"search_add_woo_product_skus\";a:6:{s:5:\"label\";s:35:\"Search for WooCommerce Product SKUs\";s:11:\"description\";s:132:\"Turn on to also search for WooCommerce product SKUs. This will only work, if products have been added to the search results content.\";s:2:\"id\";s:27:\"search_add_woo_product_skus\";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:319:\"<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://dr.frex.digital/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:319:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> For more flexibility and a modern, more performant setup, we recommend using the Live Builder to create a custom Content Layout. <a href=\"https://dr.frex.digital/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:203:\"Controls the number of <a href=\"https://dr.frex.digital/wp-admin/themes.php?page=avada_options&lang=en#excerpt_base\" target=\"_blank\" rel=\"noopener noreferrer\">words</a> in the excerpts on search results.\";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:1:\"X\";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:1:\"X\";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:14:\"faq_with_front\";a:5:{s:5:\"label\";s:32:\"FAQ Include Permalink Front Base\";s:11:\"description\";s:137:\"Turn on to include the front base defined by the permalink structure set in Settings &gt; Permalinks. Make sure to regenerate permalinks.\";s:2:\"id\";s:14:\"faq_with_front\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";}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:21:\"totop_scroll_progress\";a:7:{s:5:\"label\";s:26:\"ToTop Show Scroll Progress\";s:11:\"description\";s:65:\"Turn on to show the page scroll progress within the ToTop Button.\";s:2:\"id\";s:21:\"totop_scroll_progress\";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:17:\".to-top-container\";s:9:\"className\";s:26:\"awb-to-top-scroll-progress\";}}s:17:\"sanitize_callback\";s:21:\"__return_empty_string\";}}s:8:\"required\";a:3:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}i:1;a:3:{s:7:\"setting\";s:14:\"totop_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"left\";}i:2;a:3:{s:7:\"setting\";s:14:\"totop_position\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:5:\"right\";}}}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:83:\"url(\"https://dr.frex.digital/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:86:\"url(\"https://dr.frex.digital/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:19:\"meta_tags_separator\";a:5:{s:5:\"label\";s:19:\"Meta Tags Separator\";s:11:\"description\";s:118:\"Set a separator character that can be used in the Avada Page Options SEO tab for post title and description meta tags.\";s:2:\"id\";s:19:\"meta_tags_separator\";s:7:\"default\";s:1:\"-\";s:4:\"type\";s:4:\"text\";}s:16:\"status_opengraph\";a:6:{s:5:\"label\";s:36:\"Description And Open Graph Meta Tags\";s:11:\"description\";s:352:\"Turn on to enable custom description meta tag and open graph meta tags. These are used for SEO and when sharing pages on social networks like Facebook. <strong>IMPORTANT:</strong> Some SEO plugins, like Yoast SEO or RankMath, add their own implementation of this, so either disable the option in the plugin, or disable it here, to avoid duplicate tags.\";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:120:\"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:15:\"space_body_open\";a:7:{s:5:\"label\";s:24:\"Space after &lt;body&gt;\";s:11:\"description\";s:113:\"Only accepts JavaScript code, wrapped with &lt;script&gt; tags and valid HTML markup inside the &lt;body&gt; tag.\";s:2:\"id\";s:15:\"space_body_open\";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:113:\"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:451:\"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://dr.frex.digital/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:15:\"awb_image_sizes\";a:8:{s:5:\"label\";s:17:\"Avada Image Sizes\";s:11:\"description\";s:537:\"Choose which Avada image sizes should be created for every image uploaded to the Media Library. <strong>NOTE:</strong> Image sizes used in legacy areas/features of Avada are marked with (L). When you remove image sizes here, please check your site to make sure all layouts display correctly. After changing this value, please install and run the <a target=\"_blank\" href=\"https://dr.frex.digital/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:\"awb_image_sizes\";s:7:\"default\";a:14:{i:0;s:10:\"fusion-200\";i:1;s:10:\"fusion-400\";i:2;s:10:\"fusion-600\";i:3;s:10:\"fusion-800\";i:4;s:11:\"fusion-1200\";i:5;s:10:\"blog-large\";i:6;s:11:\"blog-medium\";i:7;s:12:\"recent-posts\";i:8;s:22:\"recent-works-thumbnail\";i:9;s:14:\"portfolio-full\";i:10;s:13:\"portfolio-one\";i:11;s:13:\"portfolio-two\";i:12;s:15:\"portfolio-three\";i:13;s:14:\"portfolio-five\";}s:4:\"type\";s:6:\"select\";s:5:\"multi\";b:1;s:7:\"choices\";a:14:{s:10:\"fusion-200\";s:11:\"200px Width\";s:10:\"fusion-400\";s:11:\"400px Width\";s:10:\"fusion-600\";s:11:\"600px Width\";s:10:\"fusion-800\";s:11:\"800px Width\";s:11:\"fusion-1200\";s:12:\"1200px Width\";s:10:\"blog-large\";s:14:\"Blog Large (L)\";s:11:\"blog-medium\";s:15:\"Blog Medium (L)\";s:12:\"recent-posts\";s:16:\"Recent Posts (L)\";s:22:\"recent-works-thumbnail\";s:16:\"Recent Works (L)\";s:14:\"portfolio-full\";s:18:\"Portfolio Full (L)\";s:13:\"portfolio-one\";s:19:\"Portfolio 1 Col (L)\";s:13:\"portfolio-two\";s:19:\"Portfolio 2 Col (L)\";s:15:\"portfolio-three\";s:19:\"Portfolio 3 Col (L)\";s:14:\"portfolio-five\";s:19:\"Portfolio 5 Col (L)\";}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:236:\"Set to \'on\' to clear WP\'s object cache on post edit, post deletion, and Avada Form Entries page view. 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:436:\"When enabled, third party CSS files will be combined into Avada\'s main stylesheet. Plugins affected are 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:207:\"Set to \'on\' to enable the generation of critical CSS. Once turned on you can manage it from the <a href=\"https://dr.frex.digital/wp-admin/admin.php?page=avada-critical\" target=\"_blank\">critical CSS page</a>.\";s:2:\"id\";s:12:\"critical_css\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:15:\"cache_server_ip\";a:6:{s:5:\"label\";s:15:\"Cache Server IP\";s:11:\"description\";s:201:\"For unique cases where you are using CloudFlare and a cache server, ex: varnish cache. Enter your cache server IP to clear the Global Options dynamic CSS cache. Consult with your server admin for help.\";s:2:\"id\";s:15:\"cache_server_ip\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"js_compiler\";a:6:{s:5:\"label\";s:18:\"Enable JS Compiler\";s:11:\"description\";s:174:\"By default all the JavaScript files are combined. Disabling the JS compiler will load non-combined JavaScript files. This will have an impact on the performance of your site.\";s:2:\"id\";s:11:\"js_compiler\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}s:11:\"pwa_section\";a:4:{s:5:\"label\";s:19:\"Progressive Web App\";s:2:\"id\";s:11:\"pwa_section\";s:4:\"icon\";b:1;s:4:\"type\";s:4:\"info\";}s:19:\"pwa_required_notice\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:381:\"<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://dr.frex.digital/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\";}}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("16251","_site_transient_timeout_community-events-c769753001fcde3f6112bf3507ed4607","1783027307","off"),
("16252","_site_transient_community-events-c769753001fcde3f6112bf3507ed4607","a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"77.83.203.0\";}s:6:\"events\";a:0:{}}","off"),
("16253","_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3","1783027308","off"),
("16254","_site_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3","a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2026 20:29:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=7.1-alpha-62617\";s: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: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:30:\"The First AI Leaders Graduates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/06/ai-leaders-graduates/\";s: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, 29 Jun 2026 20:29: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:9:\"Education\";s: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:\"Updates\";s: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:2:\"AI\";s:7:\"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=20951\";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:377:\"On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through AI Leaders, the nation&#8217;s first workforce-focused AI literacy course tied to a recognized credential. Each of them [&#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:12:\"Mary Hubbard\";s: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:5442:\"\n<p class=\"wp-block-paragraph\">On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through <a href=\"https://ai-leaders.org/\">AI Leaders</a>, the nation&#8217;s first workforce-focused AI literacy course tied to a recognized credential. Each of them earned it by building real projects, applying generative AI to genuine work, and contributing to the open source software that powers more than 40% of the web. Students who completed the course also earned $1,000, made possible by a donation from Automattic and UIC. This celebration was the moment the program had been building toward since it was <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">first announced in February</a>.</p>\n\n\n\n<div class=\"wp-block-group has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\" style=\"background-color:#0c1125;padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center has-white-color has-text-color has-link-color has-normal-font-size wp-elements-2 wp-block-paragraph\"><strong>Explore the project portfolios built by this year’s AI Leaders</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"><a href=\"https://aileaderswp.blog/\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/aileaderswpblog-scaled.png?ssl=1\" alt=\"\" class=\"wp-image-20975\" /></a></figure>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c 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://aileaderswp.blog/\"><strong>AI Leaders · Class of 2026</strong></a></div>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">When the pilot launched, the goal was to test whether open source learning could connect directly to job pathways rather than stopping at a certificate. What makes this program distinct is that it is built on open source from the ground up: students learn on WordPress, contribute to it, and use generative AI the way the WordPress ecosystem uses it every day, leaving with a credential that employers can verify and a community that continues long after the course ends.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The pilot reflects a shared belief that AI and open source skills should be within reach regardless of where someone lives or what they can afford.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress was built to expand access to publishing and participation on the open web.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The program is a collaboration with distinct roles for each partner. It is funded through the <a href=\"https://osf.it.uic.edu/\">UIC Tech Solutions Open Source Fund</a>, with support from the <a href=\"https://www.uic.edu/\">University of Illinois Chicago</a> and <a href=\"https://automattic.com/?p=867048\">Automattic</a>, while the WordPress project and the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> contribute to the development of the curriculum itself.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first cohort was just the beginning. The gathering in Chicago brought this group together with employers and agencies, and further job placements are already in motion. </p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center wp-block-paragraph\">The next round of AI Leaders is on the horizon. Subscribe for updates to be the first to hear when the next cohort opens and how to take part.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://ai-leaders.org/#apply\"><strong>Subscribe for AI Leaders Updates</strong></a></div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-dark-strokes-grey-color has-alpha-channel-opacity has-dark-strokes-grey-background-color has-background\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>WordPress offers a wide range of educational opportunities for people at every stage, from first steps to advanced contribution. Explore workshops, lesson plans, and community-created resources designed to help you build practical skills while connecting with others who are learning and contributing at <a href=\"https://wordpress.org/education/\">WordPress.org/education/</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:\"20951\";s: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:57:\"\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:\"Browse the New Mercantile Swag Store\";s:7:\"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:50:\"https://wordpress.org/news/2026/06/open-web-merch/\";s: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, 22 Jun 2026 15: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:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20930\";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:324:\"Mercantile, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order [&#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:5:\"jillq\";s: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:5580:\"\n<p class=\"wp-block-paragraph\"><a href=\"https://mercantile.wordpress.org/\">Mercantile</a>, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order emails styled to match the look and feel of the store.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"2048\" height=\"1055\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=2048%2C1055&#038;ssl=1\" alt=\"\" class=\"wp-image-20931\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?w=2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=300%2C155&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=767%2C395&amp;ssl=1 767w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1024%2C528&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1536%2C791&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the design, the storefront leans into the history and culture of WordPress. Visual and copy choices nod to familiar elements of the project, from the metabox and the admin bar to Wapuu making the occasional appearance, with small open source and code references for those who look closely. The aim was a storefront that feels uniquely WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, the storefront shows what a modern WordPress and <a href=\"https://woocommerce.com/\">WooCommerce</a> site can do. It is built almost entirely with blocks, including a block-based cart, checkout, mini-cart, and order confirmation, supported by a set of custom theme blocks created for the store. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/iapi-about/\">Interactivity API</a> powers the catalog navigation and modal states, the store runs on WordPress 7.0, and accessibility is built in throughout, honoring reduced-motion preferences across animations and meeting color contrast standards. Product pages surface per-product attributes such as size, material, and care, so shoppers have the details they need before adding an item to the cart.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"2048\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=2048%2C800&#038;ssl=1\" alt=\"\" class=\"wp-image-20932\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?w=2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=300%2C117&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=768%2C300&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1024%2C400&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1536%2C600&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This latest redesign supported the Mercantile booth at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. To make in-person sales work smoothly, the team enabled local pickup at checkout and added a set of event-only products refined to match the rest of the catalog. Fifty orders were completed at the event using in-person payments, a strong real-world test of the new checkout flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is more on the way! A playful experiment in progress will let curious shoppers explore a text-based version of the store from the command line, a small tribute to the developers who make up much of the WordPress community. Subtle hints pointing the way will appear once it is ready.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"2048\" height=\"719\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=2048%2C719&#038;ssl=1\" alt=\"\" class=\"wp-image-20933\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?w=2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=300%2C105&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=766%2C269&amp;ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1024%2C360&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1536%2C539&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The new Mercantile is the work of many contributors who designed, built, tested, and refined it together. Every purchase supports the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c)(3) nonprofit organization, in its mission to democratize publishing and preserve open source software for generations to come. Take a look around and find something you love.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://mercantile.wordpress.org/\">Shop at <strong>mercantile.WordPress.org</strong></a></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:\"20930\";s: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: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:59:\"Kim Parsell Memorial Scholarship Opens for WordCamp US 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2026/06/kim-parsell-wcus-scholarship/\";s: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, 19 Jun 2026 16:55:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"Kim Parsell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"Scholarship\";s: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:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20927\";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:350:\"Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one [&#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:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5857:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1920%2C1080&#038;ssl=1\" alt=\"\" class=\"wp-image-20941\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1536%2C864&amp;ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one of the largest annual gatherings in the WordPress project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship honors Kim Parsell, a longtime WordPress contributor whose work and presence left a meaningful mark on the project. Kim was known for her care, generosity, and commitment to helping others feel welcome in open source spaces. For readers who are less familiar with her story, the <a href=\"https://us.wordcamp.org/2019/memories-of-kim-parsell/\">tributes shared by friends and colleagues</a> offer a deeper look at her role in the WordPress community and the lasting impact she had on those who knew her. Through this scholarship, the WordPress Foundation continues to recognize contributors who reflect that same spirit of participation and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is built by people from many backgrounds, experiences, and areas of expertise. Events like WordCamp US create space for contributors to meet in person, learn from one another, and continue the work that supports the software and the community around it. For some contributors, the cost of travel, lodging, and registration can make attending difficult. The Kim Parsell Memorial Scholarship helps reduce that barrier for one eligible contributor each year.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Scholarship Details</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One scholarship will be awarded for WordCamp US 2026. Applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman. </li>\n\n\n\n<li>Be actively involved as a contributor to WordPress.</li>\n\n\n\n<li>Have never attended WordCamp US before.</li>\n\n\n\n<li>Demonstrate financial need to attend the event.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship includes the cost of a WordCamp US 2026 ticket, round-trip flight, and lodging. Applications are open through July 10, 2026, and all applicants will be notified of the decision by July 24, 2026.</p>\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 has-background wp-element-button\" href=\"https://wordcampcentral.survey.fm/wcus-2026-kim-parsell-scholarship-application\" style=\"background-color:#6c214f\">Apply for the Kim Parsell Memorial Scholarship</a></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p class=\"wp-block-paragraph\">WordCamp US 2026 will take place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. Contributors, attendees, volunteers, organizers, and sponsors will come together to share ideas, learn from each other, and continue building the future of WordPress. For many contributors, attending in person creates new ways to collaborate, find support, and stay connected to the open source work that happens throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To learn more about eligibility, visit the <a href=\"https://wordpressfoundation.org/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship page</a>. Community members are encouraged to share this opportunity with contributors who may qualify. You can also learn more about attending WordCamp US 2026 on the <a href=\"https://us.wordcamp.org/2026/tickets/\">WordCamp US tickets page</a>, explore <a href=\"https://us.wordcamp.org/2026/call-for-volunteers/\">volunteer opportunities</a>, or review <a href=\"https://us.wordcamp.org/2026/call-for-sponsors/\">sponsorship opportunities</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"943\" height=\"1978\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=943%2C1978&#038;ssl=1\" alt=\"\" class=\"wp-image-20939\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?w=943&amp;ssl=1 943w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=143%2C300&amp;ssl=1 143w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=768%2C1610&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=488%2C1024&amp;ssl=1 488w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=732%2C1536&amp;ssl=1 732w\" sizes=\"auto, (max-width: 943px) 100vw, 943px\" /></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></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:\"20927\";s: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:72:\"Global Partners Across the First Half of the 2026 WordPress Event Season\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2026/06/global-partners-first-half-2026/\";s: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, 18 Jun 2026 17:01: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:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Education\";s: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: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:3;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"Global Partners\";s:7:\"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=20910\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"This post recaps how the WordPress project&#8217;s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional the first WordPress Developers Day, and a growing network of WordPress Campus Connect events, Global Partners staffed booths, sponsored sessions, and connected [&#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:12:\"Harmony Romo\";s: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:8155:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55169598894_0199c1bbb9_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20911\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This post recaps how the WordPress project&#8217;s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional <a href=\"https://events.wordpress.org/novisad/2026/developer-day/\">the first WordPress Developers Day</a>, and a growing network of <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> events, Global Partners staffed booths, sponsored sessions, and connected with developers, freelancers, students, and agency owners around the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A global footprint</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The year began in January with <a href=\"https://nepal.wordcamp.org/2026\">WordCamp Nepal</a>, where Jetpack joined the community in Kathmandu. The momentum carried into India, where <a href=\"https://kolhapur.wordcamp.org/2026\">WordCamp Kolhapur</a> and, a week later, <a href=\"https://pune.wordcamp.org/2026\">WordCamp Pune</a> brought Global Partners face-to-face with a student-heavy audience of roughly 200-250 attendees. In Pune, a session on connecting WordPress with AI workflows drew a large crowd, and attendees were curious about WordPress.com plans, new AI features, and Automattic for Agencies.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1206\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1206%2C675&#038;ssl=1\" alt=\"\" class=\"wp-image-20920\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?w=1206&amp;ssl=1 1206w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=300%2C168&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=766%2C429&amp;ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1024%2C573&amp;ssl=1 1024w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">In February, Jetpack traveled to <a href=\"https://portharcourt.wordcamp.org/2026\">WordCamp Port Harcourt</a> in Nigeria, an inclusive and well-organized event with 256 attendees that featured talks on inclusion and accessibility. Locally produced swag was a standout success there, a reminder that the WordPress community&#8217;s reach extends well beyond Europe and North America.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Across Europe</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Spring brought a wave of European events. At <a href=\"https://madrid.wordcamp.org/2026\">WordCamp Madrid</a>, with 280 attendees, WordPress.com served as a Global Sponsor and ran a Wapuu treasure hunt that drew 97 participants.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55230328181_175ece15a5_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20921\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Down the coast in France, <a href=\"https://nice.wordcamp.org/2026\">WordCamp Nice</a> gave Jetpack a chance to connect with 247 freelancers and developers, an audience that appreciated concrete, easy-to-explain solutions and asked questions about newsletters, security, and Jetpack&#8217;s broader feature set.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://vienna.wordcamp.org/2026\">WordCamp Vienna</a> stood out for its developer-heavy crowd of 277. From a Jetpack-branded booth staffed on both days, the team engaged with agencies and merchants, fielded numerous questions about WooCommerce and security, and booked 8 agency meetings. Many builders were interested to learn that Automattic stands behind both WordPress.com and WooCommerce. In Italy and Germany, <a href=\"https://torino.wordcamp.org/2026\">WordCamp Torino</a> and <a href=\"https://leipzig.wordcamp.org/2026\">WordCamp Leipzig</a> both reflected growing curiosity about AI, a theme that resurfaced throughout the year. At Leipzig, with 109 agencies, hosting companies, and freelancers in attendance, WordPress.com staffed a booth where tote bags were in high demand, while conversations kept returning to AI and WordPress Studio.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://slovenia.wordcamp.org/2026\">WordCamp Slovenia </a>and <a href=\"https://portugal.wordcamp.org/2026\">WordCamp Portugal</a> closed the European stretch. WordPress.com brought a booth to Ljubljana, and in Porto, it appeared with both a booth and logo presence alongside WooCommerce, which suited an event filled with e-commerce builders and Woo payment providers. The first WordPress Developers Day in Novi Sad introduced a new format, with Jetpack as a global sponsor and nearly 30 in-depth conversations on Jetpack, WooCommerce, performance, and the realities of client work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community in Uganda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In May, <a href=\"https://kampala.wordcamp.org/2026\">WordCamp Kampala</a> brought four Global Partners onto the sponsor roster: Jetpack, WooCommerce, Bluehost, and WordPress.com. The event, themed &#8220;Tech for Social Good,&#8221; welcomed more than 200 attendees and reflected the energy of a fast-growing local community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Support from Global Sponsors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Behind every one of these events is a layer of support that does not always appear at a booth. In 2026, Bluehost and Hostinger both joined the <a href=\"https://events.wordpress.org/sponsor/\">WordPress community sponsorship program</a> as top-tier Global Sponsors, alongside Jetpack and WordPress.com. Their contributions help underwrite the global WordCamp program and the community events that make a year like this possible. That program-level backing is what allows organizers in Kathmandu, Porto, and Kampala to bring their events to life, and the WordPress community is grateful to every partner that invests at that scale.<br></p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect reaches 6,200 students</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the most notable stories of 2026 is not a WordCamp at all. It is <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. As of early June, the program has passed 6,200 students, with 25 events completed in 2026, 45 events all-time, and 42 more in planning or already scheduled. WordPress.com has played a direct support role throughout, including providing hosting for WordPress Campus Connect events around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The connective tissue between these events and the broader community is real. An organizer first met at WordCamp Mukono went on to help lead WordPress Campus Connect work in Uganda. A student who built her first WordPress site at a WordPress Campus Connect event later attended a WordCamp. These events serve as a pathway for the next generation of WordPress contributors, builders, and professionals.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If 2026 has shown anything, it is that interest in WordPress, and in the tools and services that Global Partners provide, continues to grow around the world. The questions being asked at booths and in sessions are sharper, the audiences more diverse, and the community&#8217;s reach more genuinely global. Thank you to Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger for being part of that story this year, and to every organizer, volunteer, speaker, and attendee who made these events possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To find an upcoming event near you, visit <a href=\"https://central.wordcamp.org\">WordCamp Central</a>. To learn how organizations can support the WordPress project, see the <a href=\"https://events.wordpress.org/sponsor/\">community sponsorship program</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:\"20910\";s: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: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:37:\"What Happened at WordCamp Europe 2026\";s:7:\"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://wordpress.org/news/2026/06/wceu-2026-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Jun 2026 17:44: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"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=20793\";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:249:\"WordCamp Europe 2026 brought the WordPress community to Kraków for three days of contribution and conversation, from CERN going live on WordPress to WordPress 7.0, AI, and a closing fireside chat on where the project goes next. Read the full recap.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:72430:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1440\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2560%2C1440&#038;ssl=1\" alt=\"\" class=\"wp-image-20801\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?w=2560&amp;ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-horizontal is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-e8523bbf wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"386\" height=\"501\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=386%2C501&#038;ssl=1\" alt=\"\" class=\"wp-image-20863\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?w=386&amp;ssl=1 386w, https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=231%2C300&amp;ssl=1 231w\" sizes=\"auto, (max-width: 386px) 100vw, 386px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe, <a href=\"https://europe.wordcamp.org/2026/\">the biggest WordPress conference in Europe</a>, spent the first week of June in Kraków. The 2026 edition of this event filled the ICE Kraków Congress Centre from June 4 to 6, drawing 2,458 ticket holders from 81 countries to the south of Poland. Close to a quarter of them were attending their first WordCamp Europe.</p>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">The city made it easy to settle in. Every attendee&#8217;s badge carried a transport hologram good for unlimited trams and buses. The Main Market Square, the largest in Europe, sat a short ride away, and the local food ran the gamut from pierogi to żurek soup to obwarzanek pretzels sold off the street.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Kraków is beautiful, with history everywhere.<br><em>&#8211; Sebastian Miśniakiewicz, local team lead</em></p>\n</blockquote>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-7387b849 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\">The program kept pace with the setting. Across multiple tracks, the schedule held 49 talks and eight hands-on workshops, grouped into themes that ran from core development and AI to business and the open web. Around them sat a full Contributor Day, a sponsor area, side events, on-site childcare, and an after-party the local team stretched to eight hours.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=474%2C500&#038;ssl=1\" alt=\"\" class=\"wp-image-20864\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?w=474&amp;ssl=1 474w, https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=284%2C300&amp;ssl=1 284w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" /></figure>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day Opens the Week</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As it does every year, the event began the day before the talks. Contributors filled the venue for Contributor Day, a working session where people work together to improve WordPress itself rather than watch a presentation about it. The morning started with registration and a welcome, the room split into teams, and a group photo broke up the work around midday. The afternoon ran a second working block before each team gathered to share what it had done.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a462c259fe32&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a0358&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a0358\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20812\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20812\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a0916&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a0916\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20806\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20806\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a0e51&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a0e51\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20805\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20805\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1536%2C1025&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a1386&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a1386\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20807\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20807\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a18d5&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a18d5\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20808\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20808\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a21ad&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a21ad\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20809\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20809\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a286b&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a286b\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20810\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20810\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a2d92&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a2d92\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" decoding=\"async\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20813\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.25.24-1-scaled.jpeg?ssl=1\" alt=\"\" class=\"wp-image-20813\" style=\"aspect-ratio:1\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a32dd&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a32dd\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20811\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20811\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The range of tables is the clearest picture of how wide the project has become. Newcomers could sit down with Polyglots to translate WordPress into their own language, with Documentation to fix the pages people reach when they get stuck, or with Support to answer questions in the forums. More technical tables covered Core, Performance, Testing, Themes, and the Plugins team, whose reviewers screen every plugin submitted to the directory.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First-timers were not left to find their own way. The day was built around onboarding tables, named table leads, and mentors, with an open invitation for experienced contributors to adopt a newcomer and walk them through their first patch, string, or ticket.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People who could not travel to Kraków were welcomed to join remotely through the #contributor-day channel in the <a href=\"https://make.wordpress.org/\">Make WordPress Slack</a>, so distance was not a reason to sit the day out.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Birthplace of the Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It was fitting that the opening keynote came from CERN. The European Laboratory for Particle Physics, on the French-Swiss border outside Geneva, is where the World Wide Web was invented more than 30 years ago, and <a href=\"https://profiles.wordpress.org/joachimv\">Joachim Valdemar Yde</a>, who has managed CERN&#8217;s web team since 2021, came to explain why the laboratory had chosen WordPress to carry its web presence forward.</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-ef2f134e wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\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/712t_Kjbj3I?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&#038;listType=playlist&#038;list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Yde and <a href=\"https://profiles.wordpress.org/franciscobbarros\">Francisco Borges Aurindo Barros</a>, who leads CERN&#8217;s WordPress infrastructure, framed the move as a chance to give a web presence built up over three decades a shared, modern foundation. After evaluating several leading content management systems against CERN&#8217;s needs, WordPress came out on top.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Barros walked through what they had built. The guiding idea is that people at CERN focus on their content while the web team looks after the platform underneath. A self-service portal lets anyone request a site in a few clicks. Behind it, a shared distribution supplies a common theme and a set of approved, security-hardened plugins, and an in-house tool provisions each new site on Kubernetes in about a minute. In its first year, the platform has already set up hundreds of sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Moving years of existing content onto the new platform is the other half of the work, and the team automated it: a single command lifts each site&#8217;s pages, headings, and images and rebuilds them as Gutenberg blocks, with no downtime. They plan to open source the tool.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then Yde delivered the line that the room had been waiting for.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">As of today, our main flagship website, home.cern, is now served on WordPress. It&#8217;s been automatically migrated, and it&#8217;s live.<br><br><em>&#8211; Joachim Valdemar Yde, Web Manager, CERN</em></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The rollout is on track to wrap up over the coming months, and early impressions, Yde said, have been overwhelmingly positive, with easy wins in responsiveness and accessibility. For those at the event, the keynote pointed the room toward <a href=\"https://youtu.be/f09yvh3mnME\">a later talk by CERN&#8217;s Akanksha Chatterjee</a> on building and maintaining the laboratory&#8217;s engineering websites on the same service.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a neat symmetry to it. The institution that published the world&#8217;s first website now runs on the software that powers more than 40% of today&#8217;s web, licensed under the GPL and maintained by the people in the room.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 and AI</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 was a throughline of the conference. Several sessions placed the release at the center, framing it less as a routine update than as a change in what the software is, and in what it makes possible for the people who build with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The anchor for that conversation was a panel called &#8220;Inside WordPress 7.0.&#8221; It gathered contributors who worked on the release, among them <a href=\"https://profiles.wordpress.org/juanmaguitar\">Juan Manuel Garrido</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</a>, and <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>. It was framed around more than a feature list, setting out to cover how a release of this size actually comes together: the contribution workflows, the coordination, and the human aspects of shipping software in the open.</p>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a46f3&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a46f3\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1264\" height=\"843\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1264%2C843&#038;ssl=1\" alt=\"Photo of the stage for the panel inside WordPress 7.0\" class=\"wp-image-20878\" title=\"Panel: Inside WordPress 7.0\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=768%2C512&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<p class=\"wp-block-paragraph\">What gives this release its weight is the work moving into WordPress&#8217;s core: a native AI client, a new Abilities API that lets plugins declare what they can do in a way other tools can discover, and a Connectors screen for wiring up providers such as OpenAI, Anthropic, or Google Gemini. The argument running through the AI sessions was that this belongs to everyone who builds on WordPress, not only to developers shipping their own integrations. Speakers got specific about how to put that to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/anukasha\">Anukasha Singh</a> focused on how the Abilities API can make plugin permissions cleaner and safer than the capability checks developers have leaned on for years.</li>\n\n\n\n<li>In a workshop, <a href=\"https://profiles.wordpress.org/wpfeedback\">Vito Peleg</a> set out to take builders from one-off prompts toward a tool-using workflow that audits a live site and files structured tickets.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, a WP-CLI maintainer who has worked on structured data and the AI-native web, turned to a fast-growing opportunity. AI assistants and search now send real traffic to the open web, with more than a billion referral visits logged by the middle of 2025. His session framed WordPress as well-placed to earn that attention, with a practical checklist for getting a site ready to be found, read, and cited.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">People stayed at the center of the conversation, too. <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, in a talk called &#8220;Human in the loop means something,&#8221; framed the phrase as a real commitment rather than a checkbox. Humans and AI are each good at different things, and the products worth building let each do what it does best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Development and Craft</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The development sessions were where the craft lived. <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, who co-wrote the HTML API and designed the block parser, devoted a deep-dive workshop to that API. <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, a long-time Core committer on the Performance team, focused on how the WP_Query class has been made faster through better caching, and how site builders can take advantage of that at scale.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Scaling got a hands-on session of its own. One talk set out to see how far a WordPress site can run on a twelve-dollar virtual server, profiling it under load in Grafana and tuning away the bottlenecks, with a GitHub repository so attendees could follow along at home. <a href=\"https://profiles.wordpress.org/fellyph\">Fellyph Cintra</a> focused on the latest in <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, the browser-based tooling and architectural changes that the project credits with a real speed-up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, a Core contributor and former default-theme co-lead, set out to make the case that accessibility-ready requirements are far easier to meet than most theme developers assume, drawing on real reviews of both block and classic themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two members of the Plugins team, <a href=\"https://profiles.wordpress.org/davidperez\">David Perez</a> and <a href=\"https://profiles.wordpress.org/frantorres\">Fran Torres</a>, framed their session as a practical clinic. Between them, they have reviewed more than 25,000 plugins, and they set out to name the common, avoidable issues that keep good plugins stuck in the review queue. For a first-time author, that is the difference between an afternoon and a month of waiting.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Business of WordPress and the Open Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The business and community sessions pulled the lens back to people, with a refreshingly unsentimental view of running a WordPress business. <a href=\"https://profiles.wordpress.org/deltacx\">Debbie Levitt</a> built her talk around a model for finding product-market fit at three levels at once, on the premise that teams celebrate one good metric and then wonder months later where their users went. <a href=\"https://profiles.wordpress.org/vasvalch\">Vassilena Valchanova</a> took on a quieter problem: being good at the work is not the same as anyone knowing you are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There was a local thread here as well. <a href=\"https://profiles.wordpress.org/irsilviana\">Irfani Silviana</a>, a full-stack developer at a Kraków-based agency, framed the Business Model Canvas as a translation layer that moves developers from shipping features to engineering business value, a fitting talk to give in her own city.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The web&#8217;s standards, the argument goes, remain as open as the day Tim Berners-Lee created them at CERN.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">That idea carried through the rest of the community sessions. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/wdavidsnead\">David Snead</a>, an attorney who works with internet infrastructure providers, set out to explain how hosts, registrars, and registries coordinate against abuse through shared, real-time intelligence, on the logic that a threat to one WordPress host is a threat to all of them.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a> shared a practical playbook for how companies and individuals can support open source sustainably and look after the people who keep it going.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/karinchristen\">Karin Christen</a> set out to describe how her Swiss agency turned <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> from a good intention into a standing team habit through internal contributor days.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Running alongside the talks, the hands-on workshops were a chance to build something on the spot. In one, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a> set out to build a touch-enabled gallery slider with the Interactivity API, while another centered on Full Site Editing, with a working portfolio theme attendees could reuse on their next client project. These were laptop-open, leave-with-working-code sessions.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a462c25a5079&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a559a&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a559a\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20849\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20849\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a5b85&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a5b85\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20850\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20850\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Closing Fireside Chat</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The closing session opened with a warm gesture from Kraków University of Technology. Representatives took the stage to thank the organizers and the community and to present <a href=\"https://profiles.wordpress.org/4thhubbard\">Mary Hubbard</a>, the Executive Director of WordPress, with a gift from their faculty of informatics and mathematics. They described what the university and the WordCamp community share: a love of learning and sharing knowledge, and an openness to new ideas, skills, and connections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard used the moment to share some news. Starting in October, the university will open a WordPress-specific course, which she called a trail-blazing event for Poland and for WordPress. Earlier that day, the program&#8217;s first cohort, around 20 students, had shown what they built, part of the <a href=\"https://wordpress.org/education/campus-connect/\">WordPress Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a> education work.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a462c25a5f83&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a638c&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a638c\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20888\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20888\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a68aa&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a68aa\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20887\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20887\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard then turned the stage into a conversation, inviting <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, the lead of the Gutenberg project, and <a href=\"https://profiles.wordpress.org/richtabor\">Rich Tabor</a>, a WordPress designer and developer, to talk through where WordPress is heading and how AI fits in. WordPress 7.0 had just launched with Ventura as its release lead, and he asked everyone who had contributed to it to stand for a round of applause.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of the chat explored the balance between building WordPress with AI, and building with AI on WordPress, without losing the human part. Ventura noted that WordPress&#8217;s long investment in its design system is paying off now that you can ask an AI to extend a menu or a control, and it reaches for the right components. He pointed to older primitives gaining new value, like <a href=\"https://wordpress.org/cli/\">WP-CLI</a>, which AI models use fluently, and to <a href=\"https://developer.wordpress.com/docs/developer-tools/studio/studio-code/\">Studio Code</a>, an open source, agent-based coding tool the team has been building for WordPress. Tabor showed how he now ships many small editor improvements by talking to an agent instead of typing code, and Ventura demoed desktop mode and open-canvas experiments that reimagine the admin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On open source and AI, Hubbard argued that open source is why WordPress has thrived, that the same values should shape AI, and that the community should be far more vocal about it. As she put it, &#8220;We should be talking about it, and we should be much louder about it.&#8221;</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-9c97b5da wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\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/X4GG-sfH94M?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 allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Audience questions pushed on multilingual support, unsticking long-stalled tickets, and reaching a younger, more diverse community. On that last point, Hubbard came back to education, pointing to a <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">US pilot of an AI literacy micro-credential</a> that uses WordPress as the playground, and made the case for it:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">I think that focusing in on younger generations, and bringing them into the project in a healthy way, with the dynamic of education as well as mentorship, and how we can understand and learn from them, as well as mentor them and adopt them as contributors, is very important.<br><br><em>&#8211; Mary Hubbard, WordPress Executive Director</em></p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond the Talks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp is also about the corridor outside the talks, and Kraków gave people reason to roam. Between sessions, attendees moved through the sponsor area for product demos and conversations that often carried on over lunch.</p>\n\n\n\n<figure data-wp-context=\"{&quot;galleryId&quot;:&quot;6a462c25a705d&quot;}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery has-nested-images columns-3 is-cropped has-black-background-color has-background wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a74e8&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a74e8\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20823\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20823\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a7a3d&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a7a3d\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20828\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20828\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a7f55&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a7f55\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20825\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20825\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a8472&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a8472\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20824\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20824\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a8987&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a8987\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20826\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20826\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01-scaled.jpeg?resize=2048%2C1366&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6a462c25a8eac&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a462c25a8eac\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"20827\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-20827\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.thisImage.buttonRight\"\n			data-wp-style--top=\"state.thisImage.buttonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The after-party was the not-so-subtle flourish of a local team that doubled the usual length to eight hours, with Polish food and dragon-and-floral swag that nodded to the Wawel Dragon of Kraków legend. The nearby artistic Kazimierz district kept the evening going, and the trams, as one organizer had promised, were still running reliably afterward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps run on people, and 2026 was no different. The organizing teams, the speakers, the sponsors who funded the venue and the meals, the local crew who sorted trams and pierogi, and the contributors who arrived a day early to work on the project all built this WCEU together. The people watching the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\">livestream</a> from outside Kraków were part of it as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For anyone whose appetite was only sharpened by three days in Poland, the calendar already has the next stop. <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a> (Phoenix, USA) runs August 16 to 19, with its own Contributor Day opening the week.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&#038;ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-style:none;border-width:0px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;box-shadow:var(--wp--preset--shadow--natural)\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe will return next year (May 27-29, 2027) in Málaga, Spain.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>Photography by the <a href=\"https://europe.wordcamp.org/2026/community/organisers/#photography-team\">WCEU 2026 photography team</a>. See the full galleries on <a href=\"https://www.flickr.com/photos/wceu/albums/\">Flickr</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:\"20793\";s: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:57:\"\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:17:\"Protect The Shire\";s:7:\"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:39:\"https://wordpress.org/news/2026/06/pts/\";s: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, 05 Jun 2026 18:51: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:1:{i:0;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"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=20783\";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:353:\"tl;dr: Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org.&#160; One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex [&#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:14:\"Matt Mullenweg\";s: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:7910:\"\n<p class=\"wp-block-paragraph\"><strong>tl;dr:</strong> <em>Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org.&nbsp;</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex or inaccessible and make it available to everyone, running in as many environments as possible. It’s the Open Source way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just last December there was a <a href=\"https://x.com/karpathy/status/2026731645169185220\">step-change in coding ability</a> that rocked many developers, and since April’s <a href=\"https://red.anthropic.com/2026/mythos-preview/\">reveal of Mythos</a>, security activity has kicked into high gear. A few days ago, <a href=\"https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop.html\">Chrome shipped a release with 429 security fixes</a>! The threats and opportunities of these new capabilities inspired us to kick off an initiative we call <strong>Protect The Shire</strong> (hat tip <a href=\"https://www.tolkiensociety.org/discover/biography/\">J. R. R. Tolkien</a>) with the aim of using our best minds and the infrastructure of WordPress.org to make all code in our directories and repositories as secure as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of this work was and will remain behind the scenes, and we hope its success is defined mostly by what <em>doesn’t</em> happen. However, while we reckon with our newfound powers, we need to make space for review.</p>\n\n\n\n<h2 class=\"wp-block-heading\">To Update or Not</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress core updates go through multiple people and layers of review before they go out, a process we’ve polished to a high art in the 18 years since we <a href=\"https://wordpress.org/news/2008/12/coltrane/\">introduced one-click upgrades in 2.7 “Coltrane.”</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Core is solid, and I’m so proud that <a href=\"https://wordpress.org/about/stats/\">over 50% of all WordPress sites have upgraded to 7.0 within two weeks</a>! That’s the result of an unimaginable amount of work across thousands of hosts, developers, and teams across WordPress.org. We’ve pushed hard to make upgrades happen automagically, and as fast as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’re in a liminal period now, and I believe 2026 will be a year of tension between two approaches: updating as quickly as possible to stay secure, and holding back on updating to stay secure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ve seen clever and dangerous supply chain attacks across the npm, PyPI, GitHub, and RubyGems ecosystems, and we even had our own mini-version with the <a href=\"https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/\">Essential Plugins debacle</a>, where good plugins were unknowingly sold to a new author who had malicious intent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How to balance security updates and <em>securing</em> updates?</p>\n\n\n\n<h2 class=\"wp-block-heading\">Mirkwood or the Wild West?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Everyone knows the fun of WordPress is in its 78k+ plugins and themes. We have a rigorous, human-powered review process for <a href=\"https://make.wordpress.org/themes/handbook/review/\">theme</a> and <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">plugin</a> submissions, but once you’re published in the directory, you’re on your own. Our update system currently distributes every plugin and theme release as soon as a developer presses the button. That’s what keeps the directory as robust as WordPress itself. There were over 3,000 commits to the plugin repository yesterday!&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">For now, each new plugin release will wait up to 24 hours before being distributed through auto-updates. This will give everyone, including a <a href=\"https://wapuu.studio/wapuu/a-gandalf-wapuu-that-is-a-coding-wizard-302912b8/\">new Wapuu</a> we call Gandalf, a chance to review changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I expect 24 hours could be reduced to minutes as the process evolves, but we’ll err on the side of caution while AI models are advancing so rapidly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Our <a href=\"https://make.wordpress.org/plugins/\">plugin review team</a> seems superhuman, but still needs to sleep. But bots don’t, and a depth of review that seemed unimaginable before is now a matter of time and tokens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The security capabilities of AI are going to make the world weird and take a lot of our focus in the next few months, but there’s a light at the end of the tunnel.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our Shire Is Special</h2>\n\n\n\n<p class=\"wp-block-paragraph\">There’s no shortage of ways to find, install, and update plugins and themes for WordPress. For those who choose WordPress.org, though, we want to make sure that it feels safe and secure. That means staying strict about some things—like guidelines and Open Source licenses—while also remaining flexible enough to allow solo hackers, community projects, and for-profit commercial plugins and themes to thrive in our ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">GitHub stars may get the hype, but if you add up all the numbers <a href=\"https://wordpress.org/plugins/\">in our plugin directory</a>, it’s over 400M installs. There are 78k+ extensions, many from solo devs, installed on over a million sites each! Now we need to learn from the best parts of GitHub and make that available to every developer on WordPress.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just because WordPress plugins have a reputation for vulnerabilities is no reason not to aim for the same security and stability we’ve achieved in core. We’ve done the impossible a few times already in <a href=\"https://wordpress.org/book/table-of-contents/\">our journey from a b2/cafelog fork</a> to <a href=\"https://wordpress.org/showcase/\">where we are today</a>.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Freedom and security are not zero-sum.</strong> With Open Source, we can show how security comes from transparency, not obscurity. Collaboration over competition. What we accomplish when we come together is nothing short of incredible. Success always attracts bad actors, but we grow stronger through every adversity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scale of WordPress can make some challenges seem too big to tackle, but given time, there is no problem that’s insurmountable. I’m reminded of the story behind the title of <a href=\"https://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016\">Anne Lamott’s book <em>Bird by Bird</em></a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Thirty years ago my older brother, who was ten years old at the time, was trying to get a report written on birds that he&#8217;d had three months to write, which was due the next day. We were out at our family cabin in Bolinas, and he was at the kitchen table close to tears, surrounded by binder paper and pencils and unopened books about birds, immobilized by the hugeness of the task ahead. Then my father sat down beside him, put his arm around my brother&#8217;s shoulder, and said, &#8220;Bird by bird, buddy. Just take it bird by bird.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">More to come, stay tuned. I wish everyone <a href=\"https://europe.wordcamp.org/2026/\">in Kraków at WordCamp Europe</a> the best and hope to see you soon!</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:\"20783\";s: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: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:4:\"WP23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2026/05/wp23/\";s: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, 27 May 2026 17:40:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{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:4:\"Meta\";s: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:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20747\";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:349:\"WordPress at 23 is simultaneously both the strongest and most precarious it’s ever been. Last week, we shipped WordPress 7 to the world. In seven days, 46% of all WordPresses, tens of millions across countless different hosting environments, are already on 7.0, auto-updated with no breakage. From a Raspberry Pi to the most secure sites [&#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:14:\"Matt Mullenweg\";s: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:5651:\"\n<p class=\"wp-block-paragraph\">WordPress at 23 is simultaneously both the strongest and most precarious it’s ever been.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Last week, <a href=\"https://wordpress.org/news/2026/05/armstrong/\">we shipped WordPress 7 to the world</a>. In seven days, <a href=\"https://wordpress.org/about/stats/\">46% of all WordPresses</a>, tens of millions across countless different hosting environments, are already on 7.0, auto-updated with no breakage. From a <a href=\"https://projects.raspberrypi.org/en/projects/lamp-web-server-with-wordpress\">Raspberry Pi</a> to the most secure sites in the world, like <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a>. Sit with that for a minute when you think of all the resources and all the projects that have had security problems in the past few weeks. No supply chain attacks, no security problems, just a stable, secure infrastructure doing its job invisibly to power a huge portion of the open internet.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><em>I&#8217;m really proud of the capability and security of WordPress, and we should celebrate that. That accomplishment represents the work of thousands and thousands of people coming together to make the web a better place. Also, an iceberg of what is going on behind the scenes. </em> </h2>\n\n\n\n<p class=\"wp-block-paragraph\">However, the release was not what I hoped it would be because so much time from key people was taken away by <a href=\"https://wpengine.com/\">WP Engine’s</a> attacks.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.silverlake.com/\">Silver Lake</a>, in its immense 100B+ power, summoned a <a href=\"https://en.wikipedia.org/wiki/Shoggoth\">shoggoth</a> in <a href=\"https://www.quinnemanuel.com/\">Quinn Emanuel</a> that has been paperclip-maximizing legal torture that is not just going after <a href=\"https://automattic.com/\">Automattic</a> and <a href=\"https://wordpress.org/\">WordPress.org</a> and me personally, but this Golem Jagannath is now trying to dissolve the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> itself, a non-profit with <a href=\"https://projects.propublica.org/nonprofits/organizations/205498932\">no employees or payroll</a> that supports <a href=\"https://central.wordcamp.org/\">WordCamps</a> and <a href=\"https://wordpress.org/education/credits/\">Open Source education around the world</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you know anyone at <a href=\"https://www.linkedin.com/company/silver-lake/\">Silver Lake</a>, <a href=\"https://www.linkedin.com/company/quinn-emanuel/\">Quinn Emanuel</a>, or <a href=\"https://www.linkedin.com/company/wpengine/\">WP Engine</a> in that order, please beg, plead with them to stop the violence. <strong>End this internecine warfare</strong> that is threatening to destroy one of the last stalwarts of the Open Web.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s not fun and games anymore, not just business. This is having a real impact on people&#8217;s lives.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It took every ounce of will in my body, and I am grateful to thousands of hours of meditation, to not explode in rage when asked about pineapple on pizza and debating the <a href=\"https://en.wikipedia.org/wiki/Jean_Baudrillard\">meaning of Jean Baudrillard</a> and&nbsp;“<a href=\"https://wordpress.org/news/2024/09/wp-engine-banned/\">bastardized simalcra</a>” when miles away, my closest friend is in a hospital bed waiting for a heart transplant.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have colleagues <a href=\"https://eric.blog/2026/05/24/six-months/\">LITERALLY DYING</a> I can’t be with because Silver Lake / Quinn Emanuel / WP Engine shoggoth is trying to make it seem like <a href=\"https://www.therepository.email/wp-engine-and-automattic-trade-accusations-of-withheld-evidence-in-flurry-of-court-filings\">I am hiding or destroying evidence because we rotate logs on wordpress.org or I have disappearing chats on Signal with romantic partners</a>. I don’t curse, but this is so f-ed up I don’t know what to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>If you don&#8217;t know anyone at these entities, please pray, meditate, and call on whatever forces or divine interventions you can to bring this to an end.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">I reached out multiple times to resolve this with open arms; I’ve extended every olive branch; and I’ve even said positive things about Silver Lake and WP Engine in the press, trying to bring this to a close. Heather Brunner would not even come into the same room with me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">All of this from a stupid presentation <a href=\"https://www.youtube.com/watch?v=fnI-QcVSwMU\">I gave at WordCamp US 2024 about how private equity can hollow out high-trust-based Open Source communities that in the past 19 months has only gotten 16k views on YouTube</a>. &nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Silver Lake, you have already extracted all your pounds of flesh. I missed my Mom&#8217;s knee surgery. If you wanted me to suffer for my sins, I have, and probably deeper than you will ever know. WordPress and WordPress.org, and yes, even my flawed leadership, are at the heart of what has made WP Engine successful so far. You have so much money and power, <a href=\"https://pe-insights.com/trump-approves-14bn-tiktok-us-spin-off-with-oracle-silver-lake-and-kkr-as-investors/\">you just got TikTok, the Trump administration loves you</a>, you don’t need to control and take over WordPress, too. If you win, you destroy it, and then what? Please have mercy and stop trying to ruin people’s lives. Let’s move on.</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:\"20747\";s: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:37:\"Looking Ahead to WordCamp Europe 2026\";s:7:\"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:54:\"https://wordpress.org/news/2026/05/wceu-2026-sessions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 May 2026 12:52: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: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:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCEU\";s:7:\"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=20721\";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:385:\"June 4-6, 2026 &#124; ICE Kraków Congress Centre, Kraków, Poland WordCamp Europe 2026 will bring the WordPress community together in Kraków, Poland, from June 4–6 for Contributor Day, two conference days, and a program shaped by the ideas, tools, and people moving WordPress forward. This year’s schedule includes two official keynotes, hands-on workshops, panels, and [&#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:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17685:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"390\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=1024%2C390&#038;ssl=1\" alt=\"\" class=\"wp-image-20725\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=1024%2C390&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=300%2C114&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=768%2C292&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?resize=1536%2C585&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/623429972_1296109592550398_378925818241477540_n.png?w=1892&amp;ssl=1 1892w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>June 4-6, 2026 | ICE Kraków Congress Centre, Kraków, Poland</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2026 will bring the WordPress community together in Kraków, Poland, from June 4–6 for Contributor Day, two conference days, and a program shaped by the ideas, tools, and people moving WordPress forward. This year’s schedule includes two official keynotes, hands-on workshops, panels, and sessions across development, accessibility, artificial intelligence, content, search, business, education, security, and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program offers a broad view of how WordPress is used today: as publishing software, a framework for building at scale, a tool for business growth, and a global open source project shaped by contributors around the world. Whether you build with WordPress, write for the web, support clients, teach new learners, or contribute to the project, WordCamp Europe offers a chance to learn from practical examples and connect them to the platform&#8217;s future.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-82d461e8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/tickets/\" style=\"background-color:#31416c\">Get Your Tickets</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/schedule/\" style=\"background-color:#31416c\">WCEU Schedule</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://europe.wordcamp.org/2026/wordcamp-europe-2026/\" style=\"background-color:#31416c\">About WCEU 2026</a></div>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"411\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=1024%2C411&#038;ssl=1\" alt=\"\" class=\"wp-image-20724\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=1024%2C411&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=300%2C120&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=768%2C308&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?resize=1536%2C616&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/WCEU-sign-3.png?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Keynotes at WordCamp Europe 2026</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The keynote sessions at WordCamp Europe 2026 will give attendees two ways to look at WordPress today: through a large-scale institutional adoption story and through a broader closing reflection on where the project is headed. These sessions anchor the program while connecting many of the themes that appear throughout the conference, from infrastructure and governance to contribution, innovation, and the future of the web.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--10);margin-right:0;margin-bottom:var(--wp--preset--spacing--10);margin-left:0\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=1024%2C538&#038;ssl=1\" alt=\"\" class=\"wp-image-20726\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=1024%2C538&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=300%2C158&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?resize=768%2C403&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/Opening-Keynote-FB-Post-Featured-Image.png?w=1200&amp;ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Joachim Valdemar Yde and Francisco Borges Aurindo Barros will share how <a href=\"https://europe.wordcamp.org/2026/session/two-worlds-collide-wordpress-at-cern/\">CERN is adopting WordPress as its future content management system</a>. Their keynote will explore the governance, infrastructure, and migration work behind moving more than 800 websites onto a customized WordPress Service, offering a look at WordPress on an institutional scale.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=1024%2C538&#038;ssl=1\" alt=\"\" class=\"wp-image-20727\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=1024%2C538&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=300%2C158&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?resize=768%2C403&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/matt-mullenweg-1.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Ma.tt Mullenweg will close WordCamp Europe 2026 with a broader look at <a href=\"https://europe.wordcamp.org/2026/session/closing-keynote/\">WordPress, the open web, and the ideas shaping what comes next</a>. As the event’s final keynote, this session will bring together many of the conversations happening across Contributor Day, sessions, workshops, and community gatherings throughout the week.</p>\n</div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Program Themes to Watch at WCEU 2026</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The rest of the WCEU themes are organized around topics that reflect the breadth of the WordPress ecosystem. These themes give attendees a way to follow the sessions most relevant to their work, from building better sites and improving content discovery to growing sustainable businesses, strengthening security, expanding access, and supporting the people and communities behind the project.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search, Visibility, and Discovery</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Search continues to change, but helping people find the right information remains central to the web. WCEU’s search and SEO sessions look at how AI-generated answers, generative engine optimization, shifting user habits, and new discovery platforms are changing visibility for publishers, businesses, and builders. Sessions include <a href=\"https://europe.wordcamp.org/2026/session/panel-the-future-of-seo/\">Panel: The Future of SEO</a>, with Kacper Bartoszak, Pam Aungst Cronin, Alex Moss, David Cuesta, and Jovana Smoljanovic Tucakov, as well as Emma Young’s <a href=\"https://europe.wordcamp.org/2026/session/ai-search-why-your-whole-company-should-care/\">AI Search: Why Your Whole Company Should Care</a>, which looks at why AI-native discovery now affects content, development, partnerships, and business strategy.</p>\n\n\n\n<h3 class=\"wp-block-heading\">AI and the Future of Building</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Artificial intelligence has a dedicated presence at WordCamp Europe 2026, with sessions that move beyond general discussion and into practical use cases for marketing, product work, development, and site management. Vito Peleg’s <a href=\"https://europe.wordcamp.org/2026/session/agentic-ai-wordpress-from-prompts-to-tools-systems/\">Agentic AI &amp; WordPress: From Prompts to Tools &amp; Systems</a> will explore how teams can move from simple prompts to AI workflows that execute tasks, while Monika Dimitrova’s <a href=\"https://europe.wordcamp.org/2026/session/ai-wont-save-your-marketing-but-it-might-save-your-time-and-money/\">AI Won’t Save Your Marketing (but it might save your time and money)</a> focuses on how small businesses can use AI without losing the strategy and identity that make their work effective.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Development and Technical Practice</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Development sessions at WCEU will focus on how WordPress sites, tools, and workflows are built for long-term use. The program includes a <a href=\"https://europe.wordcamp.org/2026/session/panel-inside-wordpress-7-0/\">Panel: Inside WordPress 7.0</a>, with contributors discussing the release, its features, and the process behind it, along with sessions such as Anukasha Singh’s <a href=\"https://europe.wordcamp.org/2026/session/smarter-plugin-permissions-with-the-abilities-api/\">Smarter Plugin Permissions with the Abilities API</a>, Ariel Ramos’s <a href=\"https://europe.wordcamp.org/2026/session/headless-wordpress-api-security-in-10-minutes/\">Headless WordPress API Security in 10 Minutes</a>, and Dejan Rudić Vranić’s hands-on workshop <a href=\"https://europe.wordcamp.org/2026/session/build-your-developer-portfolio-a-hands-on-guide-to-fse/\">Build Your Developer Portfolio: A Hands-on Guide to FSE</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility and Inclusive Design</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Accessibility is part of building a better web for everyone, and WCEU’s accessibility sessions give attendees practical ways to make digital experiences more usable, inclusive, and sustainable. This theme connects directly to WordPress’s project values, from how content is structured to how themes, plugins, and interfaces are designed. For designers, developers, content creators, and project leads, these sessions offer a chance to make accessibility part of everyday decisions rather than a final step at the end of a project.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Content, Writing, and Communication</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Content and writing sessions at WCEU will focus on how clearer communication helps users find what they need, teams share what they know, and communities make information easier to understand. Pooja Sanwal’s <a href=\"https://europe.wordcamp.org/2026/session/why-writing-still-matters-in-a-video-first-internet/\">Why Writing Still Matters in a Video-First Internet</a> looks at the role of written content as video continues to dominate online traffic, Fernando Tellado’s <a href=\"https://europe.wordcamp.org/2026/session/do-you-really-need-an-seo-geo-plugin-for-wordpress/\">Do You Really Need an SEO/GEO Pugin for WordPress</a>? explores what WordPress can already do for visibility, and Birgit Olzem’s <a href=\"https://europe.wordcamp.org/2026/session/documentation-as-a-love-language-for-the-future-you/\">Documentation as a Love Language for the Future You</a> looks at how simple documentation practices can help teams and communities preserve knowledge.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Security and Trust</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Security remains central to maintaining websites people can rely on. WCEU’s security-focused sessions look beyond basic reminders and into the risks, systems, and decisions that shape safer WordPress experiences. The broader program includes talks on <a href=\"https://europe.wordcamp.org/2026/session/fighting-spam-and-bots-on-wordpress-with-ai/\">AI-assisted spam and bot detection</a>, plugin permissions, and <a href=\"https://europe.wordcamp.org/2026/session/headless-wordpress-api-security-in-10-minutes/\">secure headless WordPress architectures</a>, giving attendees practical ways to think about resilience, trust, and responsible site management.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Business and Sustainable Growth</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The business sessions at WCEU will explore how WordPress professionals turn ideas, services, and products into sustainable work. Debbie Levitt’s <a href=\"https://europe.wordcamp.org/2026/session/three-levels-of-atomic-product-market-fit/\">Three Levels of Atomic Product-Market Fit</a> looks at how teams can understand product-market fit beyond a single metric, Irfani Silviana’s <a href=\"https://europe.wordcamp.org/2026/session/wordpress-roi-map-engineering-business-value-with-bmc/\">WordPress ROI Map: Engineering Business Value with BMC</a> connects technical decisions to business outcomes, and Liza Bogatyrev’s <a href=\"https://europe.wordcamp.org/2026/session/stop-positioning-into-obscurity-to-unlock-growth/\">Stop Positioning Into Obscurity to Unlock Growth</a> focuses on how clearer positioning can support revenue and adoption.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Education, Contribution, and Community</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress grows when people can learn, participate, and find a place to contribute. WCEU’s education and community sessions include <a href=\"https://europe.wordcamp.org/2026/session/panel-rethinking-learning-in-wordpress/\">Panel: Rethinking Learning in WordPress</a>, featuring Mary Hubbard, Rade Jekic, Klaus Harris, Natalia Basiura, and Benjamin Zekavica, along with Daniel Grzonka’s <a href=\"https://europe.wordcamp.org/2026/session/the-new-engineer-psychology-systems-and-open-source/\">The New Engineer: Psychology, Systems, and Open Source</a>, Ivana Ćirković’s <a href=\"https://europe.wordcamp.org/2026/session/what-it-really-means-to-be-a-part-of-the-wp-credits-program/\">What It (Really) Means To Be a Part of the WP Credits Program</a>?, and Jörg Pareigis’s <a href=\"https://europe.wordcamp.org/2026/session/sovereign-university-ai-tutors-powered-by-wordpress/\">Sovereign University AI Tutors Powered by WordPress</a>. Together, these sessions connect contributor onboarding, academic partnerships, open source learning, and the future skills people need to work with WordPress.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" style=\"background-color:#31416c\">Get Your Tickets Today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Explore the Full Program</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2026 will bring together many parts of the WordPress ecosystem in one place: software, publishing, business, design, education, and community. The keynotes and theme-based sessions offer a broad look at how WordPress is being used today and how contributors, builders, and users are preparing for what comes next.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the full <a href=\"https://europe.wordcamp.org/2026/schedule/\">WordCamp Europe 2026 schedule</a> and choose the sessions that match how you use, build, teach, support, or contribute to WordPress. <a href=\"https://europe.wordcamp.org/2026/tickets/\">Tickets are available now</a> for attendees joining the community in Kraków. All sessions will be live streamed. Keep checking back for updates.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"margin-top:var(--wp--preset--spacing--10);margin-right:0;margin-bottom:var(--wp--preset--spacing--10);margin-left:0\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-18817\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/06/54571048139_5009fd3c2b_k.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Kraków is calling. See you at WordCamp Europe 2026!</p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:\"20721\";s: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: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:29:\"WordPress 7.0 “Armstrong”\";s:7:\"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:45:\"https://wordpress.org/news/2026/05/armstrong/\";s: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, 20 May 2026 18:41:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"7-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:5:{s:4:\"data\";s:3:\"7.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: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=20583\";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:338:\"Explore AI abilities directly in your website, all managed from a central hub. Slide seamlessly through the sleek, new admin theme implemented across the dashboard. Ignite creative flow with new blocks and design tools, and tap into an expansive developer toolbox that gives you more control than ever, letting you make it uniquely yours.\";s: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:86601:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0.png?resize=1024%2C683&#038;ssl=1\" alt=\"WP 7.0 Release Edition Main Image\" class=\"wp-image-20705\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/05/Release-Edition-Main-Image-7.0-scaled.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Every WordPress release celebrates an artist who has made an indelible mark on the world of music. Say Hello to WordPress 7.0 “Armstrong”, named in honor of &#8220;Satchmo&#8221; himself, jazz musician Louis Armstrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Known as the “first great jazz soloist”, Louis Armstrong created ensembles that highlighted his own profound trumpeting skills, and in the process, transformed jazz from an orchestral art form into a solo art form. The master trumpeter also impressed the world with his signature vocals, introducing improvisation into Jazz, influencing every artist he worked with, and permanently changing the landscape of music.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Louis Armstrong wove his personal touch into the world of Jazz. With WordPress 7.0 “Armstrong”, you can build with yours.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 7.0!</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 marks the start of a new era, laying the foundation for AI across the WordPress experience. Greeting you with a modern, more intuitive dashboard, 7.0 introduces enhanced customization and development tools that inspire creativity and tap into endless potential.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you’re a creator, business owner or developer &#8211; WordPress 7.0 let&#8217;s you create in a way that is uniquely your own.</p>\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-7.0.zip\">Download WordPress 7.0 now</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Explore AI abilities directly in your website, all managed from a central hub. Slide seamlessly through the sleek, new admin theme implemented across the dashboard. Ignite creative flow with new blocks and design tools, and tap into an expansive developer toolbox that gives you more control than ever, letting you create your way.</p>\n\n\n\n<h3 class=\"wp-block-heading\">AI-Integrated WordPress</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Possibilities right in your hands.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">With AI integrated throughout WordPress the potential is endless. A new AI Client in Core lets WordPress communicate with generative AI models, while connections are easily managed from a single hub in the dashboard. The AI Client combined with the Abilities API makes a fiery duo that introduces new functionality, workflow automation, and creation tools to your website. Install the new AI plugin to expand your options even more: generate and edit images, create titles or excerpts, or even suggest alt text.</p>\n\n\n\n<p class=\"wp-block-paragraph\">7.0 also includes a new Client-Side Abilities package: a Javascript counterpart to the Abilities API, with a built in UI and command palette that delivers extensive new and hybrid AI abilities.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20700\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-13.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Manage all your external connections in a central hub on the Connector’s screen. Easily dive in with 3 presets, or add your own connections. Authenticate and get started with AI abilities in just a few clicks.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20699\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-12.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">An AI-integrated WordPress promises infinite potential, ready to be discovered.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Modernized Dashboard</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Elevate your admin experience</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">7.0 introduces a fully revitalized dashboard with a chic, modern new color scheme, and clean finishes throughout.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Polished with smooth transitions that seamlessly shift as you move between screens, you’ll feel like you’re effortlessly gliding through the dashboard.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just one click of the new Command Palette shortcut, a <code>⌘K</code> or <code>Ctrl+K</code> icon in the upper admin bar, lets you access your favorite tools from anywhere in the dashboard.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20698\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-11.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Explore typography from one place, regardless of theme. Install, upload and manage your font collection from the new dedicated font management page, with support for block, hybrid and classic themes.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20697\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-10.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Visually scrub through revision versions to see what changed at a glance, with markers that make editorial choices more intuitive. Easily pick the revision you want and restore instantly.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20696\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-9.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Design, Create, Customize</h2>\n\n\n\n<p class=\"wp-block-paragraph\"> <strong>A simpler way to build</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Let WordPress be your muse with new blocks, block supports, and design tools that add visual agility, granular control, and keep every element of your website on brand, with fresh new touches.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Showcase your ideas in a lightbox slideshow with the new gallery block, and finesse your markup with the new Heading block. Deliver clear site navigation with the new Breadcrumbs block, and add more detail to your designs with the new Icons block.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20695\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-8.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Enhanced responsiveness controls in 7.0 make your site more user friendly. Hide and reveal blocks based on device, without affecting other viewports. </p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20694\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-7.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Design and build your menu overlay with blocks and patterns, fully customizable with the styles you want visitors to see. Add columns, stylize typography, or embed your own close button in the overlay. Start with a template or create your own menu from scratch.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20693\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-6.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Fine tune page design and layout with Patterns that act as a single unit, detachable for more isolated control. Insert your pattern, swap elements and customize with ease.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20692\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-5.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Style every detail of content with custom CSS at the block level, right in your post or page.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=1024%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-20691\" style=\"border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/05/image-4.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Developer’s toolbox</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Advanced tools for building</strong> <strong>your way</strong>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 lets you build faster, better, stronger, and easier with an extensive set of&nbsp; expanded APIs and enhanced functionality.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Create blocks and patterns on the server level using only PHP, auto-registered with the block API.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore a more extensible Site Editor, with routing, route validation, and a new wordpress/boot package that allows plugins to build custom site-editor pages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">And much more</h2>\n\n\n\n<p class=\"wp-block-paragraph\">For a comprehensive overview of all the new features and enhancements in WordPress 7.0, please visit the feature-showcase website.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/download/releases/7-0\">Check out whats new in 7.0</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 7.0</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-7.0\">WordPress 7.0 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore the <a href=\"https://make.wordpress.org/core/2026/05/14/wordpress-7-0-field-guide/\">WordPress 7.0 Field Guide</a> and learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 7.0 release squad</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 7.0 is a global, cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a></li>\n\n\n\n<li>Release Coordination: <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a>, <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a></li>\n\n\n\n<li>Tech Leads: <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a></li>\n\n\n\n<li>Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 reflects the tireless efforts and passion of more than 875+ contributors in countries all over the world. This release also welcomed over 200+ first-time contributors!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Their collaboration delivered more than 420 enhancements and fixes, ensuring a stable release for all – a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><p class=\"has-small-font-size\"><a href=\"https://profiles.wordpress.org/1000camels/\">1000camels</a> · <a href=\"https://profiles.wordpress.org/aakashverma1/\">Aakash Verma</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/abdullah17/\">Abdullah Kaludi</a> · <a href=\"https://profiles.wordpress.org/abduremon/\">Abdur Rahman Emon</a> · <a href=\"https://profiles.wordpress.org/hiabhaykulkarni/\">Abhay Kulkarni</a> · <a href=\"https://profiles.wordpress.org/fitehal/\">Abhishek Deshpande</a> · <a href=\"https://profiles.wordpress.org/acmoifr/\">acmoifr</a> · <a href=\"https://profiles.wordpress.org/dannythedog/\">Adam</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/oztaser/\">Adil Öztaşer</a> · <a href=\"https://profiles.wordpress.org/adithyanaik/\">adithyanaik</a> · <a href=\"https://profiles.wordpress.org/iamadisingh/\">Aditya Singh</a> · <a href=\"https://profiles.wordpress.org/adnanhyder/\">Adnan Hyder Pervez</a> · <a href=\"https://profiles.wordpress.org/adnanlimdi/\">adnan.limdi</a> · <a href=\"https://profiles.wordpress.org/adrianpiedra/\">adrianpiedra</a> · <a href=\"https://profiles.wordpress.org/adrmf25/\">adrmf25</a> · <a href=\"https://profiles.wordpress.org/afwebdev/\">afwebdev</a> · <a href=\"https://profiles.wordpress.org/agnieszkaszuba/\">Agnieszka Szuba</a> · <a href=\"https://profiles.wordpress.org/elazzabi/\">Ahmed</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/aileenf/\">aileenf</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a> · <a href=\"https://profiles.wordpress.org/alecrust/\">Alec Rust</a> · <a href=\"https://profiles.wordpress.org/alecgeatches/\">alecgeatches</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexsanford1/\">Alex Sanford</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/albigdd/\">Alexander Bigga</a> · <a href=\"https://profiles.wordpress.org/aliaghdam/\">Ali Aghdam</a> · <a href=\"https://profiles.wordpress.org/allanespinoza/\">Allan Espinoza</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro Gómez</a> · <a href=\"https://profiles.wordpress.org/amanandhishoe/\">amanandhishoe</a> · <a href=\"https://profiles.wordpress.org/alh0319/\">Amber Hinds</a> · <a href=\"https://profiles.wordpress.org/amesplant/\">Ames Plant</a> · <a href=\"https://profiles.wordpress.org/amibe/\">Amibe Websites</a> · <a href=\"https://profiles.wordpress.org/amin7/\">Amin</a> · <a href=\"https://profiles.wordpress.org/amitraj2203/\">Amit Raj</a> · <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a> · <a href=\"https://profiles.wordpress.org/altf4falt/\">Anand Rajaram</a> · <a href=\"https://profiles.wordpress.org/anastis/\">Anastis Sourgoutsidis</a> · <a href=\"https://profiles.wordpress.org/anlino/\">Anders Norén</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/euthelup/\">Andrei Lupu</a> · <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</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/andrewryno/\">Andrew Ryno</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a> · <a href=\"https://profiles.wordpress.org/aidvu/\">Andrija Vučinić</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/rilwis/\">Anh Tran</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K. Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</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/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/ant1busted/\">Antoine</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/slieptsov/\">anton7249</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/antonrinas/\">antonrinas</a> · <a href=\"https://profiles.wordpress.org/anukasha/\">Anukasha Singh</a> · <a href=\"https://profiles.wordpress.org/anupkankale/\">Anup Kankale</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a> · <a href=\"https://profiles.wordpress.org/arcwp/\">arcwp</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/arkaprabhachowdhury/\">Arkaprabha Chowdhury</a> · <a href=\"https://profiles.wordpress.org/armandmatthey/\">Armand MD</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/artpi/\">Artur Piszek</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/arunu1996/\">Arun</a> · <a href=\"https://profiles.wordpress.org/arunsathiya/\">Arun Sathiya</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/asadowski10/\">asadowski10</a> · <a href=\"https://profiles.wordpress.org/ashirhabib/\">Ashir Habib</a> · <a href=\"https://profiles.wordpress.org/atharvasagane/\">atharvasagane</a> · <a href=\"https://profiles.wordpress.org/racinesdesign/\">Audrey Soler</a> · <a href=\"https://profiles.wordpress.org/audunmb/\">audunmb</a> · <a href=\"https://profiles.wordpress.org/awardpress/\">awardpress</a> · <a href=\"https://profiles.wordpress.org/azharderaiya/\">Azhar Deraiya</a> · <a href=\"https://profiles.wordpress.org/azragh/\">Azragh</a> · <a href=\"https://profiles.wordpress.org/neo2k23/\">BackuPs</a> · <a href=\"https://profiles.wordpress.org/badasswp/\">badasswp</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benniledl/\">Benedikt Ledl</a> · <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/benpinales/\">benpinales</a> · <a href=\"https://profiles.wordpress.org/bernattorras/\">Bernat Torras (a11n)</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/berislavgrgicak/\">Bero</a> · <a href=\"https://profiles.wordpress.org/beaubhavik/\">Bhavik Panchal</a> · <a href=\"https://profiles.wordpress.org/mbigul/\">Bigul Malayi</a> · <a href=\"https://profiles.wordpress.org/wilcosky/\">Billy Wilcosky</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/blackstar1991/\">BlackStar</a> · <a href=\"https://profiles.wordpress.org/bluefuton/\">bluefuton</a> · <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a> · <a href=\"https://profiles.wordpress.org/safedawn/\">Boris Gherman</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradshawtm/\">bradshawtm</a> · <a href=\"https://profiles.wordpress.org/brajdas0022/\">brajdas0022</a> · <a href=\"https://profiles.wordpress.org/bhubbard/\">Brandon Hubbard</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brbrr/\">brbrr</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> · <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/brumack/\">brumack</a> · <a href=\"https://profiles.wordpress.org/freibergergarcia/\">Bruno Freiberger Garcia</a> · <a href=\"https://profiles.wordpress.org/buutqn/\">buutqn</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">Béryl de La Grandière</a> · <a href=\"https://profiles.wordpress.org/calin/\">Calin Don</a> · <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/cgastrell/\">cgastrell</a> · <a href=\"https://profiles.wordpress.org/chexee/\">Chelsea Otakan</a> · <a href=\"https://profiles.wordpress.org/chihsuan/\">Chi-Hsuan Huang</a> · <a href=\"https://profiles.wordpress.org/xristos3490/\">Chris Lilitsas</a> · <a href=\"https://profiles.wordpress.org/chrismcelroyseo/\">Chris McElroy SEO</a> · <a href=\"https://profiles.wordpress.org/czarate/\">Chris Zarate</a> · <a href=\"https://profiles.wordpress.org/chrisdotdotdot/\">chrisdotdotdot</a> · <a href=\"https://profiles.wordpress.org/chrispecoraro/\">chrispecoraro</a> · <a href=\"https://profiles.wordpress.org/cris31/\">Christelle Stasse</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/cagrimmett/\">Chuck Grimmett</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian Popescu</a> · <a href=\"https://profiles.wordpress.org/claycarpenter/\">claycarpenter</a> · <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a> · <a href=\"https://profiles.wordpress.org/clementpolito/\">Clément Polito</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/themearts/\">Cuong Le</a> · <a href=\"https://profiles.wordpress.org/czarflix/\">czarflix</a> · <a href=\"https://profiles.wordpress.org/daledupreez/\">Dale du Preez</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/dpknauss/\">Dan Knauss</a> · <a href=\"https://profiles.wordpress.org/danluu/\">Dan Luu</a> · <a href=\"https://profiles.wordpress.org/alexodiy/\">Dan Zakirov</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/redsweater/\">Daniel Jalkut (Red Sweater)</a> · <a href=\"https://profiles.wordpress.org/dmallory42/\">Daniel M (a11n)</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/danieltj/\">danieltj</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">Dave Ryan</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">David Arenas</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidborrink/\">David Borrink</a> · <a href=\"https://profiles.wordpress.org/davidabowman/\">David Bowman</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/superdav42/\">David Stone</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/deborah86/\">deborah86</a> · <a href=\"https://profiles.wordpress.org/raftaar1191/\">Deepak Gupta</a> · <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a> · <a href=\"https://profiles.wordpress.org/deepakprajapati/\">Deepak Prajapati</a> · <a href=\"https://profiles.wordpress.org/deepakrohilla/\">Deepak Rohilla</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/realloc/\">Dennis Ploetner</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/deoladev/\">deoladev</a> · <a href=\"https://profiles.wordpress.org/dhansondesigns/\">Derek Hanson</a> · <a href=\"https://profiles.wordpress.org/devangvachheta137/\">Devang Vachheta</a> · <a href=\"https://profiles.wordpress.org/dhavalkapadane/\">Dhaval Kapadane</a> · <a href=\"https://profiles.wordpress.org/dhiraj0901/\">Dhiraj Joshi</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dhruvik18/\">Dhruvik Malaviya</a> · <a href=\"https://profiles.wordpress.org/alvitidiana/\">Diana Alviti</a> · <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a> · <a href=\"https://profiles.wordpress.org/digamberpradhan/\">digamberpradhan</a> · <a href=\"https://profiles.wordpress.org/digitalblanket/\">digitalblanket</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dimitro/\">Dimitris Mitropoulos</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divyeshpatel01/\">divyeshpatel01</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/thehenridev/\">Douglas Henri</a> · <a href=\"https://profiles.wordpress.org/drebbitsweb/\">Dreb Bitanghol</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/drysand/\">drysand</a> · <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a> · <a href=\"https://profiles.wordpress.org/egill/\">Egill R. Erlendsson</a> · <a href=\"https://profiles.wordpress.org/ehti/\">Ehti</a> · <a href=\"https://profiles.wordpress.org/elemrr/\">elemrr</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a> · <a href=\"https://profiles.wordpress.org/ytfeldrawkcab/\">Eric Michel</a> · <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> · <a href=\"https://profiles.wordpress.org/r1k0/\">Erick Wambua</a> · <a href=\"https://profiles.wordpress.org/ericmacknight/\">ericmacknight</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/ecairol/\">Esteban</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/evansolomon/\">Evan Solomon</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/fcartin22/\">Fabricio</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fakhriaz/\">Fakhri Azzouz</a> · <a href=\"https://profiles.wordpress.org/farhad0/\">Farhad Sakhaei</a> · <a href=\"https://profiles.wordpress.org/feli22/\">feli22</a> · <a href=\"https://profiles.wordpress.org/felipevelzani/\">Felipe Velzani</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/fellyph/\">Fellyph Cintra</a> · <a href=\"https://profiles.wordpress.org/fernandot/\">Fernando Tellado</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/fandevelop/\">Florence ANDROLUS</a> · <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a> · <a href=\"https://profiles.wordpress.org/chiscoleiton/\">Francisco Leiton</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a> · <a href=\"https://profiles.wordpress.org/vanhoucke/\">Franck VANHOUCKE</a> · <a href=\"https://profiles.wordpress.org/franckmee/\">franckmee</a> · <a href=\"https://profiles.wordpress.org/franz00/\">Fransisca H</a> · <a href=\"https://profiles.wordpress.org/frozzare/\">Fredrik Forsmo</a> · <a href=\"https://profiles.wordpress.org/from/\">frOM</a> · <a href=\"https://profiles.wordpress.org/fushar/\">fushar</a> · <a href=\"https://profiles.wordpress.org/gajendrasingh/\">Gajendra Singh</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</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/gaurangsondagar/\">Gaurang Sondagar</a> · <a href=\"https://profiles.wordpress.org/gautammkgarg/\">Gautam Garg</a> · <a href=\"https://profiles.wordpress.org/gautam23/\">Gautam Mehta</a> · <a href=\"https://profiles.wordpress.org/geminorum/\">geminorum</a> · <a href=\"https://profiles.wordpress.org/generosus/\">Generosus</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/gmjuhasz/\">Gergely J</a> · <a href=\"https://profiles.wordpress.org/gierand/\">gierand</a> · <a href=\"https://profiles.wordpress.org/giuliorubelli/\">giuliorubelli</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/grahamarmfield/\">Graham Armfield</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/guido07111975/\">Guido</a> · <a href=\"https://profiles.wordpress.org/gulamdastgir04/\">Gulamdastgir Momin</a> · <a href=\"https://profiles.wordpress.org/gustavohappyeng/\">Gustavo Hilario</a> · <a href=\"https://profiles.wordpress.org/gyurmey/\">Gyurmey</a> · <a href=\"https://profiles.wordpress.org/adrock42/\">H. Adam Lenz</a> · <a href=\"https://profiles.wordpress.org/kabir93/\">H. Kabir</a> · <a href=\"https://profiles.wordpress.org/hack_nug/\">hack_nug</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardikhuptechdev/\">Hardik Kumar</a> · <a href=\"https://profiles.wordpress.org/hardipparmar/\">Hardip Parmar</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshbhonsle08/\">harshbhonsle08</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/himshekhar07/\">Himanshu Shekhar</a> · <a href=\"https://profiles.wordpress.org/hiranimahaveer/\">hiranimahaveer</a> · <a href=\"https://profiles.wordpress.org/hiroshisato/\">Hiroshi Sato</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hiteshtalpada/\">Hitesh Talpada</a> · <a href=\"https://profiles.wordpress.org/hozefasmile/\">Hozefa Saleh</a> · <a href=\"https://profiles.wordpress.org/royhridoy/\">Hridoy Roy</a> · <a href=\"https://profiles.wordpress.org/hugod/\">Hugo</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</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/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimriaz/\">Ibrahim Riaz</a> · <a href=\"https://profiles.wordpress.org/ierwira/\">ierwira</a> · <a href=\"https://profiles.wordpress.org/iflairwebtechnologies/\">iflairwebtechnologies</a> · <a href=\"https://profiles.wordpress.org/ignatiusjeroe/\">ignatiusjeroe</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/iqbal1hossain/\">Iqbal Hossain</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/iseulde/\">iseulde</a> · <a href=\"https://profiles.wordpress.org/itsyash1421/\">itsyash1421</a> · <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a> · <a href=\"https://profiles.wordpress.org/ivanbachev/\">ivanbachev</a> · <a href=\"https://profiles.wordpress.org/jabe/\">Jabe</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/smithjw1/\">Jacob Smith</a> · <a href=\"https://profiles.wordpress.org/jadavsanjay/\">Jadav Sanjay</a> · <a href=\"https://profiles.wordpress.org/jyb1603/\">Jainish Brahmbhatt</a> · <a href=\"https://profiles.wordpress.org/jamesgiroux/\">James Giroux</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> · <a href=\"https://profiles.wordpress.org/jhmonroe/\">James Monroe</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/jarodortegaaraya/\">jarodortegaaraya</a> · <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a> · <a href=\"https://profiles.wordpress.org/jasonkytros/\">Jason Kytros</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/jaz_on/\">Jason Rouet</a> · <a href=\"https://profiles.wordpress.org/jaspercck/\">jaspercck</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jdeep/\">Jaydeep Das</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">Jaydip Ahir</a> · <a href=\"https://profiles.wordpress.org/jcnetsys/\">jcnetsys</a> · <a href=\"https://profiles.wordpress.org/jdoubleu/\">jdoubleu</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jsmansart/\">Jean-Sébastien Mansart</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/maverick3x6/\">Jeff Golenski</a> · <a href=\"https://profiles.wordpress.org/phpbits/\">Jeffrey Carandang</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/jessedyck/\">Jesse Dyck</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jf1994/\">jf1994</a> · <a href=\"https://profiles.wordpress.org/jfacemyer/\">JF::IA</a> · <a href=\"https://profiles.wordpress.org/jhtjards/\">jhtjards</a> · <a href=\"https://profiles.wordpress.org/jigarkahar/\">Jigar Kahar</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jimnelin/\">Jim Nelin</a> · <a href=\"https://profiles.wordpress.org/jmarx75/\">jmarx75</a> · <a href=\"https://profiles.wordpress.org/jojo256/\">Joan Namunina</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joefusco/\">Joe Fusco</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</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/joezappie/\">joezappie</a> · <a href=\"https://profiles.wordpress.org/wedgemaster/\">Johan</a> · <a href=\"https://profiles.wordpress.org/timse201/\">Johannes Jülg</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/johnjago/\">John Jago</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/mindctrl/\">John Parris</a> · <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joppuyo/\">joppuyo</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/jorge1017/\">jorge1017</a> · <a href=\"https://profiles.wordpress.org/josvelasco/\">Jos Velasco</a> · <a href=\"https://profiles.wordpress.org/josevarghese/\">Jose Varghese</a> · <a href=\"https://profiles.wordpress.org/josephscott/\">Joseph Scott</a> · <a href=\"https://profiles.wordpress.org/jdwire/\">Joshua Dwire</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/joshualipstone/\">joshualipstone</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jtquip88/\">jtquip88</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juanfra Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/julianoe/\">julianoe</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/junaidkbr/\">Junaid Ahmed</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/itsroy69/\">Jyotirmoy Roy</a> · <a href=\"https://profiles.wordpress.org/djidjou/\">Jérill</a> · <a href=\"https://profiles.wordpress.org/kkeerthiprabhu/\">K Keerthi Prabhu</a> · <a href=\"https://profiles.wordpress.org/kaelansmith/\">kaelansmith</a> · <a href=\"https://profiles.wordpress.org/kallyansin/\">Kallyan Singha</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karinchristen/\">Karin Christen</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/karthickmurugan/\">Karthick</a> · <a href=\"https://profiles.wordpress.org/karthikeya01/\">Karthikeya Bethu</a> · <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn Presner</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/khushdoms/\">Kaushik Domadiya</a> · <a href=\"https://profiles.wordpress.org/kjoyner/\">Kedar Joyner</a> · <a href=\"https://profiles.wordpress.org/kmurphyzuora/\">Keith Murphy</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kelvinballoo/\">kelvinballoo</a> · <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a> · <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> · <a href=\"https://profiles.wordpress.org/kbat82/\">Kevin Batdorf</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/khushipatel15/\">Khushi Patel</a> · <a href=\"https://profiles.wordpress.org/khushi1501/\">Khushi Thakrar</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/solankisoftware/\">Kirtikumar Solanki</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/kpapazov/\">kpapazov</a> · <a href=\"https://profiles.wordpress.org/kristastevens/\">kristastevens</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/gohelkunjan/\">Kunjan Gohel</a> · <a href=\"https://profiles.wordpress.org/mywp459/\">Kyle Mott</a> · <a href=\"https://profiles.wordpress.org/l0id/\">l0id</a> · <a href=\"https://profiles.wordpress.org/mlaetitia/\">Lae</a> · <a href=\"https://profiles.wordpress.org/lakshyajeet/\">Lakshyajeet Singh Goyal</a> · <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> · <a href=\"https://profiles.wordpress.org/landwire/\">landwire</a> · <a href=\"https://profiles.wordpress.org/lgersman/\">Lars Gersmann</a> · <a href=\"https://profiles.wordpress.org/lasacco/\">Laura Sacco</a> · <a href=\"https://profiles.wordpress.org/laurisaarni/\">Lauri Saarni</a> · <a href=\"https://profiles.wordpress.org/lapsrj/\">Leandro Amorim</a> · <a href=\"https://profiles.wordpress.org/leedxw/\">leedxw</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/lbones/\">Lela</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leogg/\">leogg</a> · <a href=\"https://profiles.wordpress.org/levinbaria/\">Levin Baria</a> · <a href=\"https://profiles.wordpress.org/lsarsfield/\">Liam Sarsfield (a11n)</a> · <a href=\"https://profiles.wordpress.org/lidarroy/\">Lidia Arroyo Vargas</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/lobsangw/\">Lobsang Wangdu</a> · <a href=\"https://profiles.wordpress.org/louischan/\">Louis Chance</a> · <a href=\"https://profiles.wordpress.org/louiswol94/\">Louis Wolmarans</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/luigipulcini/\">luigipulcini</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasfritzedev/\">LukasFritzeDev</a> · <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a> · <a href=\"https://profiles.wordpress.org/griffbrad/\">Lynn Bradley Griffith</a> · <a href=\"https://profiles.wordpress.org/leaprvt/\">Léa Prévot</a> · <a href=\"https://profiles.wordpress.org/maccyd/\">maccyd</a> · <a href=\"https://profiles.wordpress.org/madhavishah01/\">Madhavi Shah</a> · <a href=\"https://profiles.wordpress.org/madhavraj/\">madhavraj</a> · <a href=\"https://profiles.wordpress.org/magaliechetrit/\">Magalie Chetrit</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/aion11/\">Mainul Kabir Aion</a> · <a href=\"https://profiles.wordpress.org/mkrndmane/\">Makarand Mane</a> · <a href=\"https://profiles.wordpress.org/maksvi/\">maksvi</a> · <a href=\"https://profiles.wordpress.org/malayladu/\">Malay Ladu</a> · <a href=\"https://profiles.wordpress.org/malt3/\">Malte</a> · <a href=\"https://profiles.wordpress.org/maltfield/\">maltfield</a> · <a href=\"https://profiles.wordpress.org/manhar/\">Manhar Barot</a> · <a href=\"https://profiles.wordpress.org/manishxdp/\">Manish Dhorepatil</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">Manuel Camargo</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">Marcio Duarte</a> · <a href=\"https://profiles.wordpress.org/webdados/\">Marco Almeida | Webdados</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/olmostblue/\">Marco Olmedi</a> · <a href=\"https://profiles.wordpress.org/power2009/\">Marcus</a> · <a href=\"https://profiles.wordpress.org/marian1/\">marian1</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">Marianne</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</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/motylanogha/\">Mariusz Szatkowski</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a> · <a href=\"https://profiles.wordpress.org/muryam/\">Maryam Sultana</a> · <a href=\"https://profiles.wordpress.org/mathiaspeguet/\">Mathias Peguet</a> · <a href=\"https://profiles.wordpress.org/mathijsvdbeek/\">mathijsvdbeek</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/mattmiklic/\">Matt Miklic</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattshaw/\">Matt Shaw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/kittmedia/\">Matthias Kittsteiner</a> · <a href=\"https://profiles.wordpress.org/jillro/\">Maud Royer</a> · <a href=\"https://profiles.wordpress.org/maulikmakwana2008/\">Maulik Makwana</a> · <a href=\"https://profiles.wordpress.org/maxschmeling/\">Max Schmeling</a> · <a href=\"https://profiles.wordpress.org/djsuperfive/\">Maxime Freschard</a> · <a href=\"https://profiles.wordpress.org/maximumsoftware/\">maximum.software</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mabfahad/\">Md Abdullah Al Fahad</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/ismail0071/\">MD ISMAIL</a> · <a href=\"https://profiles.wordpress.org/mdibrahimk48/\">Md. Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/mehrazmorshed/\">Mehraz Morshed</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/donmhico/\">Michael</a> · <a href=\"https://profiles.wordpress.org/hrkhal/\">Michael James Ilett</a> · <a href=\"https://profiles.wordpress.org/chellycat/\">Michelle Langston</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/mirmpro/\">Mir Monoarul Alam</a> · <a href=\"https://profiles.wordpress.org/illuminea/\">Miriam Schwab</a> · <a href=\"https://profiles.wordpress.org/369work/\">Miroku</a> · <a href=\"https://profiles.wordpress.org/m1r0/\">Miroslav Mitev (a11n)</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mmorris8/\">mmorris8</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/hmrisad/\">Mohammad Risad</a> · <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> · <a href=\"https://profiles.wordpress.org/jabir20/\">Mohammed Jabir shaikh</a> · <a href=\"https://profiles.wordpress.org/mohkatz/\">Mohammed Kateregga</a> · <a href=\"https://profiles.wordpress.org/mohamedahamed/\">Mohammed Noumaan Ahamed</a> · <a href=\"https://profiles.wordpress.org/mohitdadhich10/\">Mohit Dadhich</a> · <a href=\"https://profiles.wordpress.org/mohitbsf/\">Mohit Sharma</a> · <a href=\"https://profiles.wordpress.org/mokshasharmila13/\">Moksha Shah</a> · <a href=\"https://profiles.wordpress.org/monarobase/\">Monarobase</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor Ssebunya</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/munirkamal/\">Munir Kamal</a> · <a href=\"https://profiles.wordpress.org/mustafabharmal/\">Mustafa Bharmal</a> · <a href=\"https://profiles.wordpress.org/mydesign78/\">mydesign78</a> · <a href=\"https://profiles.wordpress.org/trickster301/\">Nabhishek Singh</a> · <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a> · <a href=\"https://profiles.wordpress.org/senadir/\">Nadir Seghir</a> · <a href=\"https://profiles.wordpress.org/namankhare/\">Naman Khare</a> · <a href=\"https://profiles.wordpress.org/nanisamireddy/\">NANI SAMIREDDY</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/muddassirnasim/\">Nasim Miah</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/navi161/\">Navneet Kaur</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/naissvr/\">Naïs</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nickfmc/\">Nick Murray</a> · <a href=\"https://profiles.wordpress.org/nicmare/\">nicmare</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nikitasolanki1812/\">Nikita Solanki</a> · <a href=\"https://profiles.wordpress.org/nikunj8866/\">Nikunj Hatkar</a> · <a href=\"https://profiles.wordpress.org/nilambar/\">Nilambar Sharma</a> · <a href=\"https://profiles.wordpress.org/snilesh/\">Nilesh Shiragave</a> · <a href=\"https://profiles.wordpress.org/nimeshatxecurify/\">Nimesh</a> · <a href=\"https://profiles.wordpress.org/ninomiho/\">Nino Mihovilic</a> · <a href=\"https://profiles.wordpress.org/ninos-ego/\">Ninos</a> · <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">Nirav Sherasiya</a> · <a href=\"https://profiles.wordpress.org/nishantkapadiya/\">Nishant Kapadiya</a> · <a href=\"https://profiles.wordpress.org/govardhane/\">Nitin Govardhane</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman Rubel</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/yasunocco/\">Okawa Yasuno</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/triple0t/\">Oluwaseun Olorunsola</a> · <a href=\"https://profiles.wordpress.org/timhibberd/\">OnePressTech</a> · <a href=\"https://profiles.wordpress.org/onuro/\">onuro</a> · <a href=\"https://profiles.wordpress.org/gabertronic/\">Ophelia Rose</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/ottok/\">Otto Kekäläinen</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/ovidiu-galatan/\">Ovidiu Galatan</a> · <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a> · <a href=\"https://profiles.wordpress.org/owolter/\">owolter</a> · <a href=\"https://profiles.wordpress.org/ozgursar/\">Ozgur Sar</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/palak678/\">Palak Patel</a> · <a href=\"https://profiles.wordpress.org/paragjethva/\">Parag Jethva</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/patricedefago/\">Patrice Défago</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</a> · <a href=\"https://profiles.wordpress.org/patrickwclanden/\">patrickwclanden</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/bbpaule/\">Paul English</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/ciorici/\">Pavel Ciorici</a> · <a href=\"https://profiles.wordpress.org/vybiral/\">Pavel Vybíral</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/penelopeadrian/\">penelopeadrian</a> · <a href=\"https://profiles.wordpress.org/pers/\">Per Søderlind</a> · <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/peter8nss/\">peter8nss</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> · <a href=\"https://profiles.wordpress.org/philhoyt/\">philhoyt</a> · <a href=\"https://profiles.wordpress.org/vheemstra/\">Philip</a> · <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a> · <a href=\"https://profiles.wordpress.org/manhphucofficial/\">Phuc Nguyen</a> · <a href=\"https://profiles.wordpress.org/pierrelannoy/\">Pierre Lannoy</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/piyushpatel123/\">Piyush Patel</a> · <a href=\"https://profiles.wordpress.org/pmbs/\">pmbs</a> · <a href=\"https://profiles.wordpress.org/poligilad/\">poligilad</a> · <a href=\"https://profiles.wordpress.org/pooja-n/\">Pooja Kakkad</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja Killekar (Muchandikar)</a> · <a href=\"https://profiles.wordpress.org/poojapadamad/\">poojapadamad</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/gaisma22/\">Pradeep Pasam</a> · <a href=\"https://profiles.wordpress.org/prajapatvishnu/\">prajapatvishnu</a> · <a href=\"https://profiles.wordpress.org/pranavyeole/\">Pranav Yeole</a> · <a href=\"https://profiles.wordpress.org/pranjalpratapsingh/\">Pranjal Pratap Singh</a> · <a href=\"https://profiles.wordpress.org/prasadkarmalkar/\">Prasad Karmalkar</a> · <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a> · <a href=\"https://profiles.wordpress.org/prathameshbhagat1511/\">Prathamesh Bhagat</a> · <a href=\"https://profiles.wordpress.org/pratik-jain/\">Pratik Jain</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/pratiknawkar94/\">Pratik Nawkar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/priyankagusani/\">Priyanka Gusani</a> · <a href=\"https://profiles.wordpress.org/psorensen/\">psorensen</a> · <a href=\"https://profiles.wordpress.org/qhaensler/\">qhaensler</a> · <a href=\"https://profiles.wordpress.org/ronya4927/\">Rabbi Islam rony</a> · <a href=\"https://profiles.wordpress.org/rachid84/\">rachid84</a> · <a href=\"https://profiles.wordpress.org/rafaeldella/\">Rafael Della</a> · <a href=\"https://profiles.wordpress.org/rafa8626/\">Rafael Miranda</a> · <a href=\"https://profiles.wordpress.org/rafaelkr/\">rafaelkr</a> · <a href=\"https://profiles.wordpress.org/rahan00123/\">Rahan Al Rashid</a> · <a href=\"https://profiles.wordpress.org/ekla/\">Rahul Kumar</a> · <a href=\"https://profiles.wordpress.org/rahulsprajapati/\">Rahul Prajapati</a> · <a href=\"https://profiles.wordpress.org/rahultank/\">Rahul Tank</a> · <a href=\"https://profiles.wordpress.org/chauhanraj754/\">Raj Chauhan</a> · <a href=\"https://profiles.wordpress.org/rajanit2000/\">Rajan Vijayan</a> · <a href=\"https://profiles.wordpress.org/rajdiptank111/\">Rajdip Tank</a> · <a href=\"https://profiles.wordpress.org/ralphonz/\">ralphonz</a> · <a href=\"https://profiles.wordpress.org/ralucastn/\">Raluca</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/wprashed/\">Rashed Hossain</a> · <a href=\"https://profiles.wordpress.org/ravichudasama01/\">Ravi Chudasama</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/ravikhadka/\">Ravi Khadka</a> · <a href=\"https://profiles.wordpress.org/rcrdortiz/\">rcrdortiz</a> · <a href=\"https://profiles.wordpress.org/rebeensarbast/\">Rebeen Sarbast</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho</a> · <a href=\"https://profiles.wordpress.org/retnonindya/\">Retno Nindya</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riadev/\">riadev</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/ricjcs/\">Ricardo S.</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rinkalpagdar/\">Rinkal Pagdar</a> · <a href=\"https://profiles.wordpress.org/rishabhwp/\">Rishabh Gupta</a> · <a href=\"https://profiles.wordpress.org/rishavdutta/\">Rishav Dutta</a> · <a href=\"https://profiles.wordpress.org/rcreators/\">Rishi Mehta</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/shibleemehdi/\">RM Shiblee Mehdi</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinvandervliet/\">Robin van der Vliet</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/geekofshire/\">Rohan Jha</a> · <a href=\"https://profiles.wordpress.org/rollybueno/\">Rolly Bueno</a> · <a href=\"https://profiles.wordpress.org/romainmrhenry/\">Romain Menke</a> · <a href=\"https://profiles.wordpress.org/burtrw/\">Ronnie Burt</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/rutujaparamane2004/\">Rutuja Paramane</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ruba1956/\">Ruud</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sachinrajcp123/\">SACHINRAJ CP</a> · <a href=\"https://profiles.wordpress.org/sagardeshmukh/\">Sagar Deshmukh</a> · <a href=\"https://profiles.wordpress.org/sagarjadhav/\">Sagar Jadhav</a> · <a href=\"https://profiles.wordpress.org/sagarladani/\">Sagar Ladani</a> · <a href=\"https://profiles.wordpress.org/sageth/\">Sageth</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a> · <a href=\"https://profiles.wordpress.org/samueljseay/\">Sam</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/sanayasir/\">Sana Yasir</a> · <a href=\"https://profiles.wordpress.org/sandeepdahiya/\">Sandeep Dahiya</a> · <a href=\"https://profiles.wordpress.org/sandipsinh007/\">Sandip Sinh</a> · <a href=\"https://profiles.wordpress.org/sandipmaurya2611/\">sandipmaurya2611</a> · <a href=\"https://profiles.wordpress.org/andrewssanya/\">SAndrew</a> · <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a> · <a href=\"https://profiles.wordpress.org/sarayourfriend/\">Sara</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a> · <a href=\"https://profiles.wordpress.org/saranshsinha/\">Saransh Sinha</a> · <a href=\"https://profiles.wordpress.org/saratheonline/\">Sarath E</a> · <a href=\"https://profiles.wordpress.org/sarthak8858/\">Sarthak Jaiswal</a> · <a href=\"https://profiles.wordpress.org/sfougnier/\">Saul Fougnier</a> · <a href=\"https://profiles.wordpress.org/saurabhdhariwal/\">saurabh.dhariwal</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/se02vas/\">se02vas</a> · <a href=\"https://profiles.wordpress.org/seanwei/\">Sean Wei</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/vyatka/\">Sergey Mochalov</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/shadyvb/\">Shadi Sharaf</a> · <a href=\"https://profiles.wordpress.org/ferdoused/\">Shahi Ferdous</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/shanemac10/\">shanemac10</a> · <a href=\"https://profiles.wordpress.org/shekh0109/\">Shashank Shekhar</a> · <a href=\"https://profiles.wordpress.org/shatrumyatra/\">Shatrughan Myatra</a> · <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a> · <a href=\"https://profiles.wordpress.org/sajib1223/\">Shazzad Hossain Khan</a> · <a href=\"https://profiles.wordpress.org/shekharnwagh/\">shekharnwagh</a> · <a href=\"https://profiles.wordpress.org/whiteshadow01/\">Shivam Jha</a> · <a href=\"https://profiles.wordpress.org/showravhasan/\">Showrav Hasan</a> · <a href=\"https://profiles.wordpress.org/shraboni/\">Shraboni</a> · <a href=\"https://profiles.wordpress.org/shreya0shrivastava/\">Shreya Shrivastava</a> · <a href=\"https://profiles.wordpress.org/shubhtoy/\">Shubh Mittal</a> · <a href=\"https://profiles.wordpress.org/iamshubhamsp/\">Shubham Patil</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/sidhanttomar/\">Sidhant Tomar</a> · <a href=\"https://profiles.wordpress.org/sidharthpandita/\">sidharthpandita</a> · <a href=\"https://profiles.wordpress.org/silaskoehler/\">Silas Köhler</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/silvanarnet/\">silvanarnet</a> · <a href=\"https://profiles.wordpress.org/sky_76/\">sky_76</a> · <a href=\"https://profiles.wordpress.org/skylarkcob/\">skylarkcob</a> · <a href=\"https://profiles.wordpress.org/slrslr/\">slrslr</a> · <a href=\"https://profiles.wordpress.org/sonaliprajapati/\">Sonali Prajapati</a> · <a href=\"https://profiles.wordpress.org/sophiecaperaa/\">Sophie Caperaa</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/soyebsalar01/\">Soyeb Salar</a> · <a href=\"https://profiles.wordpress.org/spencerfinnell/\">Spencer Finnell</a> · <a href=\"https://profiles.wordpress.org/emptyopssphere/\">Sphere Plugins</a> · <a href=\"https://profiles.wordpress.org/staggerlee/\">staggerlee</a> · <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a> · <a href=\"https://profiles.wordpress.org/hubersen/\">Stefan Pasch</a> · <a href=\"https://profiles.wordpress.org/stefanvelthuys/\">Stefan Velthuys</a> · <a href=\"https://profiles.wordpress.org/stefanfisk/\">stefanfisk</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stevejburge/\">Steve Burge</a> · <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a> · <a href=\"https://profiles.wordpress.org/malgra/\">Steve Mosby</a> · <a href=\"https://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a> · <a href=\"https://profiles.wordpress.org/strarsis/\">strarsis</a> · <a href=\"https://profiles.wordpress.org/aquarius/\">Stuart Langridge</a> · <a href=\"https://profiles.wordpress.org/studiomondiale/\">studio_m</a> · <a href=\"https://profiles.wordpress.org/styankov/\">styankov</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/suhel5047/\">Suhel-Shaikh-Mohammad</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</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/sunilkumarthz/\">Sunil Kumar Sharma</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/susiyanti/\">susiyanti</a> · <a href=\"https://profiles.wordpress.org/swanandm/\">Swanand M</a> · <a href=\"https://profiles.wordpress.org/swoyamjeetcodes/\">swoyamjeetcodes</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/riko910/\">Syed Tarikul Islam</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">Sérgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">Sören Wünsch</a> · <a href=\"https://profiles.wordpress.org/tainacan/\">tainacan</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</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/tanbirali/\">tanbirali</a> · <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> · <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan Kumer Das</a> · <a href=\"https://profiles.wordpress.org/suhan2411/\">Tejas Gajjar</a> · <a href=\"https://profiles.wordpress.org/azora/\">the.pro</a> · <a href=\"https://profiles.wordpress.org/thejaymo/\">thejaymo</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</a> · <a href=\"https://profiles.wordpress.org/themes-1/\">them.es</a> · <a href=\"https://profiles.wordpress.org/octotoot/\">TheViv</a> · <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kräftner</a> · <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a> · <a href=\"https://profiles.wordpress.org/threadi/\">threadi</a> · <a href=\"https://profiles.wordpress.org/timwright12/\">Tim Wright</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">Tobias Bäthge</a> · <a href=\"https://profiles.wordpress.org/themightymo/\">Toby Cryns (@themightymo)</a> · <a href=\"https://profiles.wordpress.org/tomauger/\">Tom Auger</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemerö</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/spiraltee/\">Tosin Oguntuyi</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/alerzhus/\">Tsvetan Tsvetanov</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/tule/\">TuomasL</a> · <a href=\"https://profiles.wordpress.org/tusharbharti/\">Tushar Bharti</a> · <a href=\"https://profiles.wordpress.org/tusharaddweb/\">Tushar Patel</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a> · <a href=\"https://profiles.wordpress.org/umeshnevase/\">Umesh Nevase</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/up1512001/\">up1512001</a> · <a href=\"https://profiles.wordpress.org/utsavladani/\">Utsav Ladani</a> · <a href=\"https://profiles.wordpress.org/vaibhavsweb/\">Vaibhav Singh Web</a> · <a href=\"https://profiles.wordpress.org/valentingrenier/\">Valentin Grenier</a> · <a href=\"https://profiles.wordpress.org/valer1e/\">Valérie Galassi</a> · <a href=\"https://profiles.wordpress.org/vanonsopensource/\">Van Ons Open Source</a> · <a href=\"https://profiles.wordpress.org/twvania/\">Vania</a> · <a href=\"https://profiles.wordpress.org/vascobaiao/\">Vasco Daniel Baião</a> · <a href=\"https://profiles.wordpress.org/supernovia/\">Velda</a> · <a href=\"https://profiles.wordpress.org/vgnavada/\">vgnavada</a> · <a href=\"https://profiles.wordpress.org/vietcgi/\">vietcgi</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a> · <a href=\"https://profiles.wordpress.org/vincentbreton/\">Vincent Breton</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vishalkakadiya/\">Vishal Kakadiya</a> · <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a> · <a href=\"https://profiles.wordpress.org/vishnuprajapat/\">vishnu prajapat</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/waqassafdar/\">Waqas Safdar</a> · <a href=\"https://profiles.wordpress.org/wooxperto/\">WebCartisan</a> · <a href=\"https://profiles.wordpress.org/george9/\">webtasky</a> · <a href=\"https://profiles.wordpress.org/gauri87/\">WebTechee</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/winsleyj/\">WinsleyJ</a> · <a href=\"https://profiles.wordpress.org/wiuempe/\">wiuempe</a> · <a href=\"https://profiles.wordpress.org/wolf45/\">wolf45</a> · <a href=\"https://profiles.wordpress.org/wongjn/\">wongjn</a> · <a href=\"https://profiles.wordpress.org/wpexplorer/\">WPExplorer</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> · <a href=\"https://profiles.wordpress.org/wraithkenny/\">WraithKenny</a> · <a href=\"https://profiles.wordpress.org/x-raym/\">X-Raym</a> · <a href=\"https://profiles.wordpress.org/xate/\">xate</a> · <a href=\"https://profiles.wordpress.org/xavilc/\">xavilc</a> · <a href=\"https://profiles.wordpress.org/xwolf/\">xwolf</a> · <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a> · <a href=\"https://profiles.wordpress.org/yguyon/\">Yannis Guyon</a> · <a href=\"https://profiles.wordpress.org/getsyash/\">Yash B</a> · <a href=\"https://profiles.wordpress.org/yashjawale/\">Yash Jawale</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yusufmudagal/\">Yusuf Mudagal</a> · <a href=\"https://profiles.wordpress.org/zoe20/\">zoe20</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> · <a href=\"https://profiles.wordpress.org/zuveria/\">zuveria</a> · <a href=\"https://profiles.wordpress.org/lstraczynski/\">Łukasz Strączyński</a></p></p>\n\n\n\n<p class=\"wp-block-paragraph\">More than <a href=\"https://translate.wordpress.org/stats/\">70 locales have fully translated</a> WordPress 7.0 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200+ languages.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you to the <a href=\"https://make.wordpress.org/hosting/test-results/\">more than 21 web hosts</a> that have tested pre-release versions for WordPress 7.0, helping ensure that WordPress and hosting platforms are fully compatible, free of errors, and optimized for the best possible user experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/forums/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Participation in WordPress goes far beyond coding. And learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></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:\"20583\";s: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:78:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 7.0 Release Candidate 4\";s:7:\"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/2026/05/wordpress-7-0-release-candidate-4/\";s: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, 14 May 2026 16:47: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:8:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"7-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:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"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:6;a:5:{s:4:\"data\";s:18:\"release candidates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;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=20570\";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:367:\"The fourth Release Candidate (“RC4”) for WordPress 7.0 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC4 on a test server and site. Reaching this phase [&#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:10:\"Amy Kamala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6713:\"\n<p class=\"wp-block-paragraph\">The fourth Release Candidate (“RC4”) for WordPress 7.0 is ready for download and testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC4 on a test server and site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 7.0 is the best it can be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.0 RC4 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.0-RC4.zip\" data-type=\"link\" data-id=\"https://wordpress.org/wordpress-7.0-RC4.zip\">RC4 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br><code>wp core update --version=7.0-</code>RC4</td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn88xn\">WordPress Playground instance</a> to test the software directly in your browser.&nbsp; No setup required – just click and go!&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.0 is <strong>May 20, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/04/22/wordpress-7-0-release-party-updated-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who helps with testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/7-0\">7.0-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 7.0 RC4?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Want to look deeper into the details and technical notes for this release? Take a look at the <a href=\"https://make.wordpress.org/core/2026/05/14/wordpress-7-0-field-guide/\">WordPress 7.0 Field Guide</a>. For technical information related to the issues addressed since <a href=\"https://wordpress.org/news/2026/05/wordpress-7-0-release-candidate-3/\">RC3</a>, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=05%2F08%2F2026..05%2F14%2F2026&amp;milestone=7.0&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed 7.0 WordPress Core Trac tickets</a> since May 8, 2026</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.0?since=026-05-08&amp;until=2026-05-14\">7.0 Gutenberg commits</a> since May 8, 2026</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can get involved with the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. Your help testing the WordPress 7.0 RC4 version is key to ensuring that the final release is the best it can be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This <a href=\"https://make.wordpress.org/test/2026/02/20/help-test-wordpress-7-0/\">detailed guide</a> will walk you through testing features in WordPress 7.0.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter a potential bug or issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.&nbsp;</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general?&nbsp; Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?&nbsp; You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>. This release milestone (RC4) marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the <a href=\"https://make.wordpress.org/core/2026/03/25/wordpress-7-0-release-candidate-phase/\">7.0 release cycle</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC4 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Step into the next,</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>bold, new era of WordPress.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Seven-oh is blessed.</em></p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a></em> <em>for proofreading and review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20570\";s: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\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 02 Jul 2026 09:21:47 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 29 Jun 2026 20:29:28 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:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT dca 2\";}s:5:\"build\";i:1780330368;s:21:\"cache_expiration_time\";i:1783027308;s:23:\"__cache_expiration_time\";i:1783027308;}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("16255","_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3","1783027308","off"),
("16256","_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3","1782984108","off"),
("16257","_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9","1783027309","off"),
("16258","_site_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9","a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"WPTavern: #223 – Ivana Ćirković on How WordPress Credits Bridges Education and Industry in the WordPress Ecosystem\";s:7:\"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=206102\";s:7:\"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://wptavern.com/podcast/223-ivana-cirkovic-on-how-wordpress-credits-bridges-education-and-industry-in-the-wordpress-ecosystem\";s: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:38278:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case how WordPress Credits bridges education and industry in the WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/contact/jukebox and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Ivana Ćirković. Ivana is a digital marketer with 18 years of experience working both in and out of the tech industry, and currently leads marketing at WPBakery. She&#8217;s an active participant in WordPress events, having attended, and spoken at, numerous local and international word camps over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In this episode, our focus is on the WordPress Credits initiative. We learn how this program, launched by the WordPress Foundation, connects students with real world opportunities to contribute to the WordPress ecosystem, earn certifications, and increase their competitiveness in the job market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ivana discusses her own experience as a WP Credits mentor, working with students as they learn about digital marketing, remote work, and other open source contributions. We explore, how universities can modernise their curriculums, and real world value for students by participating in the initiative, and how businesses can get involved, not just to support the community, but to help shape and discover future talent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program&#8217;s evolving structure also gets attention, and we learn how students are guided through hands-on activities such as translation or documentation, and how their progress is tracked publicly via profiles on wordpress.org. Ivana shares the opportunities and challenges for both educators and businesses with thoughts on accountability, mentorship, and the need to bring new faces into the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in the future of WordPress, education, or bridging the gap between academia and industry, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Ivana Ćirković.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Ivana Ćirković. Did I get that right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:14] <strong>Ivana Ćirković:</strong> Yes. Excellent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:16] <strong>Nathan Wrigley:</strong> Thank you. This is my first interview at WordCamp Europe 2026. I&#8217;m guessing because we&#8217;re on the first day of the event and it&#8217;s quite early in the morning, it&#8217;s 10 in the morning, I&#8217;m guessing you cannot have done your presentation yet?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:30] <strong>Ivana Ćirković:</strong> Not yet. Tomorrow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:32] <strong>Nathan Wrigley:</strong> Do you get nervous with these kind of things?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:34] <strong>Ivana Ćirković:</strong> I get nervous all the time. I&#8217;ve been doing this for 12 years, it never gets easier. It is what it is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:39] <strong>Nathan Wrigley:</strong> Well, the presentation that you are doing is going to be the focus of what we&#8217;re talking about today. So do you just want to tell us a little bit about the topic that you&#8217;re talking about, but also just give us a bit of a general bio about who you are and what you do. So just tell us about you and about your presentation basically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:56] <strong>Ivana Ćirković:</strong> Okay. First thing first, I would like to introduce my presentation, or the talk, that is build up around WordPress Credits initiative, which is something that WordPress has rolled out late last year in December. And I applied to be a mentor to support students into their entering into WordPress. Got accepted, did my courses, passed them and started working with students on their, first entering the WordPress society, how everything works, contributing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And out of all of this, I came up with the idea of sharing the story about WordPress Credits. What it is, why it is important, not just for the WordPress community, but also for universities all around the world for businesses to support, because there is an angle and huge opportunity for them too. And hopefully inspire people to join and become part of it more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As far as I&#8217;m concerned, my name is  Ivana Ćirković and I am a digital marketer for 18 years. I&#8217;ve been working inside tech organisations, tech industry, but also outside of it. So I&#8217;m the multiverse. And lately, for past couple of years, I&#8217;ve been working in WPBakery, in marketing their product, and talking to people, sharing knowledge of what we do, how we do it, and so on. In the meantime I am attending many, many WordCamps, local and international ones, giving lectures, giving talks about digital marketing and all things related.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:39] <strong>Nathan Wrigley:</strong> So are you here at this event, not just to give your presentation, are you also here on behalf of WPBakery to represent them and the products that they have as well?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:47] <strong>Ivana Ćirković:</strong> Yes, we are sponsors. I am speaker, I was table lead for marketing on Contributors Day. So we are wide into the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:56] <strong>Nathan Wrigley:</strong> I have to say, having only been in this event space for about an hour, I&#8217;m actually deeply impressed by this particular event. It really is a gigantic venue. It&#8217;s so pleasurable as well to see the WordPress community in such large numbers here. And so we&#8217;re looking forward to a really good event.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, let&#8217;s kick off with the topic at hand then. So it occurs to me that many people listening, whilst they&#8217;re using WordPress and they&#8217;re kind of, I don&#8217;t know, they&#8217;re building websites for people, and they&#8217;ve got products and plugins and they&#8217;re just general users. It may be that the community piece, and the educational piece, is nothing that they&#8217;ve heard of before. So would you just tell us a little bit about what WP Credits is as far as you&#8217;re concerned, just to give us that broad background of what it is?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:40] <strong>Ivana Ćirković:</strong> Okay. So WP Credits program is initially made to bring new young people into the WordPress, to broaden the ecosystem with the new fresh blood, new contributors. And to do so, WordPress Foundation initiated this program to connect with universities all across the world. To connect students to some programs, to learn about WordPress through contribution. For that, they will get graded and get certification, which in the end will help them be more marketable, and have more modern knowledge of what is needed in today&#8217;s job market, and to be more competitive and more appealing to potential employers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So by doing so, WordPress Credits aims to broaden the ecosystem, to strengthen the WordPress community, and WordPress itself. But also to put new generations in more marketable place, and to help them get more profitable jobs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:45] <strong>Nathan Wrigley:</strong> Thank you. That was a really nice summary. In terms of your personal commitment to it and what have you, how did you fall into it as a thing that you were doing? And is this something that you get sponsored for from WPBakery, or is it personal and simply a sort of philanthropic thing that you are doing on the side?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:01] <strong>Ivana Ćirković:</strong> Yeah, so basically, I&#8217;ve been doing education my whole professional life. So it&#8217;s something that comes natural to me. In my local country, in Serbia, I do informal education for high schoolers and primary school&#8217;s children about digital marketing, digital literacy. This is like very natural to me. I&#8217;m being sponsored by WPBakery to do so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the program works like, initiative needs people, needs more mentors to get involved. More than it needs like product and businesses to support with their products. So if there are businesses who are maybe interested in support through their product, know that you need to put your people first to actually get involved and contribute, and then you can offer products as the side piece, so to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:52] <strong>Nathan Wrigley:</strong> So yeah, it seems that you&#8217;ve got a lifelong interest in education as well. Okay, that gives me some sort of hook there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, if I was to say WP Credits to the people outside, the people who already knew about it, I think would probably peg it as entirely educational in nature, just an education initiative. But curiously, your presentation, the notes that went with that and the blurb that went on the WordCamp Europe website, you kind of make the point that it&#8217;s much bigger than that, and you get into businesses and the students themselves and universities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the students in universities bit, well, that&#8217;s the education piece. But the business bit, what&#8217;s going on there? Because I definitely hadn&#8217;t drawn that intuition. I thought education from top to bottom. But business, okay, where does that fit in?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:37] <strong>Ivana Ćirković:</strong> I will get the hot insights from the talk. So basically, there is more than what meets the eye, so to speak. Businesses have unique opportunity to shape people they want to employ by getting involved as mentors. They also get the chance to see firsthand how those young minds work in real environments, in real contribution. And they get the chance to pick and choose who they want to employ by seeing them work on some real things. Whether it&#8217;s documentation, whether it&#8217;s translation or programming, developing something, AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We need more people who know what they do, although they are young. By having students in this program, they are working on not fictional things, but actual things that really contribute to community and businesses as a whole. By supporting this initiative, businesses then in relations to that can get more insights into who they want to employ. So on top of that, they are building the better market for themselves as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:42] <strong>Nathan Wrigley:</strong> I guess the student university piece is fairly obvious. You know, WP Credits and the people working on that project communicate with universities, they&#8217;re probably easy to find. You know, if you go to a phone directory for example, they&#8217;ll all be there. And it&#8217;s an easy thing to do. You phone up the university and see if there&#8217;s interest. And I know that some universities have taken up the WP Credits program. And it seems to be, as far as I can work out, it seems to be working very successfully.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How are you going to make the connection with businesses? Because that seems like a much more scattered, I don&#8217;t know if you&#8217;re going to be working with big businesses, you know, huge companies or if it&#8217;s going to be kind of more the businesses on the street, the smaller businesses, that kind of thing. So, I&#8217;ll just sort of hand it over at that point.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:23] <strong>Ivana Ćirković:</strong> So basically, web agencies, businesses around WordPress, we know they have an issue with new employees onboarding last, let&#8217;s say three to six months. That cost time and money and other people who are teaching them what needs to be done and how.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then we have WordPress Credit students who are already doing that junior type of work within contribution. They&#8217;re already onboarded through using Slack, knowing how to do remote work, what needs to be done. So businesses supporting WordPress Credits initiative can choose those students and spend less time and money and energy in onboarding them because they already went through that by doing WordPress Credits program.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:10] <strong>Nathan Wrigley:</strong> Yeah, I guess if you are a small web agency, it&#8217;s highly likely that you won&#8217;t necessarily have an induction program finely tuned, so that the young people that are coming through have this sort of specialised system where they can get some accreditation. It&#8217;s probably more, okay, I&#8217;m going to assign you to John this week and then next week you&#8217;re going to go over to Susan and follow what they&#8217;re doing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So is there a sort of structured program that, let&#8217;s say a web agency based in London could drop into and receive documentation about? Where are we at with that whole process for the busineses?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:44] <strong>Ivana Ćirković:</strong> Yeah, so since this initiative is still fairly new and we already have just one generation of students that are passed the program, this is something in development. So at the moment, we still don&#8217;t have like a specific structure that is based just for agencies and businesses in general, but it is something that we are considering and working towards too. So definitely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the other hand, the upper management organisational team might not be aware to the fullest what am I about to talk. So it might come as a surprise to them, but also it is something in the works as well. So give us some time and we will come up with something.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:26] <strong>Nathan Wrigley:</strong> Yeah, it feels like that would be something really credible. Because if you&#8217;re a small business owner, the last thing you want to be doing is kind of wasting time. And onboarding somebody might be something that you&#8217;d have to divert weeks into, you know, syphoning employees off, writing documentation, SOPs, those kind of things. And if you could just pick something up off the shelf that was tried and tested over many years, that would actually be really handy. So good luck. I hope that that initiative comes off.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In terms of students, if you were a student, let&#8217;s say you are at a university, or you are looking for work, what would you say would be some of the top line items that you would mention as to why WP Credits is worth looking at? Because, you know, if I&#8217;m at a university, there&#8217;s probably a thousand different things that I could be doing. WP Credits would be in competition with all of those. Why do you think it&#8217;s something that young people should be taking care of to look at?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:17] <strong>Ivana Ćirković:</strong> Yeah, I would think differently, in that sense. Universities curriculums are outdated comparing to the industry that we are living and working in. So WordPress Credits gives something that is in trend. That is happening now that people are using and working now. So students who choose to go to this program are gaining the most efficient and not outdated curriculum, and things that are being worked on in this moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And this is bigger than WordPress. It is initially for WordPress, but the knowledge students get, nobody can take that away. They learn to be outspoken. They learn to use all the necessary remote work tools that is applicable in all the industry.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we are really encouraging them to be very marketable employees and people who have portfolios, whether they choose that category that brings them portfolio. That is very transparent throughout whatever they do. Because on wordpress.org, every contribution is noted. So they&#8217;re building their own business brand by doing WordPress Credits. And in that way they are more marketable and can get more business opportunities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:42] <strong>Nathan Wrigley:</strong> I didn&#8217;t realise that the wordpress.org profile, is it the profile that you mean?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:47] <strong>Ivana Ćirković:</strong> Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:47] <strong>Nathan Wrigley:</strong> Each time you participate in one of these credit programs, that will be a badge, for want of a better word, that you can display and it will be freely available for the public. And presumably that will be difficult to acquire. That&#8217;s the wrong word. What I mean is, it won&#8217;t be simple to acquire. You will genuinely have had to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:07] <strong>Ivana Ćirković:</strong> Yes, you need to do the work. Let&#8217;s say students are interested in translation. So they go to Polyglots team and they get assigned to a mentor who is on weekly basis working with them on onboarding, helping them how to navigate through wordpress.org website, translation, what needs to be done. And basically, for that student, they need to translate to have approved translation, 150 strings approved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that doesn&#8217;t mean, okay, I will translate 150 words. No, no. You might need to translate 500 words out of which 150 is approved. And this is the bare minimum you need to do in order to get that badge that you contributed. Because that contribution, each contribution needs to be something very specific and tailored to help other people. That is very open and helpful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:00] <strong>Nathan Wrigley:</strong> So you mentioned translations there, which obviously is just one of multiple things that you could do, and we could list them all out, but we won&#8217;t. How is that curriculum, I&#8217;m doing air quotes, how is that curriculum decided upon? In other words, how do you decide, okay, I&#8217;m going to do a bit of translation, I&#8217;m going to do a bit of work on Core, I&#8217;m going to work for the Plugin Review Team? How is that decided? And, how is it decided by the institution, I guess that that&#8217;s going to equal something which our university will stamp as part of your degree, let&#8217;s say?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:33] <strong>Ivana Ćirković:</strong> Yeah. So basically, that is all arranged between the foundation and universities. You won&#8217;t get IT students doing marketing if that&#8217;s not their preferable choice. So students opt in. They&#8217;re given the whole like curriculum, categories of things they can contribute to. And the one they choose, this is the one they stick to throughout all the programs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you cannot switch in between like translation and documentation, or plugins, or WP-CLI whatever. The whole program stick to one chosen category. And that is all aligned with the, let&#8217;s say, topic of university. So IT is preferable for IT related contributions. Communications are also more favourable towards translation community, marketing. So it&#8217;s aligned that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:23] <strong>Nathan Wrigley:</strong> So flipping that round, so we&#8217;ve been talking about it from the point of view of the students. Now let&#8217;s just flip it around to the point of view of the university. I guess the same thing applies. They would have to communicate with the Foundation and say, okay, these are the kind of things that we wish our students to do. These particular strands, we will, you know, if they do 500 translation strings, that will count as something. I guess there&#8217;s got to be some interface between the Foundation and each university to establish what a credit equals.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:50] <strong>Ivana Ćirković:</strong> Yeah, common ground as to how WordPress Credits adds to the official curriculum of the university. And the thing that university get out of it, they are in position to offer modern, in trend, teachings, and that makes them more appealing to next generation of students. Because the more their existing students who are in the WordPress Credits program are succeeding, the more desirable the university gets to newer generations because they don&#8217;t teach outdated curriculums. They&#8217;re aligning to what is now efficient and needed in the job market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:30] <strong>Nathan Wrigley:</strong> I suppose also as well, when I was at university, there was a choice of about, I don&#8217;t know, four things to do each year. Something like that. You could do this or this or this. And you had to pick one of them and that was your pathway. This feels much more wide open because knowing the WordPress ecosystem, I know that there&#8217;s dozens, maybe multiple dozens of different things that you could be involved in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s quite appealing as well, isn&#8217;t it? You know, you can just take a little nibble of this one thing, and another nibble of this. And so there&#8217;s potentially multiple dozens of different pathways that you could pick. And whilst you say that, once you&#8217;ve decided you&#8217;ve got to stick to that, well, that&#8217;s fair enough, but the fact that you&#8217;ve got so many different ways that you could choose. That to me as a university student would&#8217;ve been really appealing. The fact that there&#8217;s so many different things that you could do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:15] <strong>Ivana Ćirković:</strong> Yeah. And once they got in, the overall input that we get from students that, first they don&#8217;t know that something like this exists. And once they go deep and start work, it&#8217;s like, wow. The whole mind just shifts, and they are amazed by all the possibilities that they can do within WordPress that isn&#8217;t talked about.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:36] <strong>Nathan Wrigley:</strong> Yeah. And I presume they get to do it in the way that the WordPress community works, which is remotely distributed and when you wish to do it. So long as I, you make the end of the university period of whatever a semester is or something, so long as you make the deadline, you can do it at night or in the early morning or.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:57] <strong>Ivana Ćirković:</strong> Exactly. So they are training to be like workers as we all are today, that are not restrained with some deadlines or by official university rules. They&#8217;re accountable for the final output. How will they come to that output? It&#8217;s entirely up to them because, yes, they are young but they&#8217;re not so young that they cannot be held accountable for their actions. So they need to do the work. We got weekly mentorships and assessments. So it&#8217;s a fun ride.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:31] <strong>Nathan Wrigley:</strong> So just touching on that, the sort of ongoing support that every student needs, because with the best rule in the world, there&#8217;s a proportion of students who will leave everything to the last minute. I&#8217;m looking at myself in the mirror when I say that. So that ongoing support, it&#8217;s a weekly sort of huddle. And is that like a one-to-one thing or is it a one to many thing?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:50] <strong>Ivana Ćirković:</strong> Yeah, so depending on the number of students, if a mentor has a one or two students, it can be one-to-one. If there are more like five or six, it&#8217;s better to have a group meeting on a weekly basis, and then Slack chats in between if anything is more needed than that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So basically we go through what they did last week, are there any setbacks or they need additional help, or do they need information from other parts of the team? Are they interested in something else? So we are really trying to get them involved in a way that matters to them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the things that each student needs to do, no matter section they chose, is to create a blog and to have weekly blog posts. So we discuss about that. What interests them. Whether they want to be something personal like, or professional like. So it&#8217;s very interesting to see how they think and how they express themself and how they build their online persona.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:55] <strong>Nathan Wrigley:</strong> Do those huddles take place on a, let&#8217;s say university by university basis? So for example, when you join and you mentor students, are they from the entire WP Campus project, or are you doing it from the university of this town and the university of that town?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:13] <strong>Ivana Ćirković:</strong> No, it&#8217;s mixed and matched.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:14] <strong>Nathan Wrigley:</strong> So, okay, well that&#8217;s a real strength as well it feels, because presumably then you&#8217;re on a call with people potentially from all over the world. Certainly people that you may not have encountered before. And those sort of serendipitous chance encounters can sometimes be some of the more meaningful ones. You know, work comes out of those things, and meetups come out of those things, and unexpected things come out of those things. So that must be really nice as well, watching those kind of things happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:42] <strong>Ivana Ćirković:</strong> Yeah, it&#8217;s like nothing I experienced before. And just to have the privilege to talk and work with those people, you never know what can come up out of them, and out of our connections. And I get inspired every time we have chats and they make me want to be a better educator.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:03] <strong>Nathan Wrigley:</strong> Oh, that&#8217;s interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:04] <strong>Ivana Ćirković:</strong> So, yeah, that&#8217;s my take out of all this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:06] <strong>Nathan Wrigley:</strong> Yeah. Okay, so there&#8217;s actually some psychological benefit for you as well. You get a real nice feeling of it. Okay, that&#8217;s really good.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So with the best will in the world, a university, every year there&#8217;s a cohort of children, young adults, whatever it may be, whichever institution it is, and a proportion of them will work diligently and hard and they will succeed. And some others maybe not so much.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How does that work? How do you ensure that everybody gets through it? And I don&#8217;t know if there&#8217;s enough data to answer this question. Again, I&#8217;m doing air quotes, how is the pass rate? Do most people that embark on this get through the necessary things? Or is there a fair bit of, I don&#8217;t know, discipline, for want of a better word, that needs to be applied and cajoling people to get through it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:46] <strong>Ivana Ćirković:</strong> Yeah, so I touched base on the accountability. So we have not strict rules, but recommendations. Weekly mentor chats, async communication through Slack. They all have weekly tasks that needed to be done. So if a student don&#8217;t answer the message or come to weekly mentor call three times, they are no longer WordPress Credit students. And that is the accountability.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You need to show yourself that you are willing to do the work. So if you don&#8217;t care, we won&#8217;t force you to do that if you don&#8217;t want to. We will set reminders, we will call back, we will reach out. But if you are no show, no tell anything for three times, then evidently you are not for that. You don&#8217;t wish to be there, and we won&#8217;t force you to be there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:40] <strong>Nathan Wrigley:</strong> And then in some way, are you required then to report that back to the institution and sort of say, okay, we&#8217;ve reached the end of the road here, and then it&#8217;s for them to figure out how that impacts. And presumably the students can.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:53] <strong>Ivana Ćirković:</strong> Their grades, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:53] <strong>Nathan Wrigley:</strong> Yeah, their grades what have you, okay. Touching back on the sort of business side, because we&#8217;ve dwelled a lot with students and universities and we&#8217;re going to stay with students, because that&#8217;s really the underpinning of the whole thing. How has the business side of things, is it taking off? You were describing that it&#8217;s kind of like a new thing. Have you got any sort of success stories or anecdotal evidence that people do in fact want this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:15] <strong>Ivana Ćirković:</strong> Yeah, so it&#8217;s still fairly new, so we don&#8217;t have those anecdotes yet. One of the reasons why I&#8217;m here at the WordCamp Europe is to find out and to get new perspective from businesses to like reach out to them to see what they think about the program. Would they want to be evolved. And how to give tips, maybe how we can improve. So stay tuned for more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:38] <strong>Nathan Wrigley:</strong> Yeah. And it is interesting, when you walk around an event like this, I don&#8217;t have the exact numbers, but the demographic is definitely skewing older. There&#8217;s not so many 18 year olds. And if this community wishes to carry on, at some point the age demographic will get to retirement age.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:57] <strong>Ivana Ćirković:</strong> Yeah. Just last night we were talking. I&#8217;ve been in the community for 11 years. And for 11 years all the same faces are here. And we really need new faces. But to get new faces, WordPress Credits is one part of the solution. But then again, we need to meet young people where they are. And they are not on the conferences, they are not on websites, they don&#8217;t use websites, they don&#8217;t care about websites. They are on very specific social media channels. And if we want to get fresh, new, young blood, we need to go there and to present what we do in a way that matters to those kids.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:35] <strong>Nathan Wrigley:</strong> In terms of success, if you were to, I don&#8217;t know, let&#8217;s imagine that we could cast our minds forwards five years, let&#8217;s go for that. What would you like to have happened with WP Credits? Would you like, for example, to see a bunch of 20 somethings wandering around in an event like this? Does it matter that they&#8217;re involved in the community and doing WordPress events and contributing to Core and those kind of things? Or is success just more broadly, people are using WordPress? You know, it&#8217;s still a project. What&#8217;s your take on, what does success look like in five years?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:08] <strong>Ivana Ćirković:</strong> For me, I would like to see more young people involved. Yes, we will always have users because in its core, WordPress is a very useful tool. And I&#8217;m happy to stumble upon that tool many, many years ago to use it both personally and professionally. But I really want to see young people involved in a way that we were involved 10, 15 years ago, and to see what can happen with WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I strongly believe it&#8217;ll be transformed, not with AI or all other flashy trends. WordPress has always been about people. And we need new people, we need young people to get it where it needs to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We are getting older and don&#8217;t have strengths or stamina to do so for how many long years. By having new kids, fresh perspectives, I&#8217;m really excited to see what they can come up with next.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:08] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of handing over the baton in a way, isn&#8217;t it? Seeing what the future holds. Yeah, I definitely have concerns that the age demographic is skewing. And no matter what has happened in the past, I don&#8217;t see it being backfilled with younger people moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think that&#8217;s largely because we just assumed that that age demographic would fill itself, because we were excited about it, so the younger generation will be excited about it. Well it turns out the world moved on. And TikTok came along, and YouTube became a massive thing and mobile phones and all the different platforms became a thing. And so the attention was put elsewhere by many young people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I suppose we needed to come up with a system where we are, in a sense, just putting it in front of their face and saying, look, it&#8217;s here. You know, you&#8217;re a university student, you are somebody looking for work in a small business. Here&#8217;s a credible way of getting involved in something which potentially could change your life. That seems like the most credible way of doing it at the moment. And I guess we&#8217;ll just have to see what the next five years brings.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In which case, is there anything that you felt you wanted to touch on that you wanted to get out of this chat before we finished?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:15] <strong>Ivana Ćirković:</strong> No, I think you did it masterfully. And we touched base on everything that needed to be said.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:20] <strong>Nathan Wrigley:</strong> Perfect. In that case, I will say Ivana, thank you for chatting to me today. Fingers crossed that your presentation goes well tomorrow, and that you pack the place out, and that by this time next week, you are extremely busy with the WP Credits program. Thanks for chatting to me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:34] <strong>Ivana Ćirković:</strong> Thank you. Thank you for inviting me.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Ivana Ćirković.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ivana is a digital marketer with 18 years of experience working both in and out of the tech industry, and currently leads marketing at WPBakery. She’s an active participant in WordPress events, having attended and spoken at numerous local and international WordCamps over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In this episode, our focus is on the WordPress Credits initiative. We learn how this program, launched by the WordPress Foundation, connects students with real-world opportunities to contribute to the WordPress ecosystem, earn certifications, and increase their competitiveness on the job market.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ivana discusses her own experience as a WP Credits mentor, working with students as they learn about digital marketing, remote work, and open source contributions. We explore how universities can modernise their curriculums and add real-world value for students by participating in the initiative, and how businesses can get involved, not just to support the community, but to help shape and discover future talent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program’s evolving structure also gets attention, and we learn how students are guided through hands-on activities such as translation or documentation, and how their progress is tracked publicly via profiles on WordPress.org. Ivana shares the opportunities and challenges for both educators and businesses, with thoughts on accountability, mentorship, and the need to bring new faces into the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in the future of WordPress, education, or bridging the gap between academia and industry, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://learn.wordpress.org/course/wordpress-credits/\">WordPress Credits</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wpbakery.com\">WPBakery</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://europe.wordcamp.org/2026/session/what-it-really-means-to-be-a-part-of-the-wp-credits-program/\">What it (really) means to be a part of the WP Credits program?</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, 01 Jul 2026 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:1;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Open Channels FM: BackTalk on Support, Decision-Making, Reputation and Risk\";s:7:\"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://openchannels.fm/?p=2556251\";s:7:\"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://openchannels.fm/backtalk-on-support-decision-making-reputation-and-risk/\";s: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:140:\"Insights on community support, decision-making, starting new projects, and the importance of agency reputation in hosting. Engage and share!\";s: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, 01 Jul 2026 13:11: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Aaron D. Campbell: Open Source Support Can’t Depend on Charity\";s:7:\"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://aarondcampbell.com/?p=2933\";s:7:\"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://aarondcampbell.com/2026/06/open-source-support-cant-depend-on-charity/\";s: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:470:\"<p>Companies depend on open source software. Supporting the projects that support your business shouldn\'t be treated as charity; it should be part of sustaining the infrastructure, ecosystem, and user trust your products rely on.</p>\n<p>The post <a href=\"https://aarondcampbell.com/2026/06/open-source-support-cant-depend-on-charity/\">Open Source Support Can&#8217;t Depend on Charity</a> appeared first on <a href=\"https://aarondcampbell.com\">Aaron D. Campbell</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, 30 Jun 2026 13:19:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. 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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Open Channels FM: Thoughts on the Human Side of AI Acceleration\";s:7:\"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://openchannels.fm/?p=2555792\";s:7:\"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://openchannels.fm/thoughts-on-the-human-side-of-ai-acceleration/\";s: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:155:\"AI is evolving super fast, boosting productivity but also causing burnout and a loss of human touch. We need to balance tech with authentic human insights.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jun 2026 11:06: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.org blog: The First AI Leaders Graduates\";s:7:\"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=20951\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/06/ai-leaders-graduates/\";s: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:4846:\"<p class=\"wp-block-paragraph\">On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through <a href=\"https://ai-leaders.org/\">AI Leaders</a>, the nation&#8217;s first workforce-focused AI literacy course tied to a recognized credential. Each of them earned it by building real projects, applying generative AI to genuine work, and contributing to the open source software that powers more than 40% of the web. Students who completed the course also earned $1,000, made possible by a donation from Automattic and UIC. This celebration was the moment the program had been building toward since it was <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">first announced in February</a>.</p>\n\n\n\n<div class=\"wp-block-group has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center has-white-color has-text-color has-link-color has-normal-font-size wp-elements-2 wp-block-paragraph\"><strong>Explore the project portfolios built by this year’s AI Leaders</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://aileaderswp.blog/\"><img alt=\"\" class=\"wp-image-20975\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/aileaderswpblog-scaled.png?ssl=1\" /></a></figure>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c 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://aileaderswp.blog/\"><strong>AI Leaders · Class of 2026</strong></a></div>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">When the pilot launched, the goal was to test whether open source learning could connect directly to job pathways rather than stopping at a certificate. What makes this program distinct is that it is built on open source from the ground up: students learn on WordPress, contribute to it, and use generative AI the way the WordPress ecosystem uses it every day, leaving with a credential that employers can verify and a community that continues long after the course ends.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The pilot reflects a shared belief that AI and open source skills should be within reach regardless of where someone lives or what they can afford.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress was built to expand access to publishing and participation on the open web.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The program is a collaboration with distinct roles for each partner. It is funded through the <a href=\"https://osf.it.uic.edu/\">UIC Tech Solutions Open Source Fund</a>, with support from the <a href=\"https://www.uic.edu/\">University of Illinois Chicago</a> and <a href=\"https://automattic.com/?p=867048\">Automattic</a>, while the WordPress project and the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> contribute to the development of the curriculum itself.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first cohort was just the beginning. The gathering in Chicago brought this group together with employers and agencies, and further job placements are already in motion. </p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center wp-block-paragraph\">The next round of AI Leaders is on the horizon. Subscribe for updates to be the first to hear when the next cohort opens and how to take part.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://ai-leaders.org/#apply\"><strong>Subscribe for AI Leaders Updates</strong></a></div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-dark-strokes-grey-color has-alpha-channel-opacity has-dark-strokes-grey-background-color has-background\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>WordPress offers a wide range of educational opportunities for people at every stage, from first steps to advanced contribution. Explore workshops, lesson plans, and community-created resources designed to help you build practical skills while connecting with others who are learning and contributing at <a href=\"https://wordpress.org/education/\">WordPress.org/education/</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2026 20:29: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:12:\"Mary Hubbard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: Six Months In: What Open Channels FM Has Been Talking About in 2026\";s:7:\"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://openchannels.fm/?p=2555969\";s:7:\"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://openchannels.fm/six-months-in-what-open-channels-fm-has-been-talking-about-in-2026/\";s: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:197:\"In the first half of 2026, conversations on AI\'s impact, WordPress 7.0 launch, and the importance of the open web emerged. Key themes included rethinking work, community, and embracing uncertainty.\";s: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, 29 Jun 2026 07:31: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: Om Links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153359\";s:7:\"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:31:\"https://ma.tt/2026/06/om-links/\";s: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:3576:\"<p class=\"wp-block-paragraph\">There has been a lot of excitement about the OmFest idea. If you&#8217;d like to attend or contribute, <a href=\"https://docs.google.com/forms/d/e/1FAIpQLScyY9c5MowPFW6BmIitqaaF3T-ykM_d8eD2pq2XqwSt7N50zg/viewform?usp=header\" rel=\"noopener\" target=\"_blank\">please fill out this form as soon as possible</a> so we can gauge the type of venue we need.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s truly a testament to how Om lived life to see the outpouring of remembrances <a href=\"https://om.co/2026/06/24/1966-2026/\">in comments on the post</a> and <a href=\"https://www.techmeme.com/260625/p50#a260625p50\">around the web on Techmeme</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I do wish he had been more public earlier in his health journey. You never know what you&#8217;ll learn. I&#8217;ll take that as a lesson for myself if I&#8217;m ever in a similar situation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There have been some great long-form writings about Om:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://daringfireball.net/2026/06/om\">John Gruber ties together Apple, the Yankees, and luggage</a>.</li>\n\n\n\n<li><a href=\"https://staceyoniot.com/thank-you-om-malik/\">Stacey Higginbotham</a> from the original GigaOM.</li>\n\n\n\n<li><a href=\"https://mathewingram.com/work/2026/06/25/om-malik-1966-2026/\">Mathew Ingram</a>.</li>\n\n\n\n<li><a href=\"https://www.nytimes.com/2026/06/26/technology/om-malik-dead.html\">The New York Times did an obituary</a>.</li>\n\n\n\n<li><a href=\"https://www.hodinkee.com/articles/in-loving-memory-of-om-malik-friend-writer-venture-capitalist-and-ever-the-believer\">Ben Clymer on Hodinkee</a>.</li>\n\n\n\n<li><a href=\"https://runtimewire.com/article/om-malik-taught-silicon-valley-to-read-itself\">Ryan Merket on RuntimeWire</a>.</li>\n\n\n\n<li>Om introduced <a href=\"https://krutal.blog/2026/06/26/om/\">Krutal Desai as his son</a>.</li>\n\n\n\n<li><a href=\"https://susanhobbs.blog/2026/06/27/the-gravity-of-om/\">Susan Hobbs</a>.</li>\n\n\n\n<li><a href=\"https://pradeep.md/2026/06/25/om.html\">Pradeep Elankumaran</a>.</li>\n\n\n\n<li><a href=\"https://blog.naveen.com/2026/06/om-2/\">Naveen Selvadurai</a>.</li>\n\n\n\n<li><a href=\"https://explorers.com/my-friend-om/\">Christopher Michel</a>.</li>\n\n\n\n<li><a href=\"https://x.com/jgheller/status/2070267958891524448\">Jonathan Gheller</a>.</li>\n\n\n\n<li><a href=\"https://x.com/mamoonha/status/2070255545643364515\">Mamoon Hamid</a>.</li>\n\n\n\n<li><a href=\"https://boingboing.net/2026/06/25/om-malik-1966-2026.html\">Rob Beschizza on Boing Boing</a>.</li>\n\n\n\n<li><a href=\"https://www.airsugar.com/p/om-malik-1966-to-2026\">Brian Sugar</a>.</li>\n\n\n\n<li><a href=\"https://hugo.blog/2026/06/25/r-i-p-om-malik-%f0%9f%96%a4/\">Hugo Barra</a> on how Om got him to write.</li>\n\n\n\n<li><a href=\"https://everwas.com/2026/06/om/\">Ian Kennedy</a>, also with some great quotes.</li>\n\n\n\n<li><a href=\"https://toni.org/2026/06/25/om-malik/\">Toni Schneider</a>.</li>\n\n\n\n<li><a href=\"https://seanbonner.com/2026/06/29/death-and-what-we-leave-behind/\">Sean Bonner</a>.</li>\n\n\n\n<li><a href=\"https://battellemedia.com/archives/2026/06/remembering-om-malik\">John Battelle</a>.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">I know I&#8217;m missing a ton, I&#8217;ll update the above. I also added a <a href=\"https://ma.tt/2026/06/om-forever/\">few more vignettes and pictures to the last post</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153374\" height=\"453\" src=\"https://i0.wp.com/ma.tt/files/2026/06/IMG_0420-1024x768.jpg?resize=604%2C453&#038;quality=89&#038;ssl=1\" width=\"604\" /></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 Jun 2026 16:34:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Open Channels FM: Why “It’s Dead” Says More About You Than the Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555736\";s:7:\"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://openchannels.fm/pop-the-email-is-dead-bubble/\";s: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:143:\"Email isn’t dead. Sure, email marketing might not work for everyone, but it’s still crucial for many businesses and personal communication.\";s: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, 26 Jun 2026 09:08: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: All Roads Lead to Om\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2026/06/om-forever/\";s: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:7104:\"<p class=\"wp-block-paragraph\">Yesterday, my best friend and brother from another mother, Om Malik, <a href=\"https://om.co/2026/06/24/1966-2026/\">passed away</a>. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">They say that blood is thicker than water, and what we had was way thicker than blood. — Bob Weir</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Om&#8217;s request was for a small family prayer ceremony. In mourning, that will be all there is. In celebration and tribute, I love that everyone is <a href=\"https://www.techmeme.com/260625/p50#a260625p50\">sharing their Om stories online</a>, like the <a href=\"https://explorers.com/my-friend-om/\">writing and photography Christopher Michel shared</a>, which very much embody the OG spirit of blogging that Om pioneered.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">A Renaissance Man</h2>\n\n\n\n<p class=\"wp-block-paragraph\">I knew Om contained multitudes, but sitting by his side these last few weeks, I&#8217;ve been amazed to learn how many deep and completely separate communities he was part of. He meant so much to so many, in so many different ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Om loved putting on a good conference, and I&#8217;d like to celebrate his life with an awesome event on September 29, 2026 (his 60th) in San Francisco, like an <strong>OmFest</strong>. I&#8217;ll find a space where every community from the many facets of Om can come together. In the spirit of Open Source and co-creation, we can have some booths, flash talks, a gallery of his photography, pen showcase, and whatever other fun ideas people want to contribute. I can&#8217;t wait for the beautiful collision of his tech / journalism / Indian party planner / pen / coffee / shoes / photography circles, and probably some niches I couldn&#8217;t even imagine.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">A Few Vignettes</h2>\n\n\n\n<p class=\"wp-block-paragraph\">I have so much to say about Om, but right now I&#8217;m working on <a href=\"https://om.co/2026/06/24/1966-2026/\">moderating comments</a> and keeping his website tip-top, so here are a few snippets:</p>\n\n\n\n<p class=\"wp-block-paragraph\">Fundamentally, Om was a lover of humanity. He became a fast &#8220;regular&#8221; everywhere he went. He wouldn&#8217;t just buy coffee, he would also learn the name and story of every barista, the dogs and people in South Park. His deep curiosity and respect weren&#8217;t just for the fine and famous. It extended to every soul that crossed his path. His encyclopedic knowledge and photographic memory created connections not just in San Francisco, but all around the world wherever we traveled. (I need to pull the stats, but we went to five continents together, including Antarctica.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">He loved people and their stories. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om and I were an odd couple. We met online through forums and email because Om was one of the earliest adopters of WordPress. We finally met in person in 2004 when I was 20 and he was 38. He connected me to the first investors I ever spoke to, Phil Black, who formed True Ventures, and Tony Conrad, and introduced me to Toni Schneider, my business soul mate, who became like a co-founder as the CEO of Automattic in our first 8 years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And of course on the internet. I don&#8217;t know how we would count, but I would guess Om read at least 1 or 2% of the whole thing.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om was a voracious learner. I was there when he first used chopsticks, and only a few months later, he knew every sushi restaurant in San Francisco and exactly what he liked at each.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om is probably in the top ten in the world for finding things incredibly early. That&#8217;s why he has the best usernames! How does one guy get the @om username on WordPress.com in 2005 (user ID 719), <a href=\"https://x.com/om\">Twitter in 2006</a>, <a href=\"https://www.instagram.com/om\">Instagram in 2010</a>? The first WordPress meetup was at <a href=\"https://www.chaatcornersf.com/\">Chaat Cafe (now Corner)</a> in 2005, <a href=\"https://ma.tt/2005/01/meetup-aftermath/\">8 people showed up, and Om was one of them</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">One of the biggest lessons I learned from Om is the deep appreciation of craft. When he took an interest in photography or pens, he would somehow find his way to the most obscure, highest-quality expression of that form. &#8220;What Would Om Want?&#8221; is a question I will always ponder. I want to craft products that would make Om proud.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">Om&#8217;s last word was &#8220;love.&#8221;</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153336\" height=\"402\" src=\"https://i0.wp.com/ma.tt/files/2026/06/MCM_9460-1024x681.jpg?resize=604%2C402&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">In a jitney on our trip to India in 2009</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153338\" height=\"402\" src=\"https://i0.wp.com/ma.tt/files/2026/06/om-citizen-1024x681.jpg?resize=604%2C402&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">The day Om became a US citizen </figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153340\" height=\"402\" src=\"https://i0.wp.com/ma.tt/files/2026/06/MAT_2822-1024x681.jpg?resize=604%2C402&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">In NYC with the True crew, 2008</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153342\" height=\"403\" src=\"https://i0.wp.com/ma.tt/files/2026/06/MCM_0056-1024x683.jpeg?resize=604%2C403&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">Matching dyed blonde hair, 2016</figcaption></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153345\" height=\"805\" src=\"https://i0.wp.com/ma.tt/files/2026/06/IMG_0284-768x1024.jpg?resize=604%2C805&#038;quality=89&#038;ssl=1\" width=\"604\" /><figcaption class=\"wp-element-caption\">With a golden heart, 2025</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Nothing Gold Can Stay, by Robert Frost</h2>\n\n\n\n<pre class=\"wp-block-verse\">Nature’s first green is gold,<br />Her hardest hue to hold.<br />Her early leaf’s a flower;<br />But only so an hour.<br />Then leaf subsides to leaf.<br />So Eden sank to grief,<br />So dawn goes down to day.<br />Nothing gold can stay.</pre>\";s: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, 26 Jun 2026 03:02:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Open Channels FM: The Rise of Messaging as the Universal Tech Interface\";s:7:\"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://openchannels.fm/?p=2555622\";s:7:\"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://openchannels.fm/the-rise-of-messaging-as-the-universal-tech-interface/\";s: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:246:\"Messaging is emerging as the universal interface for interacting with technology, simplifying complex tasks into straightforward communications akin to texting, thereby enhancing productivity and reducing technical barriers in digital engagement.\";s: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, 25 Jun 2026 12: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: Aligning WooCommerce Marketing Strategies for Community Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556016\";s:7:\"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://openchannels.fm/aligning-woocommerce-marketing-strategies-for-community-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"In this episode we’re chatting about a topic that matters to everyone in the WooCommerce world and beyond: how OSS communities can come together to market themselves more effectively.\";s: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, 25 Jun 2026 09:08: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: #222 – Destiny Kanno, Anand Upadhyay, Maciej Pilarski on How WordPress Education Programs Are Growing\";s:7:\"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=204958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/podcast/222-destiny-kanno-anand-upadhyay-maciej-pilarski-on-how-wordpress-education-programs-are-growing\";s: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:80884:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how WordPress education programs are growing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we are joined by three WordPress Education Initiative leaders, Destiny Kanno, Anand Upadhyay and Maciej Pilarski.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Together, they have spent years at the heart of WordPress training and outreach, working in roles spanning community education management, plugin development, and credit program administration. Their efforts have helped shape student engagement and university partnerships across the globe, introducing thousands of learners to WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on the current landscape of WordPress education with particular attention to three key initiatives, the WordPress Credits Program, Campus Connect, and Student Clubs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Each initiative is designed to provide unique entry points for students of all ages and education levels. From high schoolers building their first site in a library to university students earning official credits for open source contributions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discussed the different approaches these programmes take. WP Credits ties student work directly to academic credit and mentorship. Campus Connect provides flexible, community driven, events in diverse locations and Student Clubs foster sustainable, peer led, learning within schools and other institutions. We explore how these models feed into each other, building a sustainable ecosystem for ongoing growth in the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also get into the importance of repeat campus partnerships, the need for scalable facilitator training, and the role of recognition, certificates, badges, and public showcases in keeping students motivated and validated in their journey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re curious about the growing movement to bring WordPress knowledge to the next generation, or are looking to get involved with education in your local community, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Destiny Kanno, Anand Upadhyay and Maciej Pilarski.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Destiny Kanno, by Anand Upadhyay and Maciej Pilarski. Hello, one and all. Nice to have you with us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:29] <strong>Destiny Kanno:</strong> Hello. Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:30] <strong>Anand Upadhyay:</strong> Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:31] <strong>Maciej Pilarski:</strong> Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:32] <strong>Nathan Wrigley:</strong> So a few months ago, back in, I think it was September 2025, I was joined by two of the three participants on the call today. I was joined by Destiny and I was joined by Anand. We were also joined at that point by Isotta, but she&#8217;s not on the call today. We&#8217;ve obviously got a wonderful replacement, Maciej who&#8217;s going to do a fabulous job explaining the bits and pieces here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the intention of that episode, which you can find on the WP Tavern website, it&#8217;s episode number 183, was to find out about all of the overlapping education initiatives in the WordPress space. And it was born, I think, largely out of a sense of curiosity on my part, but also a somewhat sense of confusion, because there were lots of things which were going on. Some of them seemed to be slightly overlapping. There was a conflict of names in some cases. So that episode was laying out the groundworks of what has been happening in the WordPress space.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When that conversation finished and we&#8217;d click the stop record button, I said, that was absolutely fascinating. This seems to be moving at such a rate, wouldn&#8217;t it be good to revisit this whole subject in about six months time?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Well, we missed that target, but here we are, maybe eight months later. I think my intuition at that point was correct, because being a close observer of what&#8217;s going on in the WordPress community, I think it&#8217;s fair to say that the educational space has been somewhat turbocharged during the last eight months.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so today&#8217;s episode, with the help of the three people I&#8217;ve just mentioned, is to describe what&#8217;s going on, what&#8217;s changed, maybe some things that have been mothballed, but certainly a lot of things that are new and interesting and have gained a lot of momentum.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think, dear listener, the intention of this episode is to get you involved. Is to get to the end of this episode and for your curiosity to have been turned into action. To have gotten you out of your chair, written an email, turned up to an event, helped organise a thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So please have that in the back of your mind. If you&#8217;re sitting listening to this in a car, at your desktop, there is actual action that could be taken at the end of this. I think the intention of all four of us on this panel would be dearly for that to happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, let&#8217;s establish the credentials of the people that we&#8217;re going to be talking to today. So we&#8217;ll just do a little potted bio of you one at a time. So we&#8217;ll begin with Destiny, if you could just tell us a little bit about you, your relationship with education in the WordPress space, I suppose would be apropos.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:01] <strong>Destiny Kanno:</strong> Yeah, absolutely. So again, Destiny Kanno. I&#8217;m currently working as an education program manager sponsored by Automattic. And I work directly with the Make WordPress Community Team. And I also work adjacently with the training team as well, because education training materials, they go pretty hand in hand. And I&#8217;ve been doing this now for about four years and, yeah, it&#8217;s just evolved since my original time working on Learn WordPress, and that relaunch that happened, to now, yeah, these wonderful programs that are spreading like wildfire as you said.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:37] <strong>Nathan Wrigley:</strong> Fantastic. Thank you so much. Okay, we&#8217;ll move over to Anand for the same sort of introductory moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:43] <strong>Anand Upadhyay:</strong> Yes. So my name is Anand Upadhyay, and I run the WordPress plugin development company, WPVibes. Apart from that, I&#8217;m very much involved in the WordPress community and I contribute in multiple ways. It can be documentation, it can be Core, Polyglots. But I&#8217;m also keenly involved in the community part, and specifically I can say with the education initiatives, I started with WP Campus Connect in WordPress Campus Connect in 2024. And since then, after that we started joining hands with Destiny and we started evolving this program in a much bigger shape. So that&#8217;s it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:16] <strong>Nathan Wrigley:</strong> Okay. Thank you so much. And last, but by no means least, Maciej.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:20] <strong>Maciej Pilarski:</strong> Yeah. Thanks for having me. My name is Maciej Pilarski. So I&#8217;ve been doing anything related to WordPress pretty much since 2007, so that&#8217;s been a while. But the biggest breakthrough for me was 2014 when I actually volunteered to WordCamp Europe in Sovia, Bulgaria. That opened my eyes to the whole community, everything that is happening around WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And since then, pretty much I&#8217;ve been working for multiple companies from the WordPress ecosystem. I joined Automattic in 2016. For many years I&#8217;ve been a Happiness Engineer, and since October last year, I&#8217;ve joined Isotta as one of the admins of the WordPress Credit program. And since that time, I will have been helping her out to grow that initiative.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And Destiny mentioned, it spreads like fire because at that time we had six universities onboarded, now we are at 21. The 21st, we got it after WordCamp Asia actually through a connection made there. And it&#8217;s our first institution from Africa, from Uganda. A huge shout out to Stephen Dumba, who I connected with during the event. And after that, pretty much a week after we signed our first partnership from Africa. So we&#8217;re actively growing and getting new institutions on board.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:42] <strong>Nathan Wrigley:</strong> Thank you so much. Gosh, there was an awful lot in there, wasn&#8217;t there? That was really interesting. We&#8217;ll try and unpack quite a lot of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Firstly, a sort of slightly personal message from me. I don&#8217;t usually reveal much about myself on this podcast. I take the position that I&#8217;m a, kind of like an interested party, but don&#8217;t really give much of my own thoughts. However, this is different because I cannot think of a more interesting, meaningful, moral, let&#8217;s go with that word as well, use of time than educating people. It simply is the most profoundly useful thing to do with your life.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, obviously people will have different opinions about that, but the juxtaposition of free open source software, in this case WordPress, and education is a real sweet spot for me. I just think that is such an amazing thing to be involved in, to have going on in the background.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you think about it, an open source project, like how many open source projects have this level of stuff going on in the education space, this real international footprint. Things going on which we&#8217;ll find out about in a minute. It&#8217;s really fascinating.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I am sure that the listenership to this podcast, the vast majority of people listening will never have encountered much of this before. Maybe they&#8217;ve seen stuff on Learn because they want to technically learn about WordPress in an online capacity, but we&#8217;re going to be delving into real world events affecting real adults, real youngsters.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so anyway, that&#8217;s my little bit at the beginning, just how curious it is that the project is so big that we&#8217;ve got this international footprint of education. And so I suppose what we should do right at the beginning is lay out the different initiatives and just name them, and try to figure out how they differ from each other. Just so that we&#8217;ve got some kind of awareness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I don&#8217;t know which one of you wants to take that, but if maybe you take one each or something, I don&#8217;t know. If we just want to lay out the, just erect that tent basically so that we know what the initiatives are called, and how they differ from one another. So I&#8217;ll open that up. Whoever wants to step in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:48] <strong>Maciej Pilarski:</strong> I can start with the Credits Program. So the Credits Program is based, it&#8217;s a contribution based program, internship, initiative by the WordPress Foundation that connects higher education students with the global open source community. So basically it&#8217;s an opportunity for the students as part of the educational curriculum to contribute to the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There are two types of courses that the students can do. One of them is 50 hours, the second one is 150 hours. Usually the students do that during a full academic semester. And as part of that, students are first onboarded into the WordPress ecosystem and the wider open source ecosystem where they learn not only about WordPress, but open source as a whole, and how crucial it is for the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then the second phase is picking the contribution area to which they would like to contribute. All the contributions areas basically are the ones that are listed at make.wordpress.org. So any team that is listed there, students can pick from that area. During that phase, they work on a particular area that they have selected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And finally, during phase three, they wrap up the whole achievements, the contribution, what they did, they publish a final post. And what is also very important as part of the credit scores, students have also assigned a mentor from the WordPress community that guides them through the whole process. We don&#8217;t leave them alone. We connect them with actual mentors from the WordPress community that are vetted by us, that guide them through the whole journey into the contribution and the whole WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it works on multiple levels. For me, this connection is also special because it builds this bridge between the previous generation of WordPress contributors to the new one where they are introduced and can start working on any fields of contribution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What is also important is that this is not limited to technical universities. Pretty much any type of university can participate in the program. The first university that we started with was University of Pisa, and it was the humanity studies. So the students from humanity field were the first group who started the Credits Program. There&#8217;s room for pretty much anyone from any field.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:18] <strong>Nathan Wrigley:</strong> Okay. There&#8217;s a lot there. Wow. I&#8217;ve just been taking notes and I&#8217;ve almost filled an entire A4 page. So WP Credits, the WordPress Credits Program, I guess the name sort of gives it away. The idea here is that you trade time for university or higher education credit. So credit being, I suppose if you were to atomise your three year degree, you might do, I don&#8217;t know, 12 modules or something like that. The idea is that one of those modules, perhaps it&#8217;s more, becomes something in the WordPress, but also curiously the free open source software space as well. I didn&#8217;t actually know that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The idea is that you link up with real world institutions. So the first one was Pisa, and maybe we can get into which other ones have come along. And in exchange for 50 hours or 150 hours, you will be given that credit, which can then go to the overall awarding of a degree or whatever it is that you are hoping to get.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You&#8217;re then linked up with team members, WordPress community team members who will mentor you and shepherd you through this process. And the idea is that it culminates, I think you said in a final post, which I suppose in a sense is a bit like a dissertation or something like that, you sum up all the different bits and pieces. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:29] <strong>Maciej Pilarski:</strong> Once that happens, the students also receives an official certificate from the WordPress Foundation, signed by Matt himself, that certifies that they completed the course. And what is also important to know, the whole progress through the course and what they did during the course, it&#8217;s also stored on the wordpress.org profile. So any contributions that they did, for example, photos that they&#8217;ve uploaded, this all will be visible on the wordpress.org profile. And they also receive a special badge dedicated to students who graduated from that program.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it really gets them started into the WordPress ecosystem, and at the same time creates something like a small portfolio for any future company that would like to, for example, hire them. Because they have a proven history of contributing to the ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:20] <strong>Nathan Wrigley:</strong> Okay, so that&#8217;s an interesting quid pro quo, isn&#8217;t it? So the idea is you do all this work, which on the face of it, I suppose looks very philanthropic, you know, you&#8217;re giving up your time, but you get a real thing at the back end of it. You get a certificate. You can then presumably apply for jobs and indicate, okay, I&#8217;ve done this, I&#8217;ve contributed in this meaningful way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What I think is really interesting there, and it kind of gets lost, I&#8217;ve worked in education in the past and I know the red tape that&#8217;s involved in doing anything in the education space. There is so much red tape. And I can only imagine what&#8217;s happened in the background to enable these kind of things. You know, the back and forth, the tennis of emails that go on and on and the proof that&#8217;s required to categorically show that this thing that we are doing is worth something. You know, it&#8217;s not just this Mickey Mouse. We use that expression, Mickey Mouse kind of qualification that really, it doesn&#8217;t actually require any hard work. It&#8217;s just there, nothing really in it, but you get an accreditation anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I can only imagine the hard work that has gone in every single time you touch a new institution, trying to convince them that this is legitimate, that this is real. You&#8217;ve just kind of glossed over all of that by just describing what is in existence, not necessarily what has gone on to make it happen. I know that there&#8217;s probably more than the three of you involved in this, but my profound thanks for all of that hard work, which presumably is utterly and completely invisible. And I can only imagine what&#8217;s going on there. So yeah, thank you for all of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:54] <strong>Maciej Pilarski:</strong> Thank you for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:54] <strong>Nathan Wrigley:</strong> So that was WP Credits. So that was one wing of the things that we&#8217;re going to discuss today. Should we move on to another one and maybe somebody else wants to take the helm?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:03] <strong>Anand Upadhyay:</strong> I think Destiny can take Campus Connect and then I will take Student Clubs.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:06] <strong>Nathan Wrigley:</strong> Okay. Destiny, let&#8217;s move over to you and see what you can tell us about something different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:11] <strong>Destiny Kanno:</strong> Yeah, so I&#8217;d love to tell you more about WordPress Campus Connect. And the way we ended with WordPress Credits, I think is also very critical to the story of Campus Connect because, you know, it started with Campus Connect first, and that&#8217;s how organisers such as Anand and Pooja like were able to get those connections with the universities through being boots on the ground, you know, having those relationships. Proving through action that these activities that we&#8217;re doing with the students are having real impact and are showing real results.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Slowly building up these kind of case studies in a way has helped open a lot of doors, especially with Campus Connect now, we&#8217;ve done a lot of events, especially since we last talked. Like I think this year alone, we&#8217;ve already had 22 Campus Connect events. So, like it&#8217;s not even half the year and it&#8217;s quickly becoming one of the biggest run events, WordPress official series.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But these events are like a way of opening the door, right? Hey, here&#8217;s a free learning opportunity for your students. And as you said, like the red tape is there. A lot of institutions are like, wait, so what&#8217;s in it for you? Why is, there&#8217;s a little bit of dubiousness sometimes in the reaction, right? You&#8217;re going to give your time to educate our students, why? But once they see, it&#8217;s like, no, we really are just passionate about spreading WordPress, showing students what&#8217;s capable with their website, how it applies to different skillsets as well. Like it&#8217;s not just for coders, it is for marketers, it is for designers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, there&#8217;s so many career opportunities that once we just get the foot in the door and we&#8217;re able to showcase that, a lot of institutions are like, okay, now I get it. I do want to highlight in Anand&#8217;s case, like they&#8217;re going to have their third WordPress Campus Connect in Ajmer this year. You&#8217;ve got repeat institutions. I&#8217;ve heard you also have institutions that are like, when are you going to come to our place and teach WordPress? You know, once the fire is lit and people see how bright and shiny it is, like people want to get involved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But as you said, like getting it to click for people, that is like the most difficult part. And I&#8217;ll give an example of, right now in Japan, we had our first WordPress Campus Connect event on the 9th of May. So I&#8217;m like, woo hoo. Like it finally happened. But we have this community in Japan that is like very passionate, very active. So when I first was like introducing the concept of Campus Connect, people were like, okay, but like how do we do this? What&#8217;s it about? It takes like a lot of presentations, a lot of going to people in person and talking. Helping them even shape the conversation that they&#8217;re going to have with the institution to sell this amazing gift of WordPress on their campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And after this one on the ninth, like now we have a case study in Japan that others can now use to be a starting point for those conversations going forward. So I think, once you have that one step, the gate just slowly opens until it&#8217;s just, the doors bang open in each way. But yeah, we&#8217;ve seen really great success with Campus Connect and it&#8217;s just like honestly, it just keeps growing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:30] <strong>Nathan Wrigley:</strong> Can I just ask a quick question? So I just want to draw a very clear line for everybody that&#8217;s listening to this, what the difference may be between Campus Connect and WP Credits. Because from the description that we&#8217;ve had so far, it may be that you&#8217;ve fallen into the trap of thinking, well, they sound like they might be the same thing. So could you just, Destiny, just tease out where Campus Connect differs? Maybe in the nature of the event, the timing of the event, the availability, the age group, those kind of things that separate WP Credits from the Campus Connect initiative.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:02] <strong>Destiny Kanno:</strong> Yeah. Thank you, that&#8217;s like a really great distinction to make. So whereas WordPress Credits is geared toward higher education, Campus Connect is geared toward, honestly any level of students as long as they&#8217;re able to browse the web safely, and enjoy and participate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that means, Elementary school students now are pretty good at devices. High school students, college students, vocational students. We honestly kept the door pretty open in terms of what a campus means. We&#8217;ve even had a Campus Connect event in Uganda in a library, the Lira Public Library because students were able to go there right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">We were trying to make it as barrier free for students wherever their campus is. And so that&#8217;s, I think, the main difference. It&#8217;s more wide ranging in terms of who can participate as a student. And then also the fact that it could be a one-off event, so a one day event. A lot nowadays are multiple day events, they&#8217;ll maybe go two times out of a month, or a couple days consecutively. And then after that it&#8217;s up to really the organisers in the institution whether or not we have another addition on their campus the same year, or the next year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:15] <strong>Nathan Wrigley:</strong> I&#8217;m going to tease out a few things. I just want to point out to, me as an English person, that is to say, not an English speaker, but somebody from England, campus has a really defined definition, and it&#8217;s usually bound to a university. Whereas it sounds like the description here, campus literally means the place where education happens, not it&#8217;s 18 years old and older, you know, people doing degrees, bachelors and PhDs and that kind of thing. Basically, if there&#8217;s an institution somewhere, that&#8217;s what the campus is in this case. Okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the WP Credits program sounds like you forge your relationship with the university, and correct me if I&#8217;m wrong, it sounds like it takes place inside that institution, and it&#8217;s part of that program and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Campus Connect initiative is much more ad hoc. It could be a one-off, it could be monthly, it could be inside a library, it could be inside the school, it could be an inside an institution. It feels a bit more like, I don&#8217;t know, a WordPress Meetup, but geared towards a younger audience or something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the minimum age requirement is really driven by your capacity to type on a keyboard and hold a mouse and those kind of things. And that&#8217;s kind of curious to me because I think my educational experience was always younger children. It&#8217;s really interesting how patterns are laid down at a very, very early age. Patterns that go on into much later life get laid down, typically at incredibly young ages. So this is fascinating for digging into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;s not just about, say, the code, it sounds like code is on the menu, but it could be about marketing, it could be about design. Basically the gamut of anything online, CMSy, those kind of things. Okay, is there anything you want to add? Did I misunderstand anything there, or misstate anything there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:02] <strong>Destiny Kanno:</strong> No, I think you&#8217;re completely right. We&#8217;re trying to convey that WordPress isn&#8217;t just a blogging software that I think is still a lot of people have a mentality of. Like there are many ways to utilise it that goes beyond that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And one thing I did want to add are a couple numbers. So since WordPress Campus Connect became official in May of 2025, an official WordPress event series, I should say, we&#8217;ve had 42 completed events, with 71 participating institutions, and over 5,500 students have been reached.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:37] <strong>Nathan Wrigley:</strong> That&#8217;s something else. 42 events, 71 institutions, and I think you said five and a half thousand individuals. Good grief. I don&#8217;t know what the measure of success is for this, but that feels like success to me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I mean, imagine turning up to a WordCamp, like a flagship WordCamp and five and a half thousand people descending on you. You&#8217;d feel slightly overwhelmed. That&#8217;s a lot, isn&#8217;t it? Gosh, that&#8217;s pretty remarkable. Wow. Congratulations.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:05] <strong>Destiny Kanno:</strong> And the majority, the outcome, the students make a website. So we could almost count those students as also new WordPress websites that are live now on the web. So within a year, organisers around the world have been able to make that happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:19] <strong>Nathan Wrigley:</strong> Could I just perhaps draw another distinction as well, just very quickly, because it sounds like the WordPress Credit system, because it&#8217;s binding itself to institutions, it sounds like there might be more paperwork going on there, and maybe more high level meetings that need to take place. Whereas Campus Connect feels much more community driven. It&#8217;s the kind of thing that, quite literally, anybody listening to this podcast with a fair wind could have one of those going in a handful of months. If they&#8217;ve got the right initiative and they can find the audience for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Again, is that about right? There&#8217;s sort of more opportunity to become involved with the Campus Connect initiatives. You don&#8217;t need to have that academic background or have a point of contact at a university. You basically just need a building, some interest and a bunch of students.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:02] <strong>Destiny Kanno:</strong> Yeah, the key thing is, you know, having a real connection to the campus that you&#8217;re going to present at. But you&#8217;re exactly right. We tried really hard to lower the barrier to organise these events. Because I don&#8217;t know if you&#8217;ve organised a WordPress event before, there&#8217;s kind of a lot of hoops you have to jump through. And we&#8217;re like, okay, how can we think about this in a different way?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think that also has positive repercussions for how we organise other events too, that are, changes are being thought about too so that we can enable people and empower them to put these events, instead of bogging them down and process and a little bit of bureaucracy to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:38] <strong>Nathan Wrigley:</strong> So what&#8217;s really curious about that as well is we&#8217;re all in different parts of the world, aren&#8217;t we? People on the call today are in Japan and I&#8217;m in Europe and, Anand, are you in India? I think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:47] <strong>Anand Upadhyay:</strong> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:47] <strong>Nathan Wrigley:</strong> Yeah. Each of those events, I guess would look quite different. The kind of nature of the attendees, the nature of the kind of building it might be in, the institution. And it really is, you just grab what&#8217;s around you I suppose, and work with that. If you&#8217;ve got a connection to an institution, you can go for it. Maciej, I feel like I crosstalked you. I think you wanted to say quite a few times and I&#8217;ve just interrupted. I&#8217;m very sorry.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:08] <strong>Maciej Pilarski:</strong> No worries about that. So I wanted to add that those initiatives set backgrounds for each other. Because in some uni institutions, the interest sparks with a Campus Connect event, and that gets the institution interested in those initiatives, which sets background for WordCamp Credit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it happens also the other way around, where we start with an institution that starts credits and then we get the students interested in WordPress in general, the community, which leads to a Campus Connect event during the Credits Program. What is important is that those initiatives don&#8217;t compete with each other. They support each other.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:51] <strong>Nathan Wrigley:</strong> Right, so there&#8217;s a lovely virtuous cycle there, isn&#8217;t there? Where the two things can be going on in harmony, one promoting the other and they&#8217;re definitely not in competition. Okay. That&#8217;s really interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One final question on Campus Connect, and I&#8217;ll direct this at Destiny, just because she&#8217;s been handling that. With the WP Credits thing, there is this moment where you hold the certificate in your hand and you go, yay, did it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Is the same thing true of Campus Connect or is it more of a show up to the one event, you know that you did that, that was great, you can file that away in your own head as a thing? Or is there some sort of accreditation, or certificate giving, or badge giving, or profile updating that might go on on wordpress.org? Is there any sort of thing that the attendees receive, and I suppose that the people that are organising might receive as well?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:37] <strong>Destiny Kanno:</strong> Yes. So we do have a certificate of participation that students can receive signed by WordPress Foundation Executive Director, Mary Hubbard. And that just needs to be requested by the organisers ahead of time, because we need to get the signature and all that. So yes, they can come away with that. And we&#8217;ve heard really positive things about that, like it motivates them. They&#8217;re like, yeah, I did something, which they did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:01] <strong>Nathan Wrigley:</strong> There we go. That was WP Credits and WP Campus Connect.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Can I just say at this point, dear listener, if at this point you&#8217;re thinking hang on a minute, there&#8217;s a lot going on here, don&#8217;t worry, there&#8217;ll be show notes. If you go to the WP Tavern website, there&#8217;ll be show notes. I&#8217;ll try to list out as many sensible links to get you to the root of each one of these initiatives, so that you can begin your journey and fan out from there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m not sure what episode number this will be, but if you just go and search for, oh, I don&#8217;t know, Destiny or Anand or Maciej, you could probably find the episode that way. And all the show notes will contain all of the links.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right, in which case, I think it might be Anand&#8217;s turn. What have you decided to take on Anand?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:39] <strong>Anand Upadhyay:</strong> So I will be sharing my thoughts on the third part of this whole education initiative ecosystem. So that is a Student Club. Just a few minutes before you were giving the analogue of meetup with this Campus Connect. So I would like to share the same analogue with us because we are more accustomed with like other terms of WordCamps and Meetups and contributer days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress Campus Connect is kind of like a WordCamp happening in the campus, because it&#8217;s like a big day event that holds everything happening, different kind of sessions, maybe workshops happening. So I would compare it with that thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And same way, credits thing, Credit Program is kind of like ongoing contribution series because more focused on the contribution part because the student devote 150 hours of their program. A lot of period goes to the contribution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now the same way we, if we talk about the Student club, it&#8217;s similar to like the Meetups that we have. But these are the in campus meetups for the students and by the students. How do things get started? Like the Campus Connect introduce the WordPress to those campuses and to those students, but since most of the campus, it&#8217;s a once in a year event. So once this event has sparked something about the WordPress in the students. So keeping that momentum going on, that&#8217;s where the Student Clubs come in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So with the Student Club, it&#8217;s kind of like, as I mentioned, it&#8217;s like an in campus meet program. So a student can gather themselves, they can form a club and a couple of students can be nominated as club organisers, student club organiser from their campus. And then they organise the in-campus events, maybe like once in a month or twice a month, depending on academic calendar. There are a lot of hurdles in doing those things continuously.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But they usually do once or twice a month. They do a kind of a meetup in their campus. The students gathered together. They learn from variable resources available from WordPress. And from those resources, they share with the other students. It&#8217;s kind of a group learning, group study, that we use. Education live, we always do that. It&#8217;s kind of a group study. They&#8217;re learning from themselves. If someone has learned something, they are helping others to learn those things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I would just like to give some of the examples from my city. There are multiple Student Clubs are going on. When we went to the campus, we just taught like a small group of students about the WordPress, because we&#8217;d have some limitations of the resources, of the setting arrangement. We cannot call all the students of the campus and, okay, come together and I have a amazing workshop. So we have given the WordPress walk through to the limited number of students.</p>\n\n\n\n<p class=\"wp-block-paragraph\">After that, they form a Student Club in their campus because they got very much interested. Then the first session they did was like, they started teaching to their juniors, like the students who have just entered the campus. They took a session for them. So they told, whatever we have told them, they have taught the same thing to the juniors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">After that, in the next few session, they experimented different things. Like in some session they&#8217;re just doing a fun quiz around WordPress. And in some sessions they are doing a kind of like a, I would say like a hackathon kind of thing. So they are just picking up a website. Or you can, just similar to the speed build challenge that Jamie do. So they have just one website open on the screen and everybody&#8217;s like cloning that website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there are different ways students are engaging through those student clubs. So it is helping to keep the momentum going on so that the student keep learning about WordPress and they are also connecting with the community members for the guidance about how they can learn more. What should they learn next if they are sharing their experience. Like we have covered these things and, what should we go next?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in the recent WordCamp Asia, they&#8217;re also one of the Student Club lead from my city. She joined the event and there are conversation with the, like other community members who has offered them like, okay, we can come to your campus, or we can do, have a webinar for your campus where we can teach you particular subjects, particular topics. Maybe they can talk about SEO, maybe they can talk about plugin development.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this is also opening the horizon for them, to learn from people across the world. So that is how the Student Clubs are happening. The examples I&#8217;ve gave, again, from my own city because I&#8217;m closely mentoring them, but there&#8217;s similar things are happening across the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it is helping to create a kind of sustainable environment for the long-term sustainable environment in the campus. So the next time when we go to that campus, we are not going to teach like the basics of WordPress, because we want like, the ecosystem should be built within the campus, so every student know about the WordPress. Because last time when we went to the campus, we have to tell everything about WordPress because why you should learn WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the Student Clubs, my ambition is that, wherever the Student Club is from, next time a Campus Connect event is happening, next time we should not tell them about what is WordPress and why they should learn this thing. There should be already a sustainable ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I feel that all these three programs are like very much interconnected. And the real impact of these programs, we will be able to see in the next two or three years. And there will be a regular ongoing activities around WordPress in the campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And these are also kind of a balance program as well. Like the Campus Connect is introducing WordPress to the students, Credits Program is motivating them more towards like the contribution part. And I would say that Student Clubs is more inclined towards getting new users to the WordPress. Because if we keep on focusing on the contribution, contribution, but if we discard the like increasing the number of new users, so we are not going to win. We need a balanced state.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Student Club is trying to, learning how to build website, how to mastering the skills of the WordPress. And later on, many of them are going to join the contribution part as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this whole ecosystem is built around bringing more people to the contribution, bringing more people to use WordPress, build websites, as in, for the individuals as a business as well. So that&#8217;s how all these three programrs are very much interconnected, and growing together fast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:16] <strong>Nathan Wrigley:</strong> It feels like, of the three things that we&#8217;ve talked about, so WP Credits, Campus Connect, the Student Club, this final one that you&#8217;ve just covered, it feels like that&#8217;s got a very flat hierarchy to it. In other words, there&#8217;s like this peer learning. So it feels like more or less anybody can show up and demonstrate anything, which might then lead to somebody else thinking, okay, that was interesting, I&#8217;ll take on next month&#8217;s one because I&#8217;ve now seen that&#8217;s doable. Less hierarchy, if you know what I mean? So a much more flat structure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:45] <strong>Anand Upadhyay:</strong> Because when we started Campus Connect, we also get a lot of attraction in the local community as well. And people join our Meetup groups. But then it becomes difficult for us, how to plan about the topics for our meetup. We have some experienced professionals coming in. We have some students coming in, and we plan the topics that suits the professionals. The student will feel like, okay, what&#8217;s they&#8217;re talking, we are not getting anything in our mind. If we bring the topics, very basic topics and the professionals who are joining the community meetups, they&#8217;ll feel like, okay, these are very basic stuff, why am I coming here?</p>\n\n\n\n<p class=\"wp-block-paragraph\">Student Clubs giving them their own platform, giving them a own opportunity. Okay, these are all the familiar faces. It is also giving the opportunity to come on the stage, come onto the stage and get out of your fear as well. It is also generating leadership qualities in them. Okay, we have to keep this momentum going on and we have to keep the activities going on. So there are a lot of ways, apart from learning WordPress, there are a lot of other ways it is helping the students as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:40] <strong>Nathan Wrigley:</strong> When you have to stand up in front of a bunch of people and deliver something, obviously there&#8217;s a whole bunch of us that are just really confident at doing that, quite happy to stand up and do that kind of thing off the bat. But equally, there&#8217;s people for whom that is just the most terrifying experience possible. You know, standing up in front of two or three people, oh boy, you know, anything above that is just off the books.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I was just wondering about that, whether or not there&#8217;s, in this particular style of event, the Student Club, whether there is a growing corpus of, I don&#8217;t know, previously done topics or topic suggestions or slide decks or anything like that, which might enable people to feel that level of confidence? I don&#8217;t know if that&#8217;s something which is being put together. Just resources which enable somebody who doesn&#8217;t have the confidence, let&#8217;s go with that word, who then may gain that confidence. And I&#8217;m going to pass this to Destiny because she&#8217;s waving her hand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:30] <strong>Destiny Kanno:</strong> I was really hoping I could shamelessly plug this project. This is like, you&#8217;ve said the most opportune thing. So I&#8217;m actually developing right now what I&#8217;m like tentatively calling the Meetup Activity Library. It comes with like kits on certain topics. So for example, WordPress Playground was the first one I built. But it comes with the facilitation guide, which is a doc. So the facilitator can read through, understand the steps they&#8217;re going to go through in the activity, how to pace it. And then a presentation deck which they would display, if that&#8217;s available to them, to the folks that they&#8217;re presenting to. And it&#8217;s a hands-on activity only. So it&#8217;s not only presentation. The facilitator of course guides and talks them through things, but then people are getting hands-on experience with that topic along the way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:16] <strong>Nathan Wrigley:</strong> That is a beautiful remover of barriers, because I think just having that little document, that little crutch, you don&#8217;t have to feel that you, okay, I&#8217;ve got to come up with a topic. Not only have I got to come up with a topic, but then I&#8217;ve got to research the topic, deliver the topic. If you can have it all on a thing that you can crib from, I don&#8217;t know, it just arms you with that confidence as you walk in. I think that&#8217;s such a brilliant topic. And, Maciej.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:40] <strong>Maciej Pilarski:</strong> Both Destiny and Anand mentioned two keywords, sustainability and facilitator. The goal of also getting all those educational initiatives going is also create in a sustainable way. We&#8217;re not pushing for numbers, but growing them in a smart way where we don&#8217;t get too many students so we get overwhelmed. We need to have enough mentors to accommodate those students, and also enough facilitators to be able to scale the program, to grow it in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;s exactly what Destiny is now doing, the Facilitator Training Program, which gets more people from the educational sectors, community organisers, everyone on board, to jump on those educational initiatives and help us to grow. Because the number of every, all those students involved in participating in those programs is increasing and we need to be able to accommodate them. And through the Facilitator Training Program, this allows us to do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:42] <strong>Nathan Wrigley:</strong> It&#8217;s so interesting in open source software spaces as opposed to corporate spaces. I suppose the metric of success for anything like this in the corporate universe would be how many people showed up and gave us money in exchange for this knowledge or, you know, something akin to that. Basically a metric of humans in a room and money gained. And of course, the measurement of this is so not that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I did wonder, Destiny obviously very proudly rattled off the statistics for Campus Connect, you know, the five and a half thousand attendees and all of that. I wondered if there were success criteria of some kind in the background, which guide you. You know, it&#8217;s not like, okay, well we didn&#8217;t meet that we&#8217;re going to abandon it all. But more, things like you would like to see happen, so aspirational goals. It sounds from what Maciej was saying that maybe the attendance growing slowly over time is some kind of measure of success. Maybe there is none of that, but I&#8217;ll just open that one up to see if you want to take that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:38] <strong>Destiny Kanno:</strong> I think one definite measure of success is repeat events on certain campuses. So if the campus is saying, we love that, please come back, or please come again soon. I think that is a really great indicator that, not only did the students get something great out of it, but the school believes in it. And that&#8217;s what we want to do. We want to create these systems that, not only bring people into WordPress, but also continue this cycle of, you know, growth within the community, but also ownership by the institution.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Another measurement of success is the institution is like, okay, great, how do we learn how to do that ourselves? So we have some folks now working in the institution that are organising WordPress Campus Connect events that are helping facilitate these Student Clubs. So the faculty and educators themselves, they&#8217;re directly getting involved. And that for us as community members too, whose volunteer time is quite limited, as Maciej was saying, like it is a great multiplier that makes everything much more sustainable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:41:45] <strong>Maciej Pilarski:</strong> So from the WordPress Credits perspective, we don&#8217;t hope all the students to turn into contributors. That would be amazing but that might not happen. I can share with you some numbers. So currently we have 450 students globally enrolled. For the whole program so far, 75 graduates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We hope that some or as many as possible of those graduates who completed the program will stay and become active contributors to the WordPress community, stay engaged.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s one of the goals we are aiming for the Credits Program, to not just get this done, but this is building the next generation of contributors. We know that like we are ageing, we&#8217;re getting older every year. We are not getting younger, unfortunately. Getting those students staying in the community allows us to build those next generations of WordPress contributors that will also have completely different perspectives to how the community functions, how it was built.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What brought us here might not move us forward. So these new students will bring us this new, fresh perspective of how they would like the community to function and move it to the future, to be current, to stay up to date with what&#8217;s happening globally.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:43:00] <strong>Anand Upadhyay:</strong> That&#8217;s why it&#8217;s very difficult to like measure the impact in numbers because how it is impacting in the longer term. But yeah, it&#8217;s going to impact. And I would say also, like Destiny mentioned, one of the metrics is like this campus is willing to have the Campus Connect again and again in the campus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I just want to share one more. Like I just recently got a call from one of the faculty coordinators from one of the campus where we have a Student Club. And now they have like two months of vacations. And he called me like, okay, now the vacations are going on, students will not be here, so what can we do for the students to keep their involvement with the WordPress in those two months? So can we do something online? Can we do something like this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">When we get these calls, these kind of communications, that these are interactions that we have, this gives us a sense of like accomplishment. Okay, yeah, we were able to create some kind of interest in the students. Because we cannot expect that if we are going to like any campus and 100 or 200 students are participating in our Campus Connect, they are all going to jump into the WordPress. They are getting a lot of different kind of opportunities as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There are other technologies as well, which are, some students are going into that, some students are going into that. But we are showcasing the WordPress as one of the career opportunities. And they have a choice of multiple options, so they will choose what they do. But yeah, the impact will be seen in the next few years. Just like Maciej said, mentioned that he went to the WordCamp as a volunteer and it&#8217;s bring him into the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the same is with me. I attended the WordCamp and just after coming out of the WordCamp, I started the Meetup group in my city. So I got inspired from that. So that is a result of that WordCamp. And that cannot be measured in the numbers. That can only be sensed when we are doing this kind of conversation. Okay, that WordCamp helped me, that WordCamp helped me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The same way in future, these students who will join the community or the WordPress industry, they will be talking about, okay, I got first introduced about WordPress through a WordPress Campus Connect event or I got introduced to the contribution through WP Credits Program. So when these conversation will be happening in the future, then we will say that those are the real metrics that we are looking for.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:00] <strong>Nathan Wrigley:</strong> That&#8217;s really interesting, and I like that. It sounds like there&#8217;s not so much a focus on statistics, you know, literal, brutal numbers, more kind of playing it forwards and measuring the impact over many years, not, you know, a handful of months into the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:15] <strong>Destiny Kanno:</strong> So yes, we&#8217;re not like, okay, here&#8217;s our KPIs, you know, and here&#8217;s our hard metrics. But one thing I really noticed that our community is, it could be better at doing, is just talking about what happened. Because then you hear all these success stories and there are numbers in that. So like for example, Ajmer again, Women&#8217;s Day event this year. 50% of tickets sold were to students. And that&#8217;s directly because of the involvement in going to these campuses and teaching WordPress. And I&#8217;m like, that&#8217;s amazing, that&#8217;s direct injection of 50% youth into the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:52] <strong>Anand Upadhyay:</strong> And they sold out so fast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:53] <strong>Destiny Kanno:</strong> And they sold out really fast, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:45:55] <strong>Anand Upadhyay:</strong> The organisers were hoping like, now we have to pitch out to sale our tickets. And they have planned a social media campaign around that. Okay, we will be periodically pitch a student on the social media to encourage the ticket purchase. And within one day, we sold out. And the whole social media campaign was like their whole planning was gone. We don&#8217;t have tickets.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:46:14] <strong>Nathan Wrigley:</strong> It&#8217;s really interesting that there&#8217;s all this success going on, and yet, as Destiny said, it is hard to get that discovered. Maybe it&#8217;s a case of shouting louder about the previous success. Maybe things like this podcast will help in some small way for things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I know what you mean. There&#8217;s a lot of people talking about the code, and there&#8217;s a lot of people talking about the plugins and the themes and whether or not we&#8217;re going to get collaborative editing in version 7 or 7.1. All of that seems to suck up all of the oxygen in the room. And yet, without a throughput of, let&#8217;s go for young adults, coming into the WordPress space, there&#8217;s not really a great deal of hope for a project over decades unless we get people of a much younger age beginning now. And I&#8217;ll just hand the torch to Maciej because I think he&#8217;s got something to add.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:47:05] <strong>Maciej Pilarski:</strong> But this is also changing because at WordCamp Asia, we were able to introduce the educational table during the contributor day. And I&#8217;m also organiser of WordCamp Europe that&#8217;s going to happen really soon in two, three weeks, beginning of June. And during WordCamp Europe, we will also have a contributor table, dedicated to education, but for the first time also educational track.</p>\n\n\n\n<p class=\"wp-block-paragraph\">During the second day, we will start the whole day with topics related to education. We will have a discussion panel rethinking learning in WordPress that Mary will be participating. And later in that afternoon, we will have actual students, who take part in the program. Sharing the experience, presenting the results. Not only students from universities, but I&#8217;m also leading a group of high school students who&#8217;ve been working for the whole past semester with a teacher on some projects related to WordPress building websites. So they are super eager and excited to show them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We will also showcase some students, teachers stories, how both of those sites motivated each other, learn from each other, and basically help us keep growing the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So WordCamp Europe definitely will feature some of those things. And we&#8217;re slowly introducing more and more those things into those flagship events and into the broader community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:48:28] <strong>Nathan Wrigley:</strong> Really nice. Yeah, that&#8217;s really nice to hear. I think it&#8217;s a difficult circle to square, the idea of making this stuff visible so that everybody&#8217;s aware of it. Even if they&#8217;re only interested in running their agency, or writing code or whatever it is. Maybe to realise that this is some version of the underpinnings of the WordPress community without which the software ultimately doesn&#8217;t exist.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it is quite curious. I don&#8217;t know if I&#8217;m reading between the lines here, I think I&#8217;m not, but I get the impression that, I&#8217;m going to use the phrase like, I don&#8217;t know, from higher up, let&#8217;s put it that way. It feels like education is taking a more central place. It feels like for example, Mary Hubbard, it feels like you&#8217;ve got a real advocate there. Again, I could be reading between the lines, but it feels like the words coming out of her mouth, I hear the word education coming out of her mouth quite a lot when she&#8217;s on stage.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it feels like you&#8217;ve got some big hitters, let&#8217;s go with that. I don&#8217;t know if you&#8217;ve got anything you want to add to that, but it feels like the importance of this is more profound this year than it was a few years ago.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:49:33] <strong>Maciej Pilarski:</strong> You are correct. Mary is a big supporter of that and she also created this space for us to grow those initiatives that like allows us to grow that. Isotta started the first Credits Program at the Pisa University as an experiment. And from there it was proven that this actually works. It gets us universities and new contributors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then on the other side, there was those Campus Connect events that also organically grew up on their own. So basically there was a need. It feels like there was this hive mind somehow that worked also for all of us. All of us felt this need to introduce those things. It looks like we&#8217;ve reached a certain growth level for the community that we organically felt that that&#8217;s the direction that we should start heading.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:50:24] <strong>Nathan Wrigley:</strong> Yeah. What&#8217;s interesting there as well is that it very much overlaps with maybe a concern. So we&#8217;ve touched on this at various points without saying it out loud quite. If you go to, and I&#8217;m going to exclude WordCamp Asia 2026 from what I&#8217;m about to say, because that event was very different. If you go to a typical WordCamp, the age skews, and I&#8217;m doing air quotes, older. You don&#8217;t typically look around and see a bunch of teenagers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s a concern. There&#8217;s this, like a pyramid, like a reverse pyramid, and if we don&#8217;t get the younger people coming up, the edifice of this entire project kind of becomes a lot more shaky. And we&#8217;ve lived through 22 plus years of WordPress, and I think quite a lot of those people began, a lot of the people who&#8217;ve been involved in the community began their careers using WordPress and they&#8217;ve kind of moved through WordPress as it&#8217;s evolved over those 22 years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And not to, I don&#8217;t know quite how to say this. At some point they&#8217;re going to stop contributing. Their age will become something, you know, they want to retire or they want to move on or do some other things. Unless we build the scaffolding and put things in place so that young people feel they&#8217;ve got a place here, feel that, I don&#8217;t know, some proprietary system is not the way they want to go, they want to support the ethic of open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Unless these building blocks, these educational building blocks are put in place, then that&#8217;s going to be a bit of a concern. So to your point, Maciej, it organically grew. And what a nice thing that it did kind of organically grow because it&#8217;s sorely needed at the same time. There isn&#8217;t really a question in there. But anyway, there&#8217;s my observation. Anand, did you have something to say? I think you did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:52:04] <strong>Anand Upadhyay:</strong> Yeah. So just want to add that thing you have raised recently. So the way that we want to teach the students about the open source as well, because if you go to the WP Credit curriculum, so the initial lessons, they learn through the, given to them to learn from the learn.wordpress. So it&#8217;s all about like open source ethics, and how the WordPress community, WordPress project works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this opens up their mind about the open source. Because in the education system, it is something that is not clearly mentioned. There are simple, just simple definitions around the open source. But open source is much more than those definitions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And especially the open source community like WordPress. It&#8217;s more about the people. So the students also learn about how the community is working, how the people are working from the different time zones, people are joining hands for running the bigger events like WordCamp Asia or these Credits Programs. The students will learn all those things as well, and I&#8217;m sure when they will join as a contributor in the future, they will have lot of experience before joining as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:53:02] <strong>Nathan Wrigley:</strong> Thank you. I love that expression, by the way. You just dropped it in in the middle of a sentence there. You said people are joining hands. What a perfect summation of the entire enterprise being discussed today. Maciej, you raised your hand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:53:14] <strong>Maciej Pilarski:</strong> Yeah, and besides the community goals and keeping it going, I have also a very personal goal that also is behind all of those things that I do. From my own experience, I had a pretty difficult and bumpy educational path, let&#8217;s call it. Unlocking those possibilities for those students, helping them out, making it easier for them, it&#8217;s one of my very personal goals, because I know it does not need to be very difficult or crazy when you study, especially when you are young. You&#8217;re not sure fully which direction you would like to go. So creating for them, one of those opportunities that might click for them is also something very personal and close to my heart. Because not everyone needs to struggle or have like difficulties, so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:53:58] <strong>Nathan Wrigley:</strong> I am so glad you said that because that encapsulates all of it. That&#8217;s the entire point. It&#8217;s got to be that, right? So we&#8217;ve spent a long time talking about the minutiae of this, that, and the other thing. It all goes, like they&#8217;re spokes on a wheel. And the whole point is that little bit in the middle, which is the child, the adult, the human being somewhere who just wants to make use, wants to grow, wants to learn things, wants to figure things out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">With open source, with this kind of learning, there is potentially zero impediment, or at least very few impediments to actually get that learning underway. And so I think maybe we lost sight of that in this conversation a little bit. So I&#8217;m glad that you grounded it there, Maciej, right towards the end. That&#8217;s perfect. Destiny, was there anything you wanted to say? I don&#8217;t know if you were indicating that you did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:54:48] <strong>Destiny Kanno:</strong> I know we&#8217;re like probably over time, but there&#8217;s still so much to share. Like even thinking about keeping WordPress relevant, right? For us and then also for youth. I think about the new AI Leaders Credential that was announced and is being worked on. And how tying WordPress to AI is like really helping students engage more, and see like the relevancy of it in a different way. Not even for the students, like for me, that&#8217;s challenging me and I think other organisers and learners of WordPress to be adaptable and think about WordPress differently in a new way of this year as AI keeps advancing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then you were also talking about wins, right? How do we celebrate that? I did want to surface, we have the Education Buzz Report, which goes out every month, which aims to try to surface all of these educational wins that are happening in the community. And I just have received some further collaboration from marketing to hopefully also broadcast that on our socials going forward so that we do get the word out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And lastly, like celebrating the students too. There was a post that went out about the Student Clubs and the success. And we just want to make sure that in this, that they feel seen, right? And that this feels like a space for them. And I know WordPress Credits, we&#8217;re working on something to showcase, no, something went out recently. A post went out recently to showcase some of the successes of the students. And we just want to keep highlighting that as well. Because their work and the way they operate, especially because they&#8217;re coming in with different lenses, is really important to showcase and highlight and make sure that they feel like they deserve that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:56:26] <strong>Nathan Wrigley:</strong> Yeah, there was a post, I&#8217;ll try and link to it. I think it was like a week ago about the Student Clubs. There were three or four images, three or four photos and there were so many smiling faces in those pictures. It was absolutely lovely. Lots of people gathered in classrooms. I couldn&#8217;t exactly tell where, but it was just so nice seeing people kind of enjoying WordPress, having a nice time, bit of camaraderie, hanging out with each other, learning things. It was absolutely wonderful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Unfortunately, I think time might have got the better of us. Hopefully, dear listener, what you&#8217;ve gained is an understanding that there&#8217;s so many layers to this educational initiative. It doesn&#8217;t appear to be in any way standing still. It&#8217;s growing. It&#8217;s interesting. There&#8217;s a lot going on, and you can be involved.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I will put links in the show notes to any of the places where I feel you would be best making a start with that. Maybe the contributors to this panel can drop some things, you know, if they&#8217;ve got a particular link. So again, wptavern.com. If you want to go over there, we will look for the links.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This giant edifice that you maybe know nothing about, and maybe at the end of this episode, some parts of you is tuned in and thinking, I would like to be involved in that. And the truth is, you can be. It&#8217;s all available to you to get involved and you could start today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there we go. With that said, I&#8217;m just going to say a great big thank you to Destiny, to Anand, and to Maciej. It kinds of feels like we need to come back. Let&#8217;s do it again in six months or so, and we&#8217;ll see where we&#8217;re at. Oh, I&#8217;ve got a lot of nodding faces. That&#8217;s nice. So maybe we&#8217;ll revisit this in a few months time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But seriously, from the bottom of my heart, Destiny, Anand and Maciej, profound respect to you and all of the different things that you are doing. Thank you so much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:58:13] <strong>Anand Upadhyay:</strong> Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:58:13] <strong>Maciej Pilarski:</strong> Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:58:14] <strong>Destiny Kanno:</strong> Thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we’re joined by three WordPress education initiative leaders, Destiny Kanno, Anand Upadhyay and Maciej Pilarski.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Together, they have spent years at the heart of WordPress training and outreach, working in roles spanning community education management, plugin development, and credit program administration. Their efforts have helped shape student engagement and university partnerships across the globe, introducing thousands of learners to WordPress. You can see their bios further down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on the current landscape of WordPress education, with particular attention to three key initiatives: the WordPress Credits Program, Campus Connect, and Student Clubs. Each initiative is designed to provide unique entry points for students of all ages and education levels, from high schoolers building their first site in a library, to university students earning official credits for open source contributions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discussed the different approaches these programs take: WP Credits ties student work directly to academic credit and mentorship, Campus Connect provides flexible, community-driven events in diverse locations, and Student Clubs foster sustainable, peer-led learning within schools and other institutions. We explored how these models feed into each other, building a sustainable ecosystem for ongoing growth in the WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also got into the importance of repeat campus partnerships, the need for scalable facilitator training, and the role of recognition: certificates, badges, and public showcases, in keeping students motivated and validated in their journey.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re curious about the growing movement to bring WordPress knowledge to the next generation, or are looking to get involved with education in your local community, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Previous episode of the podcast related to this episode:<br /><a href=\"https://wptavern.com/forums/topic/183-destiny-kanno-isotta-peira-and-anand-upadhyay-on-how-wordpress-is-shaping-the-future-of-education-for-students-worldwide\">#183 – Destiny Kanno, Isotta Peira and Anand Upadhyay on how WordPress is shaping the future of education for students worldwide</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/\">WordPress Community Team</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://events.wordpress.org/campusconnect/\">Welcome to WordPress Campus Connect</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/stephendumba1/\">Stephen Dumba&#8217;s WordPress.org profile</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/\">WordPress Credits: Contribution Program for Students</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/education/student-clubs/\">WordPress Student Clubs</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://events.wordpress.org/campusconnect/2025/ajmer/\">WordPress Campus Connect in Ajmer</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/2026/05/01/peer-review-needed-hands-on-wordpress-meetup-activity-library/\">Peer Review Needed: Hands-On WordPress Meetup Activity Library</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/2026/04/03/introducing-the-wordpress-facilitator-training-program/\">Introducing the WordPress Facilitator Training Program</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">Piloting the AI Leaders Micro-Credential</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/community/2026/06/03/monthly-education-buzz-report-may-2026/\">Monthly Education Buzz Report – May 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://learn.wordpress.org\">Learn WordPress</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/04/student-clubs-build-momentum/\">WordPress Student Clubs Build Momentum</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Links provided by the guests</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress.org Education page:<br /><a href=\"https://wordpress.org/education/\">https://wordpress.org/education/</a> (and all subpages)</li>\n\n\n\n<li>WordPress Credits Institution application form:<br /><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/#get-involved\">https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/#get-involved</a></li>\n\n\n\n<li>Call for WP Credits mentors and mentor application form:<br /><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/a-guide-for-wp-credits-mentors/call-for-mentors/\">https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/a-guide-for-wp-credits-mentors/call-for-mentors/</a></li>\n\n\n\n<li>Any companies interested in supporting the Credits Program:<br /><a href=\"https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/get-involved-company-guide/\">https://make.wordpress.org/handbook/wordpress-credits-contribution-internship-program/get-involved-company-guide/</a></li>\n\n\n\n<li>Student form to apply their institution for the Credits Program:<br /><a href=\"https://airtable.com/appIzQKfwTn5dyPVp/shr6Gf1mMMEAxevw4\">https://airtable.com/appIzQKfwTn5dyPVp/shr6Gf1mMMEAxevw4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/handbook/education/wordpress-facilitator-training-program/\">WordPress Facilitator Training Program</a></li>\n\n\n\n<li>Education buzz reports: <a href=\"https://make.wordpress.org/community/tag/education-buzz/\">https://make.wordpress.org/community/tag/education-buzz/</a></li>\n\n\n\n<li>Apply to organize a WPCC event: <a href=\"https://events.wordpress.org/campusconnect/organize/\">https://events.wordpress.org/campusconnect/organize</a></li>\n\n\n\n<li>Apply to create a student club: <a href=\"https://make.wordpress.org/community/handbook/education/student-clubs/request-the-creation-of-a-wordpress-student-club/\">https://make.wordpress.org/community/handbook/education/student-clubs/request-the-creation-of-a-wordpress-student-club/</a></li>\n\n\n\n<li>Ai credentials:<br /><a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">https://wordpress.org/news/2026/02/ai-leaders-credential/</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Guest bios:</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Destiny Kanno</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Destiny Fox Kanno, sponsored contributor acting as a Community Education Programs Manager at Automattic. Destiny works closely with the Community team and Training Team, with a focus on growing, enabling and amplifying WordPress Campus Connect, Student Club, WordPress Credits and other education initiatives.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Anand Upadhyay</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Anand Upadhyay is a long-time WordPress contributor and community advocate based in Ajmer, India. Active in the ecosystem since 2010, he has contributed to several Make WordPress teams including Core, Docs, Community, and Polyglots, with a strong focus on empowering others to get involved. He is the founder of <a href=\"https://wpvibes.com\">WPVibes</a>, a WordPress plugin development company that builds performance-driven tools for WordPress and WooCommerce users.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anand is also a regular WordCamp speaker, Meetup organiser, and someone deeply committed to bringing WordPress education to students. In 2024, he launched the first WordPress Campus Connect event, which went on to become a global program officially recognised by the WordPress Foundation. Anand continues to support and mentor student communities through events, workshops, and open-source advocacy.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Maciej Pilarski</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Maciej Pilarski is a Community Wrangler at Automattic, where he works on WordPress.org with a focus on educational initiatives that connect the next generation of contributors to the global WordPress community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As one of the admins behind the WordPress Credits Program, Maciej works with universities across Central &amp; Eastern Europe and Asia to bring students into open source contribution, pairing them with mentors, building institutional partnerships, and helping turn academic coursework into real-world impact on software used by 43% of the web.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Originally from Poland and now based in Okinawa, Japan, Maciej brings a uniquely cross-cultural perspective to community building, bridging local ecosystems in places like Kraków, Riga, Tallinn, and Tokyo with the wider WordPress world. He&#8217;s passionate about making open source contribution more accessible and making sure the WordPress community reflects the full diversity of the people who use it.</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, 24 Jun 2026 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:12;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Open Channels FM: Revisiting What Matters Most\";s:7:\"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://openchannels.fm/?p=2556050\";s:7:\"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://openchannels.fm/revisiting-what-matters-most/\";s: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:205:\"In this episode, Bob Dunn recaps six months of key themes, highlighting the surge in AI discussions, ongoing debates about the open web, and WordPress\'s enduring relevance, while embracing honest dialogue.\";s: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, 24 Jun 2026 12:58: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Open Channels FM: BackTalk on Interoperability, Infrastructure and Pragmatism\";s:7:\"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://openchannels.fm/?p=2555826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://openchannels.fm/backtalk-on-interoperability-infrastructure-and-pragmatism/\";s: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:147:\"Ongoing challenges in decentralized social networks, emphasizing the need for practical solutions and immediate usability for developers and users.\";s: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, 24 Jun 2026 11:57:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: No Bubble\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2026/06/no-bubble/\";s: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:425:\"<p class=\"wp-block-paragraph\">A throwback from 2007: a local Bay Area a cappella group called The Richter Scales made a Webby Award-winning viral video about how that bubble felt. <em>Hat tip: <a href=\"https://toni.org/\">Toni</a>.</em></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\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jun 2026 06:57: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: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:15;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: Browse the New Mercantile Swag Store\";s:7:\"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=20930\";s:7:\"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:50:\"https://wordpress.org/news/2026/06/open-web-merch/\";s: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:3868:\"<p class=\"wp-block-paragraph\"><a href=\"https://mercantile.wordpress.org/\">Mercantile</a>, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order emails styled to match the look and feel of the store.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20931\" height=\"1055\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=2048%2C1055&#038;ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the design, the storefront leans into the history and culture of WordPress. Visual and copy choices nod to familiar elements of the project, from the metabox and the admin bar to Wapuu making the occasional appearance, with small open source and code references for those who look closely. The aim was a storefront that feels uniquely WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, the storefront shows what a modern WordPress and <a href=\"https://woocommerce.com/\">WooCommerce</a> site can do. It is built almost entirely with blocks, including a block-based cart, checkout, mini-cart, and order confirmation, supported by a set of custom theme blocks created for the store. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/iapi-about/\">Interactivity API</a> powers the catalog navigation and modal states, the store runs on WordPress 7.0, and accessibility is built in throughout, honoring reduced-motion preferences across animations and meeting color contrast standards. Product pages surface per-product attributes such as size, material, and care, so shoppers have the details they need before adding an item to the cart.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20932\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=2048%2C800&#038;ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This latest redesign supported the Mercantile booth at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. To make in-person sales work smoothly, the team enabled local pickup at checkout and added a set of event-only products refined to match the rest of the catalog. Fifty orders were completed at the event using in-person payments, a strong real-world test of the new checkout flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is more on the way! A playful experiment in progress will let curious shoppers explore a text-based version of the store from the command line, a small tribute to the developers who make up much of the WordPress community. Subtle hints pointing the way will appear once it is ready.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20933\" height=\"719\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=2048%2C719&#038;ssl=1\" width=\"2048\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The new Mercantile is the work of many contributors who designed, built, tested, and refined it together. Every purchase supports the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c)(3) nonprofit organization, in its mission to democratize publishing and preserve open source software for generations to come. Take a look around and find something you love.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://mercantile.wordpress.org/\">Shop at <strong>mercantile.WordPress.org</strong></a></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 15: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:\"jillq\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Open Channels FM: Navigating Burnout in the Age of AI-Driven 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555430\";s:7:\"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://openchannels.fm/navigating-burnout-in-the-age-of-ai-driven-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"AI transforms developer workflows, causing cognitive overload and blurring work-rest boundaries. Establishing intentional breaks is crucial to maintain balance and prevent burnout.\";s: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, 22 Jun 2026 10:08:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Hill For A Stepper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2026/06/hill-stepper/\";s: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:798:\"<p class=\"wp-block-paragraph\">In honor of Father&#8217;s Day, I wanted to add to the <a href=\"https://ma.tt/chuck/\">two quotes from my Dad&#8217;s obituary</a>, &#8220;Seven days without chicken made one weak.” and  “If you fail at raising your children, nothing else mattered.” with another saying he had.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Ain&#8217;t no hill for a stepper.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to learn more about this, <a href=\"https://waywordradio.org/stepper-like-you/\">check out this part of the A Way with Words podcast</a>, and apparently, it <a href=\"https://www.youtube.com/watch?v=Lui5y2AcYpM\">might have come from the musician John Gaar</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 06:58:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Death by PowerPoint\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2026/06/death-by-powerpoint/\";s: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:760:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">PowerPoint makes us stupid. </p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">— Gen. James N. Mattis of the Marine Corps, the Joint Forces commander</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.nytimes.com/2010/04/27/world/27powerpoint.html\"><img alt=\"\" class=\"wp-image-153254\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2026/06/27powerpoint_CA0-articleLarge.webp?resize=600%2C340&#038;quality=80&#038;ssl=1\" width=\"600\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Classic <a href=\"https://www.nytimes.com/2010/04/27/world/27powerpoint.html\">2010 NYT <em>We Have Met the Enemy and He Is PowerPoint</em></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, 21 Jun 2026 06:03:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Best Trash\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2026/06/best-trash/\";s: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:1194:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">A typography savant on staff had spent a month designing link underlines (literally just lines) that were more visually pleasing than Chrome or Safari’s defaults. On Tuesdays, engineers stayed late at the office, fixing design imperfections over dinner. One of them began a 2,500-word <a href=\"https://medium.com/@fat/mediums-css-is-actually-pretty-fucking-good-b8e2a6c78b06\" rel=\"noopener\" target=\"_blank\">post</a> about Medium’s CSS code with a quote attributed to Lil Wayne: “I believe that to be the best, you have to smell like the best, dress like the best, act like the best. When you throw your trash in the garbage can, it has to be better than anybody else who ever threw their trash in the garbage can.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">From Harris Sockel&#8217;s essay <a href=\"https://www.piratewires.com/p/what-happened-to-medium\">What Happened to Medium</a>, which I think is meant to be a dunk? But I think it&#8217;s awesome. Medium&#8217;s design and typography has always been really impeccable. I love when people obsess like this.</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, 20 Jun 2026 13:51: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Midjourney Medical\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153216\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2026/06/midjourney-medical/\";s: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:3191:\"<p class=\"wp-block-paragraph\">I&#8217;m sorry I couldn&#8217;t be there in person, but I was so excited to watch the <a href=\"https://www.midjourney.com/medical\">Midjourney Medical</a> launch from afar. This is a really big deal. <a href=\"https://x.com/DavidSHolz\">David Holz</a>, one of the most underrated pioneers in AI, has taken money from <a href=\"https://www.midjourney.com/explore?tab=top\">making cat pictures</a> to build a full-body ultrasound scanner that can give you <a href=\"https://www.midjourney.com/medical/blogpost\">incredible visibility in 60 seconds</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153220\" height=\"302\" src=\"https://i0.wp.com/ma.tt/files/2026/06/female_lower_abdomen_mask-458023b86b6cf387-1024x512.webp?resize=604%2C302&#038;quality=80&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://x.com/i/broadcasts/1MJgNNoAPLyGL\">re-watch the livestream here</a>, which I recommend. You might remember David from Leap Motion, which <a href=\"https://ma.tt/2012/05/leap-motion/\">I blogged back in 2012</a>. It&#8217;s so cool to a small but mighty independent company innovate and apply learnings across seemingly disparate sectors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wish all my friends in jazz and the arts who are  despondent about tech could meet David:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">“We’re going to be a little confusing for the next six months as we announce all the things, but I’m hoping as they all are out there, they form a picture which I hope feels cohesive. Most of them are around creativity, but some of them, like this, are just around positive human futures that we actually want to be a part of. And I think this is an important thing for AI companies to do—for all humans to do.” — David Holz</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">If you understand imaging, you know the tradeoffs between X-ray, CT (computed tomography), MRI (magnetic resonance imaging), and ultrasound, and Midjourney&#8217;s approach doesn&#8217;t cover everything, but what&#8217;s incredible is the speed, amount of data, and using AI to process and get something useful out of it. Ultrasonics will be an incredibly exciting area over the next few years, first for imaging and later <a href=\"https://www.mayoclinic.org/tests-procedures/high-intensity-focused-ultrasound/about/pac-20596150\">for intervention</a>. I can imagine a future where you dip into one of these once a month just to keep an eye on things, not just to find bad stuff but to see the impact of exercise or dietary changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We&#8217;re fairly new to scanning healthy people, and I always advise friends getting their first whole-body MRI with <a href=\"https://www.biograph.com/\">Biograph</a> or <a href=\"https://prenuvo.com/\">Prenuvo</a> that it&#8217;s very common to hear something scary at first, only to find it&#8217;s benign. Also, I&#8217;ve now heard many examples of things that were caught and treated early, years before they might otherwise have been noticed.</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, 20 Jun 2026 04:09: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: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:21;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WordPress.org blog: Kim Parsell Memorial Scholarship Opens for WordCamp US 2026\";s:7:\"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=20927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2026/06/kim-parsell-wcus-scholarship/\";s: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:4552:\"<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20941\" height=\"1080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1920%2C1080&#038;ssl=1\" width=\"1920\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one of the largest annual gatherings in the WordPress project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship honors Kim Parsell, a longtime WordPress contributor whose work and presence left a meaningful mark on the project. Kim was known for her care, generosity, and commitment to helping others feel welcome in open source spaces. For readers who are less familiar with her story, the <a href=\"https://us.wordcamp.org/2019/memories-of-kim-parsell/\">tributes shared by friends and colleagues</a> offer a deeper look at her role in the WordPress community and the lasting impact she had on those who knew her. Through this scholarship, the WordPress Foundation continues to recognize contributors who reflect that same spirit of participation and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is built by people from many backgrounds, experiences, and areas of expertise. Events like WordCamp US create space for contributors to meet in person, learn from one another, and continue the work that supports the software and the community around it. For some contributors, the cost of travel, lodging, and registration can make attending difficult. The Kim Parsell Memorial Scholarship helps reduce that barrier for one eligible contributor each year.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Scholarship Details</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One scholarship will be awarded for WordCamp US 2026. Applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman. </li>\n\n\n\n<li>Be actively involved as a contributor to WordPress.</li>\n\n\n\n<li>Have never attended WordCamp US before.</li>\n\n\n\n<li>Demonstrate financial need to attend the event.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship includes the cost of a WordCamp US 2026 ticket, round-trip flight, and lodging. Applications are open through July 10, 2026, and all applicants will be notified of the decision by July 24, 2026.</p>\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 has-background wp-element-button\" href=\"https://wordcampcentral.survey.fm/wcus-2026-kim-parsell-scholarship-application\" style=\"background-color: #6c214f;\">Apply for the Kim Parsell Memorial Scholarship</a></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordCamp US 2026 will take place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. Contributors, attendees, volunteers, organizers, and sponsors will come together to share ideas, learn from each other, and continue building the future of WordPress. For many contributors, attending in person creates new ways to collaborate, find support, and stay connected to the open source work that happens throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To learn more about eligibility, visit the <a href=\"https://wordpressfoundation.org/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship page</a>. Community members are encouraged to share this opportunity with contributors who may qualify. You can also learn more about attending WordCamp US 2026 on the <a href=\"https://us.wordcamp.org/2026/tickets/\">WordCamp US tickets page</a>, explore <a href=\"https://us.wordcamp.org/2026/call-for-volunteers/\">volunteer opportunities</a>, or review <a href=\"https://us.wordcamp.org/2026/call-for-sponsors/\">sponsorship opportunities</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20939\" height=\"1978\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=943%2C1978&#038;ssl=1\" width=\"943\" /></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></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, 19 Jun 2026 16:55:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Open Channels FM: Open Channels FM v4.8 Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555724\";s:7:\"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://openchannels.fm/open-channels-fm-v4-8-changelog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:208:\"Bob Dunn has launched a blog commentary and a weekly series, \"Open Tabs.\" Do the Woo is now an independent podcast. Updates include a redesigned homepage, new episode features, and a newsletter format change.\";s: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, 19 Jun 2026 09:23: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WordPress.org blog: Global Partners Across the First Half of the 2026 WordPress Event Season\";s:7:\"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=20910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2026/06/global-partners-first-half-2026/\";s: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:7579:\"<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20911\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55169598894_0199c1bbb9_o-scaled.jpg?ssl=1\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This post recaps how the WordPress project&#8217;s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional <a href=\"https://events.wordpress.org/novisad/2026/developer-day/\">the first WordPress Developers Day</a>, and a growing network of <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> events, Global Partners staffed booths, sponsored sessions, and connected with developers, freelancers, students, and agency owners around the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A global footprint</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The year began in January with <a href=\"https://nepal.wordcamp.org/2026\">WordCamp Nepal</a>, where Jetpack joined the community in Kathmandu. The momentum carried into India, where <a href=\"https://kolhapur.wordcamp.org/2026\">WordCamp Kolhapur</a> and, a week later, <a href=\"https://pune.wordcamp.org/2026\">WordCamp Pune</a> brought Global Partners face-to-face with a student-heavy audience of roughly 200-250 attendees. In Pune, a session on connecting WordPress with AI workflows drew a large crowd, and attendees were curious about WordPress.com plans, new AI features, and Automattic for Agencies. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20920\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1206%2C675&#038;ssl=1\" width=\"1206\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">In February, Jetpack traveled to <a href=\"https://portharcourt.wordcamp.org/2026\">WordCamp Port Harcourt</a> in Nigeria, an inclusive and well-organized event with 256 attendees that featured talks on inclusion and accessibility. Locally produced swag was a standout success there, a reminder that the WordPress community&#8217;s reach extends well beyond Europe and North America.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Across Europe</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Spring brought a wave of European events. At <a href=\"https://madrid.wordcamp.org/2026\">WordCamp Madrid</a>, with 280 attendees, WordPress.com served as a Global Sponsor and ran a Wapuu treasure hunt that drew 97 participants. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20921\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55230328181_175ece15a5_o-scaled.jpg?ssl=1\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Down the coast in France, <a href=\"https://nice.wordcamp.org/2026\">WordCamp Nice</a> gave Jetpack a chance to connect with 247 freelancers and developers, an audience that appreciated concrete, easy-to-explain solutions and asked questions about newsletters, security, and Jetpack&#8217;s broader feature set.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://vienna.wordcamp.org/2026\">WordCamp Vienna</a> stood out for its developer-heavy crowd of 277. From a Jetpack-branded booth staffed on both days, the team engaged with agencies and merchants, fielded numerous questions about WooCommerce and security, and booked 8 agency meetings. Many builders were interested to learn that Automattic stands behind both WordPress.com and WooCommerce. In Italy and Germany, <a href=\"https://torino.wordcamp.org/2026\">WordCamp Torino</a> and <a href=\"https://leipzig.wordcamp.org/2026\">WordCamp Leipzig</a> both reflected growing curiosity about AI, a theme that resurfaced throughout the year. At Leipzig, with 109 agencies, hosting companies, and freelancers in attendance, WordPress.com staffed a booth where tote bags were in high demand, while conversations kept returning to AI and WordPress Studio.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://slovenia.wordcamp.org/2026\">WordCamp Slovenia </a>and <a href=\"https://portugal.wordcamp.org/2026\">WordCamp Portugal</a> closed the European stretch. WordPress.com brought a booth to Ljubljana, and in Porto, it appeared with both a booth and logo presence alongside WooCommerce, which suited an event filled with e-commerce builders and Woo payment providers. The first WordPress Developers Day in Novi Sad introduced a new format, with Jetpack as a global sponsor and nearly 30 in-depth conversations on Jetpack, WooCommerce, performance, and the realities of client work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community in Uganda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In May, <a href=\"https://kampala.wordcamp.org/2026\">WordCamp Kampala</a> brought four Global Partners onto the sponsor roster: Jetpack, WooCommerce, Bluehost, and WordPress.com. The event, themed &#8220;Tech for Social Good,&#8221; welcomed more than 200 attendees and reflected the energy of a fast-growing local community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Support from Global Sponsors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Behind every one of these events is a layer of support that does not always appear at a booth. In 2026, Bluehost and Hostinger both joined the <a href=\"https://events.wordpress.org/sponsor/\">WordPress community sponsorship program</a> as top-tier Global Sponsors, alongside Jetpack and WordPress.com. Their contributions help underwrite the global WordCamp program and the community events that make a year like this possible. That program-level backing is what allows organizers in Kathmandu, Porto, and Kampala to bring their events to life, and the WordPress community is grateful to every partner that invests at that scale.<br /></p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect reaches 6,200 students</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the most notable stories of 2026 is not a WordCamp at all. It is <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. As of early June, the program has passed 6,200 students, with 25 events completed in 2026, 45 events all-time, and 42 more in planning or already scheduled. WordPress.com has played a direct support role throughout, including providing hosting for WordPress Campus Connect events around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The connective tissue between these events and the broader community is real. An organizer first met at WordCamp Mukono went on to help lead WordPress Campus Connect work in Uganda. A student who built her first WordPress site at a WordPress Campus Connect event later attended a WordCamp. These events serve as a pathway for the next generation of WordPress contributors, builders, and professionals.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If 2026 has shown anything, it is that interest in WordPress, and in the tools and services that Global Partners provide, continues to grow around the world. The questions being asked at booths and in sessions are sharper, the audiences more diverse, and the community&#8217;s reach more genuinely global. Thank you to Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger for being part of that story this year, and to every organizer, volunteer, speaker, and attendee who made these events possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To find an upcoming event near you, visit <a href=\"https://central.wordcamp.org\">WordCamp Central</a>. To learn how organizations can support the WordPress project, see the <a href=\"https://events.wordpress.org/sponsor/\">community sponsorship program</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, 18 Jun 2026 17:01:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Open Channels FM: AI Hype and Hope Navigating Optimism and Skepticism\";s:7:\"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://openchannels.fm/?p=2555778\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://openchannels.fm/ai-hype-and-hope-navigating-optimism-and-skepticism/\";s: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:170:\"In this episode, hosts and guests share diverse perspectives on AI\'s rise, touching on its potential, challenges, and how it\'s reshaping industries and human interaction.\";s: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, 18 Jun 2026 09:58: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: #221 – Rahul Bansal on Using AI Everywhere at rtCamp\";s:7:\"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=204828\";s:7:\"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://wptavern.com/podcast/221-rahul-bansal-on-using-ai-everywhere-at-rtcamp\";s: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:55356:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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 using AI everywhere at rtCamp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/contact/jukebox? And use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Rahul Bansal. Rahul has a long and accomplished history in the WordPress ecosystem. As the founder and CEO of rtCamp, a company he started 17 years ago, he&#8217;s led his agency through the rapidly changing landscape of the web, helping enterprise clients such as Google, Fortune 500 companies, and major publishers solve complex problems with innovative WordPress based solutions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">rtCamp specialises in everything from large scale website builds, to more bespoke projects like Chrome extensions and SaaS connectors, and has grown to a team of hundreds over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Today&#8217;s episode takes a deep dive into Raul&#8217;s recent talk at WordCamp Asia, which focused on what it will take to launch and scale an enterprise WordPress agency in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on real, hard won, lessons from rtCamp&#8217;s journey, but also how rapidly the playbook is changing with advances in technology, particularly the explosion of AI tools and workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discuss Rahul&#8217;s philosophy around hiring, namely building a team of people whose strengths complement each other rather than just replicating your own skillset. This approach has allowed rtCamp to adapt to new challenges, fill gaps in expertise, and whether major industry changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We then explore how this idea of complimentary sets can also apply to choosing the right kinds of clients, those who value your expertise because they need what you offer, rather than simply hiring somebody who does what they already know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A theme that emerged in the conversation was specialisation. Rahul outlines how, whereas rtCamp&#8217;s earliest differentiator was a simple focus on WordPress, when virtually nobody else in India was, today&#8217;s agencies must drill down much further to stand out choosing niches within niches, such as WooCommerce, or payment gateway integrations, and becoming recognised experts in those areas in order to thrive in a much more crowded field.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end of the episode, the discussion turns to what might be the most significant topic for agencies today, artificial intelligence. Rahul describes how recent advances in AI have not only altered his agency&#8217;s practises, but given them a firm mandate. If something in rtCamp can be done by AI it will be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about how AI is being leveraged inside rtCamp to automate and optimise everything from sales and proposal writing to project management, and even technical proof of concept builds. With a unified platform for all business processes, the agency is now able to significantly reduce costs, speed up delivery, and focus on higher value consulting and creativity, reshaping roles and team composition as a result.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in what it takes to stand out and succeed in the evolving world of enterprise WordPress agencies, how to confront uncertainty with both optimism and realism, and how AI can become not just a bolt-on feature, but the operational backbone of your business, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Rahul Bansal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Rahul Bansal. Hello, Rahul.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Hello Nathan. Thanks for having me here.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> You are very welcome. Rahul and I were both at WordCamp Asia and that is going to be the main focus of the podcast today. We&#8217;re going to be talking about agencies, growth in agencies, and then probably delving into AI a little bit at the end because of a recent announcement that came out of rtCamp, which is the company that Rahul founded many years ago.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In order to, I suppose, lend credibility to a conversation about agency work, would you mind Rahul, just introducing yourself and tell us a little bit about who you are, what you do in WordPress, and maybe give us a few little interesting facts about rtCamp and what you do over there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> So I&#8217;m, as you mentioned, founder and CEO of rtCamp. We started this 17 years ago. We primarily help large enterprise client, sometimes we build websites for their marketing team, which is the most common use case of WordPress. But at the same time, we help large tech companies like Google communicate better with the WordPress ecosystem for their offering. Like sometimes we build products that includes neither thing, neither plugin, but something like Chrome extension. For large companies sometimes we build like SaaS connectors for technology companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, so we work with, like a big companies really Fortune 500, and the idea is to deliver something related to WordPress in one form or another form.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> If you go to the rtCamp website, you can probably Google it I would&#8217;ve imagined, then you&#8217;ll be able to get some impression of what the company is like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think last time we spoke you were into the sort of 200 employees level. I&#8217;m not sure if those numbers have gone up or down or what have you. But you get an impression of how large it is. And one of the interesting things that I spotted during my time at WordCamp Asia was just how vibrant the community, the WordPress community is. So maybe we&#8217;ll get into that a little bit as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m going to concentrate to begin with on the presentation that you gave at WordCamp Asia. If you would like to see that, wordpress.tv will have a video. And if the video is already available, I will link to it in the show notes. But the presentation that Rahul gave was entitled, how to Start an Enterprise WordPress Agency in 2026. And I&#8217;ll just read the blurb that goes with it because it was fairly short and easy to manage.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Building a WordPress agency business for large enterprises. In this talk, I&#8217;ll share the story of how rtCamp grew from a small WordPress shop into a globally recognised enterprise agency, trusted by Fortune 500 companies and major publishers. If you&#8217;re starting an agency today or looking to move up market in 2026, this session will give you a realistic roadmap building on real lessons from my personal experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I suppose what I&#8217;m going to do at the beginning, Rahul, if it&#8217;s all right with you, is just ask you to tell us some of the bits and pieces that you mentioned during that. Some of the advice that you would give an agency owner beginning in 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yeah. So first, like I deviated a little bit from the blurb because when I applied this talk I had a different frame of mind that, hey, I&#8217;m going to do this. And then as I was preparing the talk, and in during those months, especially like last few months, the AI has reshaped everything. And then I realised that a lot of what worked for rtCamp won&#8217;t work even for rtCamp if I start again today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Rather than making it as a nice story about what worked for us, I lean more towards practical advice, and that&#8217;s where the essence remained. But I focus more on the 2026 part, because when we started, it was 2006. The first time when I used WordPress was 2006. rtCamp started in 2009. 20 years is a big time. And then at the end of this 20th year, like we are going through this AI led change.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So a lot of things that worked for me won&#8217;t work anymore. And that is how I restructured my talk to take enough from our history, enough from our learnings, what worked for us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The way we hire is very different. And after the talk, if that one line that stick with the audience, that many people told me that the hire your complementary set was the most different idea. And it&#8217;s timeless idea. It&#8217;s relevant in AI world also.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the idea was basically that we have this bias that when we try to scale, like basically when we go from freelancing to agency business, the idea of building a business, we try to find people like us. But my idea was that we should initially, especially, we should find people who are opposite of us. Like I was good at engineering, bad at sales, so my co-founder is sales heavy. My English was not good. His English was very polished.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I literally listed down my weakness and found people who were opposite of me. Even interesting part was that, to the few initial hires I asked the questions, whose answer I had no idea whether they&#8217;re saying right or wrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that was the most interesting idea and I think that&#8217;s still relevant today. I will do exactly same thing if I have to start building a new agency. I will build in WordPress, build in AI, any kind of business I will, my initial few hires will all together will cover each other&#8217;s weaknesses.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s at certain scale then you need to replicate, like, you need 50 engineers, you need 20 React engineers, you need five people who can write same proposal. That comes much later. But starting is all about finding your complementary set. And this was inspired by a set theory from math class that I attended in when I was like some 12-year-old. That stuck around before the life. And that is what I put in this talk as a biggest lesson we learned and that worked.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The second most specific thing that I would say, practical advice, like that was more about hiring advice, but that is not only hiring address, that is, I advise in many walks of life applicable.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When you&#8217;re looking for your client, you have to look for complimentary set there as well. Because you are trying to sell to agencies like yours, your margins gets hit a lot. You need to find people who do not understand WordPress at all because then, that is why your expertise become more important and premium for them, because they need to depend on you. They value you more. You are not commoditised for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that hiring your complementary set works across the board. But then the most specific advice I gave that I didn&#8217;t follow myself, I would say. Actually there was nothing to follow that. When I started WordPress was just a blogging platform. There was custom post type were not yet part of WordPress Core. Everybody was just building blogs. We were playing around themes, and the race was to make our blog look unique. The metric usually was like traffic and how many email subscribers you got.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there was no niche to pick. Like, that was the only thing WordPress was doing. And after post type, people started building a lot more than WordPress. Actually people started pushing WordPress earlier, and as a result of that, WordPress created those APIs to make it easy to extend WordPress beyond blogging platform.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But today, in 2026, there is so many things happening. And if you&#8217;re starting new and you do what rtCamp did on day one, like, hey, we are WordPress agency. That is not going to work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It worked for us 20 years back because we were like, probably only one in India at that time who said at that time that we will be only taking WordPress project. Because India was a land of outsourcing. Like in supply chain, it was like a, it&#8217;s like a Chinese manufacturer saying that, hey, we are only going to assemble if you are building for iPhone. So it&#8217;s like, hey, we are only going to write PHP if it is going to end up as a WordPress theme or plugin. We are not going to do what was Cake PHP project at that time. We are not going to write custom PHP script.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in a way we picked the whole WordPress as a niche among the largest set of choices available to us. But if your largest set of choices was building a iOS company, like mobile app company. Mobile app was big because with the introduction of iPhone, there was a sudden shift and huge demand for iOS apps, and we haven&#8217;t built one till 17 years. Like literally we built our first iOS app, public iOS app last month.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That time we were like, well, we are going to only do WordPress. So now that advice translate into, pick a niche within WordPress because WordPress itself is the web now. That time, WordPress was very small. Now you can choose e-commerce. Within e-commerce then you can probably pick WooCommerce. Within WooCommerce then probably you can pick like, depending on your market, payment gateway specialisation, ERPs, back office specialisation, subscription based businesses.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Start by picking a niche as small as possible and then go bottoms up, rather than starting with everything. So that was the key takeaway of my session, I would say that. Pick a niche, position yourself as a expert in the niche. Don&#8217;t just say that, hey, we build WooCommerce store, or we build WordPress site.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Okay. Yeah, I&#8217;ve got all of that. So firstly, hiring. That&#8217;s an interesting one. Hire people that are different from you. I was imagining when you were saying that, I wonder how long you can do that, because you can&#8217;t, eventually, you have a company of a hundred people and all of them are not the same as you. Eventually it must be nice to find somebody who&#8217;s a little bit like you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then also you mentioned picking clients who will trust your expertise, I think is a good way of describing that. Because they themselves are perhaps not expert within that WordPress platform.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now of course, moving forwards, what worked for you in terms of being a WordPress agency 17 odd years ago, that was, as it turns out, really successful. But now you are going to be amongst tens of thousands in India alone, if all you say is that you are a WordPress agency. So you need to go a little bit more specialised and niche down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder, Rahul, with the benefit of hindsight, it&#8217;s always easy to look back and sort of see for example, from my perspective, I see rtCamp as an entirely successful enterprise. You know, you began all those years ago, and decisions were made and you grew and you grew and you grew and you grew, and now we are where you are now. Committing a lot to WordPress with incredible growth and a really amazing agency on your hands.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I&#8217;m just wondering, looking back, with the benefit of hindsight, were there any moments where you made some decisions where you were very nervous about how it was going to be?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So for example, one of those could be WordPress. There was no writing on the wall that said WordPress will be the successful CMS. That really could have gone either way. It could have been Drupal, it could have been something that some kid in a basement created. So I&#8217;m just wondering, are there moments when you look back and you think to yourself, gosh, I am so glad that we did that random choice than all the others that we could have made?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yep. So it&#8217;s a reality that, one of the co-founders we lost, within the first year of company formation was because, I refused to add Joomla to our offering. And Joomla I think was market leader at that time when we started. So we were like more like engineers, like some were good at sales, some were good at communication, but we were all from the same kind of school, like we didn&#8217;t know if there was any survey existed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we didn&#8217;t back by any data. The only reason we chose to stay with WordPress or build this agency with WordPress because we were using WordPress. So rtCamp for the most part, people missed that. So rtCamp was not started as an agency. rtCamp was basically a media company, a blog network. And that blog network was running on WordPress. As a technology blogger. It&#8217;s like just imagine WP Beginners, like that is more relevant example.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So by the way, we, and WP Beginner were operating at the same time, that&#8217;s the power of niche. Like say I chose to focus on WordPress and say very very well. And my technical blog was everything like from iPhone to Windows operating system to Mac OS update to web APIs, to HTTP2. Whatever, like it was a larger technology blog So we were more like a stripped down version of TechCrunch rather than picking a niche. And Syed picked this WordPress as a niche.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Both were contemporaries in that same era. Now just imagine Syed in those days I started an agency. So we were using WordPress, we needed to stand out because, social network or blogging or web was still a fancy place. Like minimalism wasn&#8217;t the trend. It was how much you can push, like how you can make your website look different without using Flash. That was the coolest thing. Like how much you can push jQuery, how advanced CSS you can write. So all those things led to we customising our WordPress a lot.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Another thing that worked in our part was, our blog was one of the biggest in India. Globally also, it had good traffic. In fact, it had so much traffic that one of the most Googled keyword in my name was Rahul Bansal, how much money this guy make. Like that was the first question I used to get asked because traffic was insane. We used to get a lot of traffic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That led us to writing nice WordPress code. In early days, like especially when I was freelancer, I had to write amazing WordPress code that will scale and host it in a way that it will also scale. So not only WordPress, we choose Nginx before it become a norm. Like before there was. anybody started any WordPress managed hosting company. We managed to scale WordPress at a very high level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so now we, are this famous blog running on WordPress handling so much traffic, on Linode&#8217;s $10 something plan. Customising it. So we got this natural market. We got initial customers were technically our competitors, like other tech bloggers. It&#8217;s like TechCrunch hiring Mashable to customise their blog So something like, because Mashable has a tech team. So that was at early story of rtCamp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then we realised that we are making more money and faster money via customising WordPress. So we started cutting down on our editorials. And then, slowly, slowly like the business has shifted from, being a blogging agency, to WordPress custom development agency. That&#8217;s why we chose WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that has been the principle since then, like we only sell what we use. That was the reason we didn&#8217;t, so it wasn&#8217;t any ideological decision. So the ideology is at open source level. So rtCamp is committed to providing open source solution to its client from day one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Joomla tick that box. But Joomla didn&#8217;t tick the box that we use Joomla. We don&#8217;t use Joomla. There was no reason for us to have our blog running on WordPress and website running on Joomla, and that&#8217;s why we stick around WordPress when there was no data, no trend. And I think in hindsight it was just luck. I would say like it could have backfired.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Well, okay, I really like this story. Firstly, I like the fact that you are identifying luck as a component, because I think too often when you listen to people who have had success, they sort of chart this narrative of how brilliant the decisions were along the journey and how impeccable, you know, we did this and then we did this, and then we did this, and then we did this. But never a nod to luck.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And of course, with the benefit of hindsight, we did this, we did this, we did this does lead to where you are now. But I really enjoy it when founders and people have that confession in them. Yeah, there was a bit of luck.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also, and we&#8217;ll get onto this in a minute, because a big part of what you are about to do, or have recently done with your business kind of leans into what you&#8217;ve just been saying.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It sounds like you were led by what was in front of you, if you know what I mean? It doesn&#8217;t sound like there was a great big, okay, by 2016 or 2026, we want to be here. It was more like, okay, this is where we&#8217;re at now. These are the things that are coming to us. Okay, looks like WordPress, not only are we using it, but it looks like people want us to help them to use it. Well, let&#8217;s go there then. Let&#8217;s put the blogging to one side and let&#8217;s become more of a, I don&#8217;t know, a technical helper for you and your website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there&#8217;s this sort of lucky piece, but also the willingness to steer into favourable winds, if you know what I mean? I love that story. Thank you very much for that. I also admire your humility in all of that. That&#8217;s lovely.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the next thing then, I suppose that I want to get into is some change in the landscape at the moment. And again, this maps to what you were just saying about move where the wind takes you. We all know that AI is a thing. You cannot have missed that. But I think a lot of people are taking nervous steps into their business and how they&#8217;re doing things with AI and maybe biting off a little bit here with AI and leaving the rest as it is, and biting off another chunk here, and leaving the rest as it is and slowly moving into AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You have a very different approach. And I will link in the show notes to a blog post on the rtCamp website, which I read several weeks ago. I&#8217;ve got to say, I was a little bit, not surprised, that&#8217;s the wrong word, but it was written in such a way that I thought, gosh, now that&#8217;s interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because in it you painted the case that rtCamp in the future is going to do AI everywhere. And I know we hear that all the time. You know, we&#8217;re going to use AI here, and we&#8217;re going to use AI there. You have painted your colours on the mast, and literally, I think you said, if it can be done with AI, it will be done with AI. There will be no stone left unturned.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay. Firstly, why? Why have you got that approach? What&#8217;s the reason? Now, I&#8217;m sure it&#8217;s fairly obvious, but lay it out for us anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yeah. So I don&#8217;t know from where it comes, anytime I see things going south across industry like COVID or, like AI, like everybody was gloomy, my brain kind of think of opposite. So in my brain, I&#8217;m not building, I&#8217;m actually imagining an AI only agency with humans required to probably feel capture. That&#8217;s how my brain works. So it&#8217;s like AI first.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then again, like WordPress, so I have been lucky more than once in my life. So before this AI came, this famous saying by Steve Jobs like you can only connect the dots looking backward. Three to four years ago, riding on the digital boom, we survived the COVID, like all agencies grew. rtCamp grew a lot more, and a lot faster in very short span of time. And to manage this humongous workforce, we needed to refactor a lot internal tooling, softwares, processes, to the point that we have internally codified our mission that we want to build McDonald&#8217;s of consulting business, inspired by that movie Founder. That was also part of my talk at WorkCamp Asia.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And in fact, I had somebody to literally a complimentary set example. I know we want to build this, but I don&#8217;t have that kind of mental model. So that&#8217;s the brief I give to our chief delivery officer that you have to give me this. McDonald&#8217;s of agency business.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We start thinking of every process that we can repeat, and we realised that we need to take control of our software stack. And we ended up finding something, in open source. That&#8217;s, I would say truly a spiritually aligned to the WordPress ecosystem called Frappe ERPNext, which handle our accounting, payroll, project management, CRM. So many business processes in one single source of truth, like single source of truth for so many things. Earlier it was all siloed data.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this was started with a different intent, to scale rtCamp, 2000 people, 5,000 people, 10,000 people, because that was a business model then. Agencies growth with capacity. You want to sell more, you need to hire more. Basically agencies growth was limited by on one dimension, the inventory, human inventory you can have. So we started implementing this open source back office software automation with the idea that we will own, central piece of our operating system of connecting, getting thousands of people working together.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then AI happened, and then we realised we don&#8217;t need to hire those many people anymore. Year on year, we moved from 200 to 250, but I think next 50 will be very slow. Because, now we are no longer aiming to sell, or hire people. But as luck would&#8217;ve been, we ended up creating this system of record, which is unified and cleaned. When we think of a client or a project or a human. All aspect of their metadata is available in a single system.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that is why we can leverage AI more than a company, agency to agency. For agencies using say, Jira for project management. QuickBook for accounting, some other software. If their operations is scattered across 6, 7 software, we have leverage over them. Not only we are paying very less because all our software is open source. The data is first party. Like sitting duck there to query in any way we can. We are not limited by SaaS providers, enterprise plan or this AI capability.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that is where we realised that we can take this huge bet on AI where we can now build a lot more, in a lot less time using AI across the board. And if you look at a business like not just WordPress business, when you buy something, like you buy a car from a car company. You are actually paying for everything that company does, advertising, researching on the EV technologies, hiring a brand ambassador to put billboard, sponsoring F1. Anything that company does. every penny they spend on their business, the customer ends up paying it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we thought like now we have a single stack, which technically takes care of 70 to 80% critical nature of our business operations. From when the lead enters the CRM, the project management, time entry, people&#8217;s new management, everything is linked. Everything is beautifully linked in a single unified interface and database. So why don&#8217;t we just use AI to cut down the cost.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because now we cannot charge by hours, we can try, but, it&#8217;s not making sense anymore for clients. They want us to commit to fix output bid. Now when we say, hey, we can migrate this thing for 100k, or we can build this website for half million dollars. So those numbers, traditionally, and actually all the time will include all the operation cost. Like my salary. I&#8217;m not doing any coding work, but my salary will be eventually paid by all the clients. Electricity bill that is also going to be paid by all the client.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we thought like rather than just thinking AI to build a website, let&#8217;s use AI to bring our operational costs dramatically down. Because we have single source of truth for maximum data we have, and that is where we went all AI in. Now it&#8217;s like we can submit a proposal in one third of the time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In old days we used to build PPTs. Now we vibe code a WordPress demo site and attach it to the proposal. Hey is this something that you want? Not just the screenshot, not just the Figma, like we are actually building Playground, like websites, and launching them and sharing those links to the client. Go play with it. We are even trying to copy the design systems if they&#8217;re migrating. So migration is a big category of work we do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that is what we mean by going AI ready. So we are leveraging AI to reduce the cost of sale, increase probability of winning the project by pitching them something. And then while estimating the effort, like let&#8217;s say we would traditionally say, oh, this might cost us a thousand hours. Now we blindly said Make it 30% less, as if it will be done in 700 hours and it will be, sometimes it backfires.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then on some project it&#8217;ll be 500 hours. In some project it&#8217;ll be 900 hours, but average will come back to 700 hours. Then again, the idea is we have a central operating system, which gives us, like bird&#8217;s eye view of how healthy our projects education are. Are we getting returns on our AI engagement? And all this is possible because few years back we took a bet in different direction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like we choose WordPress because we wanted to be a better media agencies, and that was what media agencies were doing in the early days. But we ended up building an agency business with the WordPress. Likewise we choose this Frappe ERPNext software. To operationalise our back office. But now it is starting out to be our advantage point in this areas like we are able to do AI a lot more. In the end, it&#8217;s all about bringing the cost down at certain quality. You have to keep the quality up, and just make it more affordable. If that is not. as a business you cannot do that with AI, then something is wrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So AI is not about building something new. I have another approach. So if you&#8217;re an agency people are hiring you to move things from A to B, like you are the movers and packers of internet. I put crudely, what rtCamp does. We move things, like a shipping company who moves your house, remove you from Sitecore to WordSpace.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that&#8217;s still big part of our business. We don&#8217;t have to reinvent or reimagine different experiences all the time. Sometimes we have to just do what everybody&#8217;s doing, the boring part. Put AI there to make it efficient, more cost effective. And if you do that, that means more people wanting to shift to new house. Again, a different approach. People think that they need to build something out of the world to benefit from this AI way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">My idea is that pick a boring thing and make it so affordable that people who were sitting on the fence, just imagine travel, Middle East travel. Like this is a very actually a bad example, might sound inhuman, but, say like X number of people wanted to experience Dubai as a destination, but let&#8217;s say, it was beyond their budget. For some even unfortunately now suddenly that comes within their budget, they will be able to do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People wanted to move to WordPress Initially, agencies were quoting a hundred thousand dollars for that big shift. Now if you can, suddenly you can do it in 50k a lot more people will shift. So, you don&#8217;t have to do things like out of the world thing. You don&#8217;t have to invent new. You have to sometimes just make existing problem more efficient to solve.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it was not always about money, especially in large client. It was not always about 100k versus 50k versus half million versus 1 million. It was about timeline. It&#8217;s like you are refurbishing your home and it is going to take three month, then it&#8217;s a different mental model, like to put up yourself in a hotel or a second home for three months. If a magically a new company appears and hey, we can refurbish your home overnight. You don&#8217;t mind checking into hotel for one night. And that is where I feel like this WordPress will be net gain because of AI. Agencies has to be optimistic, and think differently to gain from AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like, what people are doing is everybody&#8217;s trying to act like a ChatGPT, OpenAI, it&#8217;s their job to invent AI algorithm. We are agency. Our job is to apply AI, not invent AI. We don&#8217;t have to think of what is Opus 4.8 will do. Let cloud engineers think of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we need to understand we are AI&#8217;s consumers or consultant, and that is where some people are getting it wrong by vibe coding things that they&#8217;re not able to sell to anyone. Then they will cry that, hey, six months later they will realise they built stuff nobody bought. Now they don&#8217;t have money to pay AI bills, or their developer salaries and then they will try that, hey, AI took over job, AI killed our business. No, think what existing problems we can solve with AI cheaply, efficiently, with better quality. And a lot of work is there to be done.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> There&#8217;s a lot in there, but one of the things that I&#8217;m taking out is. So prior to AI coming along and demonstrating to us all what it could do, which by the way didn&#8217;t kind of happen overnight, although it feels like it did, there was a sort of, a year in which we could suddenly see, oh boy, it&#8217;s getting much more performant and much more interesting. But prior to that, it sounds like post COVID, you kind of inspected your business and were thinking, okay, how can we refine everything that we&#8217;ve got in the business and how can we put it all into this one system?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And again, with the benefit of hindsight, and I&#8217;m maybe going to use the word luck, maybe that&#8217;s not the right word. You, having done that work, then meant that when AI did come along, you weren&#8217;t trying to link up four or five or six or ten different things. You had this one source of truth. Which meant that you could cut waste, for want of a better word. You know, waste could be measured in terms of dollars or it could be measured in terms of time or it, whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You happened to be in that place because you&#8217;d done that preparatory work, not necessarily knowing that AI was going to come along and make all of this fun stuff possible. But with the benefit of hindsight, that&#8217;s exactly what it did.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;s curious, you said 70 or 80% of the business could be streamlined in that way. And I&#8217;m so staggered by that number. I thought you&#8217;d be in the kind of, I don&#8217;t know, 20, 30% or something like that. But a full 70 to 80%. So does that mean 70 to 80% of the things available, or do you mean that you were able to cut 70 to 80% of the cost or the time? Because I wasn&#8217;t sure which 70 or 80% you were meaning.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> It meant different things. First like, as I mentioned that we are not thinking AI adds just something to sell, but something to consume first. Because, again, dog fooding principle. We managed to sell WordPress better because we were a blog network. That&#8217;s why we could understood publishers better. We got into this Frappe ERPNext consulting because we built our backend with it. Now before we make any promise with AI, we have to be net gainer with the AI. And we believe that our internally, we will be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So there are two parts, actual cost of building something and the meta cost. Like cost of sale, like the writing proposal. marketing costs, like case studies, going to even preparing for articles. Non build cost is definitely, we are able to bring, I would say it&#8217;s already half, but it&#8217;ll be, further down. I will give you a very simple example.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Like in early days is when somebody used to submit rtCamps form, inquiry form, a human, would manually check like, Hey, what is the domain name of this email id? Are they on LinkedIn? Some 30 minutes and then they will write a note hey, this looks like a good quality lead. We are fortunate that we get a lot of inbound inquiries, so we had to have prioritise, like which leads we are going to respond first.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, as soon as somebody submits a form an AI integration does that, within minutes. And the notes are much more details, it creates action items. Across like WordPress our Frappe CRM, our Slack, everything runs like a clockwork, and we don&#8217;t need a human. So that, junior human job is definitely gone. So in sales team, we used to have like this entry level job. That is no longer there. Some jobs are actually going to get vanished. So now going on a call, meeting notes, a lot of those things are getting automated. So the cost of sale has dramatically came down.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What is the effect? Like, say we can now assume flat 10% discount compared to earlier pricing when we are thinking of a migration project. Like, let&#8217;s say, in early days, we used to think like hey, anybody wanting to migrate from Adobe Experience Manager? We must assume that they need to pay us 100k. On the initial call, we can say, hey, that would probably cost something like minimum 50,000 dollars.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The minimums, the starting numbers has came down because we need less energy to have those pre-sales conversations. Less number of minutes of ours spent building those demos. Very fast discovery. Data mapping sometimes happens in minutes. In fact we did one 10 days to prepare this migration literally in five days, that was unthinkable. And that included data migration, QA testing, like automation testing where somebody built a bought in panel, which would randomly open a Zendesk ticket and verify that all metadata and deploys are migrated into new health desk system, all within five days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where I have been saying that the cost of building custom solutions will fail. For like so low, like it&#8217;s 60, 70, 58. Like definitely more than half. It&#8217;ll be reduced by half more. People will buy custom solutions. So agencies are going to grow from here in just these one or two years. Because agencies, to price something upfront, we need consistencies. Like I&#8217;m running an airline and if my jet fuel is my biggest cost, and that is out of my control. Then how do I price my tickets? That&#8217;s AI hallucination, which is, I would say the jet fuel version of aviation industry.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Something happens in Middle East and fuel prices goes up. A war starts. So now when AI hallucinates so it&#8217;s like what we are internally tracking, or what we call as a KPI or internal metric is that, worst case, AI gains, that&#8217;s already 20%. Best case is more than 90%. In some cases it&#8217;s literally 90%. This range will keep compressing and that&#8217;s what I think 70% is my expectation in two years. We will have that maturity that, the build time will fall by 70%. That means. the client companies will hire more agencies to do more work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress will emerge as a winner, not only for its ecosystem, but its ability to expose structured data without any proprietary walls. AI was so fast that only an open source can keep up with it. In fact, we are seeing more migration inquiries with with the AI boom.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Oh, interesting. I was going to ask a sort of follow up question. Do you think that you, so you were mentioning, how to describe it, a rising tide carries all boats, or you certainly implied that the pie is getting bigger, if you know what I mean? So you are getting more phone calls, more migrations, more work, and you can obviously do that more affordably. And because you can pass on some of those savings to the clients, the price point lowers and so you get more inquiries because there&#8217;s this virtuous cycle of price going down, but quality staying the same or getting better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder if you, given your success in the past, I wonder if that transition will be easier for you, because the phone is already ringing, than it would be for somebody who was beginning in 2026? Because we all know when you begin, getting the phone to ring is probably the hardest thing. You know, getting those first 5, 10, 15 reliable clients, whatever it is that makes you work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder if you are in a uniquely good position, having a history of clients, a roster of clients that will come back to you. And also just being famous, for want of a better word, in the WordPress space, for doing the kind of things that you do. I wonder just what your thoughts are on that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> They&#8217;re both pros and cons. The only con for rtCamp is that our business model, a big part of what&#8217;s traditional like setting our flagship revenue stream for last 8 to 10 years was staffing solutions. We used to provide engineers, sometimes to other agencies, sometimes to publishers. So usually they used to have the leadership layer with them. We were more of executors, and if AI within the IT industry, the first casualty of AI revolution was that people who code, or people who can only code but cannot think. But luckily our hiring was very different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">While it is taking time, so as I said, net headcount addition has been slowed down. I think this is probably first time rtCamp&#8217;s career site doesn&#8217;t have any engineering opening. If we would&#8217;ve been like a publicly listed or like a shareholder owned company, we might have got mandate to fire a hundred people right now, because we have already gained by, so much that, our one third of our WordPress engineers are currently out of work when the work is rising.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because traditionally, when we needed eight people, now we were able to do in four people. But now we are using this. We have our own challenges, going from one kind of business to another kind of business model. The switch is causing some friction, but we are communicating it openly. We are giving people like more freedom. You give us ideas like which part of the entire business equation you can optimise. Is it editorial experience, is it migration cost? Is it data mapping, visual testing? So people are constantly building.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So change is there. Change is scary. It is scary for us also because we don&#8217;t want to fire people. We don&#8217;t want to lay off people. We want to return this team. From here onwards, we don&#8217;t see we are hiring more engineers for at least a year, because we have enough of them. But, we are so optimistic about this WordPress growth and the pie getting bigger.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We are hiring more sales and marketing team. Two days back I was telling like traditionally, we had this 90 to 10% ratio, like in 200 people, our headcount team, we would have 20 people. That would be, we can call as a sales and marketing department, I think next 50 hires will be only sales and marketing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Oh, that&#8217;s a big skew, isn&#8217;t it? So you&#8217;ll go to more like 30% marketing as opposed to 10% marketing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Yeah sales and marketing. By the way, when we say sales, sales in rtCamp means slightly different. It&#8217;s more of a initial consulting, basically making those solid promise, which can be backed by engineering, not over promising. So our sales team needs are more like a WordPress consultant, but we have a category within rtCamp which we call Growth Engineers, who are some of our best coders. But rather than writing code, they go on the first client call and make promises on behalf of WordPress which are practical, feasible, and real.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That is what our internship look like, because coding is race to bottom. Eventually the cost of building will shrink to the point that you don&#8217;t need many, you won&#8217;t need many traditional developers in any agency. You will need people who can imagine what needs to be built. There might be 20 different ways and which way this project should be executed. That prompt engineering, context in engineering.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the value is shifting and it&#8217;s definitely shifting away from people who can only code. That is why, probably from two years now, we might be at 300 people. Hundred of them will not be coding at all. But they will be prompting AI. They will be building vibe coded prototype in pre-sale stage to gain that customer confidence like early on that day. What you want is possible with the WordPress. It won&#8217;t cost that much. It&#8217;ll be given you fast enough that your life won&#8217;t be disrupted for many months, like your business operations won&#8217;t be disrupted for many months, so this is a thing</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> Yeah, nobody could deny that we&#8217;re in interesting times. I think a lot of people are very confused by what&#8217;s going on at the moment. You know, they&#8217;re trying to figure out a path. They&#8217;re trying to figure out how it affects their business. They&#8217;re probably in, I would imagine, quite a lot of cases, quite keen to stick to the ways that they&#8217;ve done it in the past. But certainly the picture that you&#8217;ve painted over at rtCamp is that you are aligning yourself with a very different future, kind of embracing AI, seeing where it can take you, trying to adapt your business. Being optimistic about it rather than pessimistic. Because I think there is quite a lot of pessimism around there at the moment. But seeing the opportunity and seizing it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Absolutely fascinating. There was so much to unpack there. I feel like we could talk probably for another nine hours about this because it genuinely is never ending. I would love to prize back the curtain a little bit more. However, time allows only this much. So what an interesting conversation. Thank you very much, Rahul.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just before we end, could you just tell us where we can find you online, should somebody want to, you know, maybe they&#8217;re experiencing a bit of anxiety of their own. Their agency is in a rudderless ship at the moment and they&#8217;re trying to figure it out. Where can people get in touch with you best?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> I am actually available on all social networks. I use LinkedIn least and email is most level way, I&#8217;m a bit old school there. But, yeah, Twitter. I check daily.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley:</strong> I will link to your bio in the show notes, but also, I will link to the presentation that you gave and any other bits and pieces that we discussed that I can find links for. I will mention those well. So head to wptaven.com, search for the episode with Rahul in it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you so much for chatting to me, and all I can say is all the best. I hope that all of the intuitions that you have turn out to bear fruit and be fruitful for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank so much for chatting to me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rahul Bansal:</strong> Thank you Nathan.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://www.linkedin.com/in/rahul286/\">Rahul Bansal</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Rahul has a long and accomplished history in the WordPress ecosystem. As the founder and CEO of  rtCamp, a company he started 17 years ago, he’s led his agency through the rapidly changing landscape of the web, helping enterprise clients such as Google, Fortune 500 companies, and major publishers solve complex problems with innovative WordPress-based solutions. <a href=\"https://rtcamp.com\">rtCamp</a> specialises in everything from large-scale website builds to more bespoke projects like Chrome extensions and SaaS connectors, and has grown to a team of hundreds over the years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Today’s episode takes a deep dive into Rahul’s recent talk at WordCamp Asia, which focused on what it will take to launch and scale an enterprise WordPress agency in the future. The conversation focused on real, hard-won lessons from rtCamp’s journey, but also on how rapidly the playbook is changing with advances in technology, particularly the explosion of AI tools and workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We discuss Rahul’s philosophy around hiring, namely, building a team of people whose strengths complement each other, rather than just replicating your own skillset. This approach has allowed rtCamp to adapt to new challenges, fill gaps in expertise, and weather major industry changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We then explore how this idea of “complementary sets” can also apply to choosing the right kinds of clients, those who value your expertise because they need what you offer, rather than simply hiring someone who does what they already know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A theme that emerged in the conversation was specialisation. Rahul outlines how, whereas rtCamp’s earliest differentiator was a simple focus on WordPress (when virtually no one else in India was), today’s agencies must drill down much further to stand out, choosing niches within niches, such as WooCommerce or payment gateway integrations, and becoming recognised experts in those areas in order to thrive in a much more crowded field.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Towards the end of the episode the discussion turns toward what might be the most significant topic for agencies today, artificial intelligence. Rahul described how recent advances in AI have not only altered his agency’s practices, but have given them a firm mandate, if something within rtCamp can be done by AI, it will be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about how AI is being leveraged inside rtCamp to automate and optimise everything from sales and proposal writing to project management and even technical proof-of-concept builds. With a unified platform for all business processes, the agency is now able to significantly reduce costs, speed up delivery, and focus on higher-value consulting and creativity, reshaping roles and team composition as a result.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in what it takes to stand out and succeed in the evolving world of enterprise WordPress agencies, how to confront uncertainty with both optimism and realism, and how AI can become not just a bolt-on feature but the operational backbone of your business, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://rtcamp.com\">rtCamp</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Rahul&#8217;s presentation at WordCamp Asia 2026: <a href=\"https://asia.wordcamp.org/2026/session/how-to-start-an-enterprise-wordpress-agency-in-2026/\">How to start an enterprise WordPress agency in 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.tv/2026/04/21/how-to-start-an-enterprise-wordpress-agency-in-2026/\">The same presentation on WordPress.tv</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://rtcamp.com/blog/17-years-of-good-work/\">A year of reinvention as we turn 17</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://frappe.io\">Frappe tools</a> mentioned several times during the podcast</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/rahul286\">Rahul on X</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.linkedin.com/in/rahul286/\">Rahul on LinkedIn</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Jun 2026 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:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Open Channels FM: BackTalk on Mission, Media, Localization, AI, and Giving Back to Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555607\";s:7:\"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://openchannels.fm/backtalk-on-mission-media-localization-ai-and-giving-back-to-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"The content reflects on past discussions highlighting the importance of amplifying diverse voices, localizing strategies, and contributing to the open-source ecosystem for future relevance.\";s: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, 17 Jun 2026 09:40:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Audio Wars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153172\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2026/06/audio-wars/\";s: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:1875:\"<p class=\"wp-block-paragraph\">It looks like Ubiquiti is coming for Sonos with its <a href=\"https://store.ui.com/us/en/category/premium-iot/products/upl-port\">PoE Audio Port, a $199 device</a> that closely resembles <a href=\"https://amzn.to/4vXqjcH\">the $499 Sonos Port</a>, and <a href=\"https://store.ui.com/us/en/products/upl-amp\">$599 PowerAmp</a>. Sonos is going up-market with <a href=\"https://www.sonos.com/en-us/shop/amp-multi\">the Amp Multi</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Sonos has <a href=\"https://www.bloomberg.com/news/features/2026-03-10/sonos-new-speaker-heralds-revival-under-ceo-tom-conrad-after-app-fiasco?sref=tT7Af65V\">had a rough patch</a>, but I&#8217;m pretty ride or die for them, and some of my favorite people are there: <a href=\"https://www.linkedin.com/in/tomconrad/\">Tom Conrad, the CEO</a>, <a href=\"https://www.linkedin.com/in/hbarra/\">Hugo Barra on the board</a>, and <a href=\"https://miketatum.com/\">Mike Tatum</a> in CorpDev (he&#8217;s the guy who got me to drop out of college and join CNET back in 2004!).</p>\n\n\n\n<p class=\"wp-block-paragraph\">The only time I don&#8217;t do Sonos in a home is for the <a href=\"https://syngspace.com/\">amazing audio experience of Syng Alpha</a>. The triphonic thing can be really magical. (Analog/vinyl is <a href=\"https://ma.tt/2009/04/visiting-shindo-labs/\">still Shindo Laboratories</a>, but that&#8217;s just for special occasions.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">For headphones right now, it&#8217;s either <a href=\"https://www.colorware.com/collections/wordpress\">some custom Airpods Pro 3</a> or <a href=\"https://amzn.to/44c5wGf\">the Sennheiser HDB 630</a> (<em>Hat tip: <a href=\"https://pud.com/\">Pud</a></em>, who is also making some crazy headphones).</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the go, I love pairing two <a href=\"https://amzn.to/4fQSchD\">Logitech Megaboom 4s</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, 17 Jun 2026 06:59: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Open Channels FM: Summer Updates New Features and Changes to Open Channels FM\";s:7:\"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://openchannels.fm/?p=2555698\";s:7:\"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://openchannels.fm/summer-updates-new-features-and-changes-to-open-channels-fm/\";s: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:192:\"Bob Dunn updates on Open Channels FM\'s recent developments, including a homepage redesign, the launch of \"Do the Woo\" as a standalone podcast, and upcoming features like Open Channels FM Live.\";s: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, 16 Jun 2026 11:55: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Assorted Links\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153102\";s:7:\"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:39:\"https://ma.tt/2026/06/assorted-links-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10498:\"<p class=\"wp-block-paragraph\">Sometimes you have to just start with beauty.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Listen to <a href=\"https://open.spotify.com/album/3eXr4s3rCLxNJpxqaIDyqJ?si=Z2vNOEF2Rm-s6BAkCVN4hg\">Jon Batiste&#8217;s <em>Beethoven Blues</em></a>, then <a href=\"https://www.youtube.com/watch?v=7VM8MsR4K10\">relish this interview, where he plays and talks about it</a>. I can&#8217;t <a href=\"https://theisolationjournals.substack.com/p/black-mozart\">wait for Black Mozart</a>, which is already starting <a href=\"https://open.spotify.com/prerelease/4WWjrjAmp0Xqah9zqgir4M?si=6ea98fbd9d1d40ee\">to trickle on Spotify</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Forget all <a href=\"https://www.ferrari.com/en-EN/auto/ferrari-luce\">that Ferrari stuff</a>, what <a href=\"https://www.wallpaper.com/design-interiors/lighting/jony-ive-lovefrom-balmuda-sailing-lantern\">Jony Ive did with his LoveFrom Sailing Lantern</a> is divine. I&#8217;ve now seen it in person, and it&#8217;s the light at the end of the tunnel.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153109\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2026/06/sailing-lantern-1024x576.jpg?resize=604%2C340&#038;quality=89&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">That led me to discover how awesome <a href=\"https://us.balmuda.com/\">Balmuda is</a>, and stumble upon the Japanese word <em>Monozukuri</em>, which, according to Google, &#8220;(ものづくり) is a foundational Japanese philosophy that translates literally to <em>the art and science of making things</em>&#8221; It goes far beyond standard manufacturing or production, representing a deep, holistic mindset that embraces craftsmanship, a relentless pursuit of perfection, pride in one&#8217;s labor, and a deep respect for materials.&#8221; Look <a href=\"https://global.toyota/en/newsroom/corporate/39758220.html\">at how Toyota embodies it</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Om has a <a href=\"https://om.co/2026/06/07/the-myth-the-mythos-and-the-man/\">beautiful and prescient post on The Myth, the Mythos and the Man</a>.  It predicted some of this <a href=\"https://www.techmeme.com/260615/p20#a260615p20\">Fable kerfuffle</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Connection</h2>\n\n\n\n<p class=\"wp-block-paragraph\">How <a href=\"https://source.android.com/docs/core/ota/modular-system/tethering\">amazing is tethering on Android</a>? I have a <a href=\"https://amzn.to/49TXYeM\">Pixel 10 Pro</a> with a USB-C Ethernet hub plugged into the WAN port of a <a href=\"https://store.ui.com/us/en/products/udr-5g-max\">Unifi Dream Router 5G Max</a> because the <a href=\"https://www.qualcomm.com/modems/products/snapdragon-x62-5g-modem-rf-system\">Qualcomm chip Unifi uses</a> is two generations behind what&#8217;s in the phone. (Hat tip: <a href=\"https://jesse.blog/\">Jesse</a>.) How <a href=\"https://satellitemap.space/constellation/starlink\">amazing are the 10,653 Starlink satellites floating above us, providing broadband from space</a>, from a company I heard <a href=\"https://x.com/gjurvetson/status/2065452568902279655\">might have had an IPO last week</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I reconfigure ports, channels, and flows, as nurses do for arteries and cannulas.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Numbers Don&#8217;t Lie, Check The Scoreboard</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Not <a href=\"https://www.nytimes.com/athletic/7355407/2026/06/13/knicks-nba-championship-game-5-win/\">just the Knicks</a>. After a 3-year hiatus of Review Signal benchmarks, the headline was <a href=\"https://www.therepository.email/review-signal-publishes-2026-hosting-benchmarks-after-three-year-gap-powered-by-its-own-open-source-load-testing-platform\">that Pressable dominated every category</a>, and with perfect uptime. However, the real story is about <a href=\"https://wp.cloud/\">WP.cloud</a>, which is behind the top scores for not just Pressable and WordPress.com but also the <a href=\"https://www.bluehost.com/cloud-hosting\">Bluehost Cloud plans</a>, beating <a href=\"https://www.oracle.com/cloud/\">Oracle Cloud</a> and <a href=\"https://cloud.google.com/\">GCP</a>-based solutions. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wp.cloud/\">WP.cloud</a> is <a href=\"https://ma.tt/files/2026/06/bezos-aws.jpeg\">our AWS</a>; <a href=\"http://pressable.com/\">Pressable</a> is our demo site. We want <em>every</em> host to offer the fastest and <em>most secure</em> WordPress possible. I&#8217;m happy to focus on infrastructure and let others figure out marketing and such <a href=\"https://en.wikipedia.org/wiki/Hi_and_Lois\">foofram</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you speak Danish and would like a random Radical Speed Month art project detour, check out <a href=\"https://automattic.github.io/nima/\">Joen Asmussens&#8217; Nima</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://automattic.com/\">Automattic</a> has been shipping, shipping, shipping. <a href=\"https://wordpress.com/blog/2026/06/10/wordpress-com-is-now-available-in-stripe-projects/\">Start a WP.com site from the terminal with Stripe Projects</a>. <a href=\"https://akismet.com/blog/introducing-the-official-akismet-php-sdk/\">Akismet PHP SDK</a>. Fun experiments from Radical Speed Month like <a href=\"https://wordpress.com/blog/2026/04/27/studio-code-beta/\">Studio Code</a>, <a href=\"https://www.stattic.net/\">Stattic</a>, <a href=\"https://wordpress.com/workspace/\">Workspace Mac App</a>, <a href=\"https://github.com/Automattic/cortext\">Cortext</a>, <a href=\"https://pressship.org/\">Pressship</a>, <a href=\"https://wapuu.studio/\">Wapuu Studio</a>,  <a href=\"https://studiowrite.app/\">Studio Write</a>, <a href=\"https://wordpress.org/plugins/desktop-mode/\">Desktop Mode</a>, <a href=\"https://flavorpress.io/\">FlavorPress</a>, <a href=\"https://github.com/jonathanbossenger/concilium\">Concilium</a>, <a href=\"https://developer.woocommerce.com/2026/05/07/woocommerce-for-claude/\">WooCommerce insights in Claude</a>, and <a href=\"https://en.wikipedia.org/wiki/Kaizen\">the <em>kaizen</em></a> of hundreds of behind-the-scenes bug fixes and improvements across our product suite. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of this came from those not historically in a product or engineering role, which we&#8217;re learning to navigate. I loved how customer-centric many things were. We also made a lot of rookie mistakes, but that&#8217;s part of how you learn, and I believe the acceleration of learning will be the biggest legacy of the Radical Speed Month experiment. That, and the fun games on <a href=\"https://automattic.com/work-with-us/\">our intranet</a>. <img alt=\"🙂\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png\" style=\"height: 1em;\" /></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-153136\" height=\"201\" src=\"https://i0.wp.com/ma.tt/files/2026/06/automattic-game-center-banner-1024x341.jpeg?resize=604%2C201&#038;quality=89&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">AI Hangover</h2>\n\n\n\n<p class=\"wp-block-paragraph\">I have <a href=\"https://ma.tt/2023/10/wowza/\">drunk from the sweet nectar of Waymo</a>, and now find myself calling an Uber so I can talk to 72-year-old Antoly from Azerbaijan, whom I slip a hundred-dollar bill as I step out. I weep when I see talented colleagues speak and write with words not quite their own. I <a href=\"https://www.pangram.com/\">masochistically Pangram everything</a> even though it sometimes mistakes my own hand-crafted prose for slop, or is that actually my soul being sanded down by consuming too many statistically probable next tokens?</p>\n\n\n\n<p class=\"wp-block-paragraph\">The uncanny valley of software, writing, products, and presentations so polished on the surface but built on thin foundations of understanding gives me an almost physical, nauseous reaction. I write this even as I listen to <a href=\"https://www.youtube.com/watch?v=tRsQsTMvPNg\">Claude FM music for thinking and building</a>,  probably <a href=\"https://ma.tt/files/2026/06/mythos-jailbreak-791x1024.jpeg\">Mythos-injected with subliminal messages</a> to remind me of the hours of audio transcribed in minutes; the programs that would have taken a team months, conjured from my hand in hours; the way I feel <a href=\"https://www.youtube.com/watch?v=8XV8aBNOIqI\">like Neo in the Matrix</a>, rapidly downloading new domains of knowledge.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What&#8217;s the name for the paradox, <a href=\"https://en.wikipedia.org/wiki/Jevons_paradox\">like Jevon&#8217;s</a>, that AI abundance and polish makes you crave messy, imperfect humanity even more?</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;s good to debate and ruminate, but only in small doses. Like salt in a dish, a little goes a long way. Avoid the <a href=\"https://pmc.ncbi.nlm.nih.gov/articles/PMC11036542/\">existential angst</a> of charting new territory by getting your hands dirty and trying things. You learn the most from failures when you can <a href=\"https://apagefrommunakusbook834350529.blog/2023/02/03/learning-to-laugh-at-yourself/\">laugh at yourself</a>.  <a href=\"https://amzn.to/4vmWaDB\">Build one to throw away</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Write Different</h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Writing is not the most important thing; thinking is. But writing is probably the best way to improve your thinking.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I saw this quote attributed to me and didn&#8217;t remember it, so I thought it might be an AI hallucination, but it&#8217;s actually something I said! In <a href=\"https://perell.com/podcast/matt-mulleweg/\">this early-years podcast with David Perell</a> buried on some corner of his site. Now <a href=\"https://www.youtube.com/@DavidPerellChannel\">David&#8217;s production quality is stellar</a>, and he gets amazing guests like <a href=\"https://www.youtube.com/watch?v=yb9Tz-RQFN4\">Maria Popova to discuss their craft</a>. I&#8217;ve enjoyed his rise and look forward to <a href=\"https://perell.com/\">following him</a> in the decades to come.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">I could edit and link much more, but sometimes you have to just <a href=\"https://vimeo.com/12238385\">press the Publish button</a> and <a href=\"https://www.youtube.com/watch?v=bJVOo4K_GGM\">let go</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Jun 2026 19:20: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: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:30;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Open Channels FM: The Balancing Act: Freedom, Convenience, and Open Source in an AI-Driven World\";s:7:\"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://openchannels.fm/?p=2555638\";s:7:\"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://openchannels.fm/the-balancing-act-freedom-convenience-and-open-source-in-an-ai-driven-world/\";s: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:341:\"So many of us are in a evolving relationship between freedom, convenience, and open source software in the world shaped by AI. The promise of freedom which is central to the open web and open source movements has to be continually weighed against the growing demand for convenience and simplicity. While open source software offers [&#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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Jun 2026 12:16: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Akismet: Introducing the official Akismet PHP SDK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284799\";s:7:\"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://akismet.com/blog/introducing-the-official-akismet-php-sdk/\";s: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:4711:\"<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-284805\" height=\"429\" src=\"https://akismet.com/wp-content/uploads/2026/06/screenshot-2026-06-10-at-11.38.37-am.png?w=1024\" width=\"1024\" /></figure>\n\n\n\n<div class=\"wp-block-jetpack-markdown\"><p>For twenty years, Akismet has kept spam out of WordPress. But spammers don’t care what your site runs on and neither do we.</p>\n<p>Last month we launched the <a href=\"https://akismet.com/blog/introducing-the-official-akismet-drupal-module/\">official Akismet Drupal module</a>. Today we’re introducing the engine that powers it: the official Akismet PHP SDK, a first-party client that brings Akismet to any PHP application.</p>\n<h2 id=\"what-it-is-and-who-itâ€™s-for\">What it is, and who it’s for</h2>\n<p>The Akismet PHP SDK is a first-party PHP client for the Akismet API. It’s built for the platforms the WordPress plugin doesn’t reach: custom apps, SaaS backends, and PHP frameworks like Laravel and Symfony. (The official plugins are still the way to go for <a href=\"https://wordpress.org/plugins/akismet/\">WordPress</a> and <a href=\"https://www.drupal.org/project/akismet_antispam\">Drupal</a>.)</p>\n<p>Under the hood it’s built to feel at home in a modern PHP codebase:</p>\n<ul>\n<li>Covers the full Akismet API, from comment-check and spam/ham submissions to key verification, usage limits, and account stats.</li>\n<li>Works with any PSR-18 HTTP client you already have (Guzzle, Symfony HttpClient, and the like) through auto-discovery.</li>\n<li>Ships a typed exception hierarchy that redacts your API key, so credentials never leak into your logs.</li>\n</ul>\n<h2 id=\"a-two-minute-quick-start\">A two-minute quick start</h2>\n<p>Install it with Composer:</p>\n<pre><code class=\"language-bash\">composer require automattic/akismet-sdk\n</code></pre>\n<p>Then check a submission:</p>\n<pre><code class=\"language-php\">use Automattic\\Akismet\\Akismet;\nuse Automattic\\Akismet\\DTO\\Content;\nuse Automattic\\Akismet\\Enum\\ContentType;\n\n$akismet = Akismet::create(\n    apiKey: \'your-api-key\',\n    site: \'https://your-site.com\',\n);\n\n$content = new Content(\n    userIp: $_SERVER[\'REMOTE_ADDR\'],\n    userAgent: $_SERVER[\'HTTP_USER_AGENT\'],\n    body: $formData[\'message\'],\n    authorEmail: $formData[\'email\'],\n    type: ContentType::ContactForm,\n);\n\n$result = $akismet-&amp;gt;check($content);\n\nif ($result-&amp;gt;isSpam()) {\n    // Reject it, flag it, or queue it for review.\n    // $result-&amp;gt;shouldDiscard() marks the blatant spam you can drop outright.\n}\n</code></pre>\n<p>That’s the loop: build a <code>Content</code> object, call <code>check()</code>, act on the result.</p>\n<h2 id=\"already-running-in-production\">Already running in production</h2>\n<p>The official Akismet <a href=\"https://www.drupal.org/project/akismet_antispam\">Drupal module</a> is built on this SDK. The SDK handles the API contract and type safety, while the module handles Drupal’s service wiring, queues, and moderation UI. That’s the pattern for Laravel, Symfony, and anything else you build: the SDK owns the Akismet integration and your framework owns the glue.</p>\n<h2 id=\"whatâ€™s-new-in-1-5-0\">What’s new in 1.5.0</h2>\n<p>We have just released v1.5.0, which is about giving Akismet more to work with, and giving you more back:</p>\n<ul>\n<li><strong>Richer content signals:</strong> <code>Content</code> now carries the site’s language and character set, plus the surrounding conversation context, so every check has more to go on.</li>\n<li><strong>More insight into every verdict:</strong> <code>CheckResult</code> now surfaces the error and classification Akismet returns, so you can log and act on <em>why</em> something was flagged, not just whether it was.</li>\n<li><strong>Extended multi-site reporting:</strong> For keys that span many sites, the new extended key-sites data adds per-site metadata for cleaner reporting and account hygiene.</li>\n</ul>\n<h2 id=\"get-started\">Get started</h2>\n<p>The SDK is open source and live on Packagist today.</p>\n<ul>\n<li>Install: <code>composer require automattic/akismet-sdk</code></li>\n<li>Packagist: <a href=\"https://packagist.org/packages/automattic/akismet-sdk\">automattic/akismet-sdk</a></li>\n<li>Source and docs: <a href=\"https://github.com/Automattic/akismet-sdk-php\">github.com/Automattic/akismet-sdk-php</a></li>\n</ul>\n<p>You’ll need an Akismet API key to make calls. Akismet’s <a href=\"https://akismet.com/pricing/\">Personal plan</a> is pay-what-you-can and free for personal, non-commercial sites. If you’re running something commercial, pick a paid plan that matches your traffic. Either way your code stays identical, since the plan lives with your API key, not in the SDK.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Jun 2026 10: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:\"Derek Springer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Open Channels FM: The Changelog: Still Here, Still Doing It\";s:7:\"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://openchannels.fm/?p=2555551\";s:7:\"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://openchannels.fm/the-changelog-still-here-still-doing-it/\";s: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:305:\"A bit over four years ago, in 2022, I recorded an episode from San Diego. I was getting ready for an event, about to attend my first-ever Contributor Day (which, yes, felt a little absurd given how many WordCamps I&#8217;d been to by that point). To fill the time before things kicked off, I sat [&#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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jun 2026 08:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Dennis Snell: Gutenberg Package Activity\";s:7:\"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:36:\"https://fluffyandflakey.blog/?p=3901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://fluffyandflakey.blog/2026/06/11/gutenberg-package-activity/\";s: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:1001:\"<p class=\"wp-block-paragraph\">Last week at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a> there was a get-together among WordPress Core committers and a question arose concerning the separate Gutenberg <code>npm</code> packages that are built and distributed. I was curious about how frequently they are updated and which ones are most active, so I asked Codex to review <code>git</code> commit activity, gather commits per package which touch files in that package, and then render it into a plot. It produced this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Also available <a href=\"https://fluffyandflakey.blog/wp-content/uploads/2026/06/gb-package-rates.html\">as a PNG image</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Script available <a href=\"https://gist.github.com/dmsnell/107642d8791e5bb88c4a3f9c521dad3d\">in a gist</a>.</p>\n\n\n\n<div class=\"wp-block-group alignwide\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n\n</div></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, 11 Jun 2026 20:34:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Dennis Snell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Open Channels FM: WordCamp Europe Takeaways: Community Vibes, Tech Advancements and Smarter Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555456\";s:7:\"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://openchannels.fm/wordcamp-europe-takeaways-community-vibes-tech-advancements-and-smarter-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"This Open Channels FM episode from WordCamp Europe discusses the event\'s vibrant atmosphere, the integration of AI in WordPress workflows, and the positive community outlook on evolving technology and opportunities.\";s: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, 11 Jun 2026 08: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: #220 – Cathy Mitchell on Why WordPress Events Matter: Community, Connection, and Giving Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=204704\";s:7:\"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:115:\"https://wptavern.com/podcast/220-cathy-mitchell-on-why-wordpress-events-matter-community-connection-and-giving-back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52587:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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, why WordPress events and community matter.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have Cathy Mitchell. Cathy has been working with WordPress since 2007. What began as a fun personal project during her maternity leave soon evolved into a fully fledged business with the launch of WPBarista in 2008. Over the years, Cathy has garnered extensive experience in the WordPress space, and is now working towards the 2026 WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focuses on the powerful role of community within the WordPress ecosystem, something that Cathy is deeply passionate about. We discuss how open, welcoming, and international the WordPress community feels, compared to more traditional corporate or volunteer environments. A theme that emerged was how involvement in WordPress has provided Cathy, and many others, with a sense of belonging and fulfilment, especially after life changes like becoming an empty nester.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion explores the motivations for volunteering and organising within the WordPress community, both from the perspective of newcomers looking for purpose and connection, and business owners assessing the return on investment from contributing or sponsoring events. This includes how easy it is to get involved, the unique lack of barriers and red tape, and the value of altruism and camaraderie.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other topics we explored with a broader impact of technology and loneliness, the importance of service and community for wellbeing, challenges in sponsorship amid changes economic times, and the vital need to engage the next generation in open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re interested in the human side of WordPress, how volunteering shapes both individual and the broader community, and what the future might hold for WordPress events and contributors, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Cathy Mitchell.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Cathy Mitchell. Hello, Cathy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:25] <strong>Cathy Mitchell:</strong> Hello. Thanks for having me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:27] <strong>Nathan Wrigley:</strong> You are very welcome. Cathy and I have been having, well, 15 minutes or so of chit chat just before we started the podcast. I&#8217;ve been learning a little bit about Cathy and we&#8217;re going to share all sorts of information.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think probably broadly we could talk about it as being the WordPress community, which is a subject which is dear to my heart.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, before we get into that, Cathy, I&#8217;ve had an introduction from you over the last few minutes, but would you mind sort of giving us your potted version of that, your shorter version, your bio if you like. Tell us who you are and how come you&#8217;re featuring on a WordPress podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:58] <strong>Cathy Mitchell:</strong> Well that&#8217;s a whole lot of imposter syndrome. Why I am featuring, because you&#8217;re kind enough to have me. I&#8217;ve been working with WordPress since 2007 and it was just something fun that I did to begin, much like you with podcasting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then a couple years in, I told my friends that they&#8217;d have to start paying me, or I was going to go back to work, find a real job. This was during my mat leave, and so it kind of just took off from there in 2008, started WPBarista.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And now I&#8217;m very interested in the community because I was looking for something to do in the WordPress community last year. Dan in the Canada Slack got a hold of me and said, hey, do you want to help with the WordCamp? And I said, sure. You know, I had time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And he got me in and brought me right up to like being on the organising team. And it was so fun but so shocking. Like, there is a lot of red tape in the corporate world before they let you do anything meaningful. Like you have to sweep the floors for a whole long time before they let you actually do something you&#8217;re good at. So this was remarkable. And this year I find to my surprise, I&#8217;m leading the 2026 WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s what I&#8217;m doing now. And we&#8217;re going to focus on community too. So I&#8217;m very excited about this topic, both from a corporate, like what do we get out of this? Or are we supposed to get something out of this? And from a personal standpoint, it&#8217;s been amazing to meet these people, and to be given a chance. And I found out I&#8217;m not the only one. This is like normal, which is bizarre and wonderful.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:37] <strong>Nathan Wrigley:</strong> My experience of the WordPress community, so I started in WordPress actually quite a long time after you did. Maybe sort of six or seven years after you began using WordPress. I really didn&#8217;t know that there was a community at all. I just downloaded the software and used the software. And then I can&#8217;t even remember really how it happened. It might have been through things like Facebook Groups or something like that, where I was trying to learn a particular thing? Or perhaps there was something in the dashboard which indicated that there was an event nearby.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I found myself, to my own surprise actually, I found myself at a WordPress event in London, WordCamp London, which at the time was going really strong. You know, hundreds and hundreds of people would show up every year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I remember purchasing a ticket and getting the train ticket and thinking, what am I doing? What am I possibly hoping to get out of this? And showing up and kind of being a bit like a timid rabbit sitting in the corner a little bit, and then it kind of worked out fairly quickly. Okay, this is all fairly benign. Nobody seems to be all that boastful. Nobody seems to be sort of shoving corporate speech down my throat, or trying to sell me anything unnecessarily.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And during the course of a day or maybe a couple of days, opened up a little bit and got chatting to people. And lo and behold, within a couple of years, a significant proportion of my free time, let&#8217;s call it that, outside of the commitments of daily life and family and all of that kind of thing, was taken up with doing WordPressy things in my spare time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I, I don&#8217;t know if the story maps the same as you, I&#8217;ve shared mine, maybe you&#8217;ll share something similar in a moment. The community to me is much more than just, oh, there&#8217;s a community there. It genuinely is a seriously important part of my life. To the point where if that was to be sort of whipped away, or somebody like a Thanos type character suddenly clicked their fingers and that disappeared, I don&#8217;t know what I would do with myself. I would really have to go out there and find an awful lot of other things to do. Was it a bit like that for you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:41] <strong>Cathy Mitchell:</strong> Not at all. I went to the forums first. And in 2008, 2009, there were some big names nowadays that were just answering us in the support forums. And so I learned from the best of the best, I think. And they would answer my ridiculous questions. I had no idea about PHP. I didn&#8217;t even know HTML. I didn&#8217;t even know what the internet was, like as broad concept. I asked my husband at the time like, okay, I don&#8217;t understand how my computer is talking to someone else&#8217;s computer, like you need to draw me a picture.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So anyway, I&#8217;ve only recently, I went to a couple of events, but I&#8217;ve always had the business mind. If I can&#8217;t see an ROI financially, I&#8217;ll say, from what I&#8217;m doing, then I don&#8217;t have time for it. But that was also during a time when I had a young family and then I became a single mum and then I had to work this business. And so it&#8217;s only really recently that I&#8217;m looking around and seeing people like you and going, this is unique.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ve been in volunteer communities, and now that my kids are all grown up, I&#8217;m kind of looking for those opportunities. What meaningful thing can I do with my time? And this just seems so unique. Like I volunteered at other places and there&#8217;s so much red tape and there&#8217;s so much, I don&#8217;t know, different feelings than this one. This one&#8217;s very open.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:09] <strong>Nathan Wrigley:</strong> I think the bit that is so curious to me is you can sort of dip in and dip out of it. Because, I don&#8217;t know, let&#8217;s say for example, you do something much more local, involved with your hometown or something like that. And you get involved in it and there&#8217;s a certain kind of, pressure is the wrong word, I suppose you can dip in and dip out of that as well, but do you know what I mean? You get involved in those philanthropic things locally and you get to know things and it becomes more of a habit, and you do the same thing over and over again. At least that&#8217;s my experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What I quite like about this is the international flavour of it. The fact that I&#8217;m being introduced people from really different parts of the world and cultures. And it&#8217;s very, very open, and it&#8217;s a real contrast to the bit that you just mentioned, where the corporate bit, and obviously there&#8217;s a side of our community which is very much devoted to turning a profit and what have you. But there&#8217;s a significant proportion of the people who don&#8217;t have that metric in their head when they&#8217;re introducing themselves to people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">They are just trying to be helpful and trying to deliver on the promise that the internet gave us back in the 1990s of, here&#8217;s the infrastructure to pass information around freely. Wouldn&#8217;t it be nice if everybody had the capacity to publish things, or to share things online without some sort of corporate overlord or paywall or algorithm? Which we&#8217;ve now probably regret deeply allowing that to happen to the internet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">All of those kind of things come into play. I have constantly, for the last decade, tried to sum up and capture what this is. And I always fail. It simply feels nice, is all that I&#8217;ve got, really. This community, the people in it that I hang out with, it just feels like a nice thing to do. That&#8217;s all I&#8217;ve got. No wisdom beyond that. It&#8217;s bizarre, isn&#8217;t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:53] <strong>Cathy Mitchell:</strong> I&#8217;ve been trying to quantify it too, and especially planning this next conference. I feel much like a student because there&#8217;s a large group, probably most people are not like me. Like they&#8217;re like you, at least the ones, in Slack that I&#8217;m talking to on a daily basis. And they&#8217;re the original nerds who are so happy, like were inspired and spent their free time, like this wasn&#8217;t their job. Promoting this and like answering my questions in forum as an absolute noob. So in that way I feel like I would really like to give back now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the community, yeah, I can&#8217;t quite put my finger on. I just talked to a sponsor yesterday and she is of course wanting to get in front of her audience, which is agency owners. But there&#8217;s a real sense of promoting the community because the healthier the community, the healthier all of us are. Not just financially, but it creates the forward momentum, I think as far as open source as a whole too. Like there&#8217;s a bunch of us, me included, even though I kind of am taking a corporate angle that really believe that open source could change the world. I still do, maybe even more so because AI is, can actually talk to things that are open source. Less so if everything&#8217;s behind a paywall.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:09] <strong>Nathan Wrigley:</strong> I think one of the things that you mentioned there, which suddenly sort of struck me is whilst there are a handful of people out there, and I say a handful, there&#8217;s obviously many millions of people. I think it&#8217;s fair to say that many people prefer to be in proximity to other people, to do things, to be in conversation with people, to have a shared experience. You know, we go to the cinema or the movie theatre to watch a movie. I mean I know the screen&#8217;s bigger and everything, but part of it is to be with other people and to go ooh and ah, at the same time and go to firework displays and concerts and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now all of that stuff can be done in an isolated environment in your house. You know, you can watch Netflix and you can watch the TV and get a similar kind of experience. But I think there&#8217;s some sort of core part of me at least, and the people that I hang out with at these kind of events and online who just enjoy that shared experience, that willingness to be involved in a similar task. Just to be pointing in the same direction as a bunch of other people, pulling together on the same team. And it&#8217;s unquantifiable. I literally can&#8217;t encapsulate it, but I think you and I are talking about the same thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What&#8217;s interesting is I accidentally found it fairly early on in my WordPress journey. Serendipity played a really blinding hand for me there. But I think had I not had, bit like that film Sliding Doors, I could easily have missed the cues which sent me to that WordCamp or whatever it was that got me started. And I probably could have gone for a decade or more and not even noticed it was a community and maybe discovered it much more recently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it sounds like that&#8217;s kind of happening to you. You mentioned that you are, I think in the show notes you described it as, it&#8217;s a lovely phrase, empty nesting. Does that mean when your children grow up and go away? Is that what that means?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:53] <strong>Cathy Mitchell:</strong> Yeah. That&#8217;s a pretty common phrase over here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:55] <strong>Nathan Wrigley:</strong> Oh, okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:56] <strong>Cathy Mitchell:</strong> This side of the pond. You know, you kick the little birdies out, and they&#8217;re spreading their wings. All of a sudden we&#8217;re left with, it&#8217;s a different life stage. I think we were talking a little bit about it. You&#8217;re getting there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:08] <strong>Nathan Wrigley:</strong> I&#8217;m going to there very, yeah, awh, it&#8217;s kind of filled with melancholy. On the hand, obviously I would love for my children to grow up, but on the other hand it&#8217;s, pulls all the heartstrings, doesn&#8217;t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So you are finding space in your life to do this kind of stuff. I&#8217;m going to ask a question, which is maybe a little bit personal, I don&#8217;t know. Hope you don&#8217;t read it in the wrong way. Do you find this stuff like meaningful and significant? Do you get a sense of fulfilment and satisfaction from the work that you are doing? For example, with WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because there must be moments when it&#8217;s a real chore and, you know, you&#8217;ve got far too many tasks which are spilling over, and you think, gosh, I&#8217;m just a volunteer. There&#8217;s no quid pro quo here. I&#8217;m just doing it out of the goodness of my heart. But on balance, do you get that warm and fuzzy feeling from doing all of this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:54] <strong>Cathy Mitchell:</strong> That&#8217;s a good question. I had time, so I started volunteering at a bunch of things. I started volunteering teaching kids, and then to go the complete other end of the spectrum, I did a seniors class at my local college last month. I just started volunteering because in my opinion, as a little amateur psychologist, I think service, serving our community is kind of the best way to, like you said, pull alongside someone. And then when you have like a focused goal, there&#8217;s a togetherness and I really need to grow my community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Me, and I think quite a few other people, there&#8217;s this whole epidemic of loneliness to be frank. Having raised the kids and then having done the job, now all of a sudden it&#8217;s like, I have time to invest in a real community. And I really want it to be worthwhile. I don&#8217;t want to sweep the floors for, maybe it&#8217;s an age thing, I don&#8217;t know. I&#8217;m so, so grateful that they let me do something that I&#8217;m good at, as far as organising, because they didn&#8217;t have to. That&#8217;s a big responsibility to put on somebody. And I am praying it all works out in the fall.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it comes because of the huge number of volunteers that all work together. So my job&#8217;s just basically pulling all these people together, and making sure that we&#8217;re talking to each other. Because one person can&#8217;t possibly do all of the work that comes with putting on a conference. At least not part-time. But yeah, I&#8217;m finding it immensely rewarding because I also feel like I&#8217;m good at it. Everybody loves to do something they&#8217;re good at.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:28] <strong>Nathan Wrigley:</strong> You mentioned something earlier where you sort of implied that you were very surprised that in the WordPress world, you were given a bunch of responsibility for an event. I mean, basically, I think a lot of that, isn&#8217;t there? There&#8217;s a lot of, whoever can show up does get the job really, because there&#8217;s a paucity of volunteers. And for an event of the magnitude of WordCamp Canada, if you&#8217;ve ever been to events like that, you sort of walk in and on every level it feels like a corporate event. You know, it&#8217;s very polished, highly polished. There&#8217;s catering, the venue&#8217;s all been booked, you&#8217;ve got name badges and there&#8217;s probably some translation going on, and there slides and every, there&#8217;s timetables and everything. And it&#8217;s all done by volunteers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I remember the same sort of thing, being asked to do a variety of different things and thinking, wait, really? You don&#8217;t know the inside of my head. I will mess this up so badly. But that is such a nice characteristic of our community. And you&#8217;ll fail together, if you know what I mean? You know, it is not like anybody&#8217;s going to let you deeply fail. People will step in and help you, should you need to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:31] <strong>Cathy Mitchell:</strong> Yeah, we have to say yes, like it&#8217;s part of the culture is, if people volunteer, we have to find a way to say yes. Like our default is yes, not, well, have you done this first?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:43] <strong>Nathan Wrigley:</strong> Yeah. It&#8217;s interesting because you obviously have done a lot of this kind of corporate stuff, and so have the impression that you ought to be qualified, I don&#8217;t know, a decade or two decades of this particular thing in order to be trusted to do it. And this is just, yeah, this is so different. Anybody? Bueller. Okay, you&#8217;ll do it. Great. Fine. That&#8217;s great, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:03] <strong>Cathy Mitchell:</strong> Yeah. You&#8217;re hired.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:04] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s it. That&#8217;s I&#8217;ve never done it before. It doesn&#8217;t matter. You&#8217;ll be brilliant.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:07] <strong>Cathy Mitchell:</strong> We&#8217;ll help you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:08] <strong>Nathan Wrigley:</strong> Yeah. And that camaraderie of binding together on a particular thing, in your case WordCamp, but the broader project, you know, the WordPress project as a whole, I feel it&#8217;s full of these kind of people. And we will get into in a minute I&#8217;m sure, how that maybe has changed for some people in the more recent past, and about the fact that the community does feel like it&#8217;s in a bit of a challenging place at the moment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I just want to go back a little bit because you mentioned, and neither of us I suspect will have the answer to this, but I&#8217;m interested in your intuitions anyway. You mentioned that people nowadays, maybe this has always been the case, but it feels like there&#8217;s been a change. Loneliness seems to be a very common thing now. And my sort of back of the napkin calculus points me in the direction of wondering if it is actually oddly technology. The very thing that we&#8217;re celebrating. If technology might be responsible for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, I look around and I see a lot of people who give an awful lot of what would&#8217;ve otherwise been free time, time that they could have gone out and socialised and what have you. And, you know, you sort of end up sitting on the couch and scrolling through social media and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Television has become so absolutely fascinating. You know, there&#8217;s like a billion different channels, and essentially there&#8217;s a thousand ways to keep yourself entertained all by yourself, and never speak to another human being, or be in proximity to another human being. There&#8217;s no question there, I just wondered if you had an observation or a similar thought process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:39] <strong>Cathy Mitchell:</strong> I looked up, because I knew we were going to talk about this, the stat on it. Because I know I&#8217;ve had the same feeling. And I&#8217;ve heard people talk about it, but I didn&#8217;t really know if that was like true or not, because whenever I am thinking or researching something, of course that&#8217;s what the algorithm shows me. So I&#8217;m always kind of hesitant, like is this actually real or am I just seeing this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it did say in a 2021 report, the US Surgeon General, and this is in the States, no 2023, that the health impact of a loneliness epidemic. Okay, General Vivek Murthy declared a loneliness epidemic in 2023. And he said that the health impact is the same as smoking 15 cigarettes a day. It&#8217;s not good for us. And that the biggest effect, 79% reported feeling lonely of the 18 to 24-year-old group, which is more like 40 some percent. What was it? 41% of 66 plus.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:35] <strong>Nathan Wrigley:</strong> Okay, so the younger you skew, the more lonely you are likely to be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:40] <strong>Cathy Mitchell:</strong> Yeah. And we also see, now I don&#8217;t know if this is correlative or causative, but technology has also skyrocketed in that period of time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:48] <strong>Nathan Wrigley:</strong> Yes. Yeah, and also probably, again, I&#8217;m drawing conclusions which are not based in fact or research or anything like that. You and I were both born in an era where that technology wasn&#8217;t available. So I imagine patterns were set down in our infant brains, which are perhaps different to the patterns that are set down now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;d be curious to see if there is a there, there. If the broad adoption, certainly in the UK, I can&#8217;t speak to Canada, but the broad adoption of technology to ever and ever younger children, to a really alarmingly early age. You know, you see children who are not even at school age who seem to have access to every technology under the sun, and who don&#8217;t seem to get that interaction from another human being. I wonder. And I&#8217;m going to sound all curmudgeonly and there&#8217;s probably going to be people shouting at me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:34] <strong>Cathy Mitchell:</strong> I have seen it change with the Gen Z that they&#8217;re talking about. And my kids fall in that category. Whereas I wanted to be, okay, it&#8217;s personal responsibility, so we&#8217;re going to raise them. It was new to me, so I raised my kids thinking, okay, tablets, I&#8217;m going to teach you how to use it, not restrict it. I was all open-minded about all.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now they&#8217;ve told me that if they have kids, they will restrict it far greater than I ever did. They were like, they won&#8217;t have nearly the freedom that I gave them in my open-mindedness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:06] <strong>Nathan Wrigley:</strong> Yeah, well, but you are forgiven for your open-mindedness because I guess humanity perhaps needed more evidence to draw conclusions around that. And perhaps those conclusions are now landing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:16] <strong>Cathy Mitchell:</strong> I think so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:16] <strong>Nathan Wrigley:</strong> Yeah, well, certainly as an example, I know that in Australia more recently, there&#8217;s now a widespread ban, I think under the age of 16, and I&#8217;m going to use the word illegal, maybe that&#8217;s the wrong word. Maybe there&#8217;s a technical definition, but social media is not permitted for children under the age of 16. And I think that there&#8217;s legislation being talked about in the UK of a similar nature, and some other European countries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don&#8217;t know how much traction that will have because I feel that there&#8217;s a persuasive argument, much like you described of, it&#8217;ll all work itself out. You know, we don&#8217;t need the government to tell us what to do, and all of that, and that all makes sense.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But my, I can well understand, I think in the UK also, there is a growing, a groundswell of this alternative way of looking at it. Like a rejection of the phones and the technology.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anyway, there we go. That was an aside. Do you want to contribute into that a little bit more before I push us back in the WordPress space?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:11] <strong>Cathy Mitchell:</strong> Yeah, I don&#8217;t want to be all, it&#8217;s bad, it&#8217;s bad, but I think that we&#8217;re seeing an effect. I really do believe that volunteerism, whether it&#8217;s with WordPress or anything else, in my faith background, being a person, a Christian person, I grew up seeing the service as an answer, as just part of our lifestyle. You just serve others. But now I&#8217;m seeing it come in a secular sort of way as well, where service is an antidote to loneliness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think no matter where you&#8217;re serving, not the church or any, like just pick a service. Being that cameraderie with people, having a similar goal, going in the same direction, like I really do think there&#8217;s hope. There&#8217;s hope out there for all of us. And it&#8217;s a great way to do something meaningful. Like you get to do all those things. You get to practise a skill, you get to do something meaningful, you get direction, you get cameraderie all by serving.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:03] <strong>Nathan Wrigley:</strong> I&#8217;m going to, say something now, and I&#8217;m going to caveat it heavily before I say it because A, it relies on my prodigiously bad memory, and B, it could just be fabricated anyway because the source could be utterly wrong. But it feels like there&#8217;s a kernel of truth in it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I was doing some research recently about happiness, that broad subject. You know, we would all like to be happy I&#8217;m sure. There&#8217;s a lot of people who spend a lot of time thinking about what this actually means, and trying to drill it down to some fairly basic maxims, if you like, for what leads to happiness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two of the biggest indicators of happiness are really interesting. One of the two is how often you spend with other people basically. How much time you interact with other human beings. Now I know that that&#8217;s not for everybody, but broadly speaking, that seems to be a huge indicator. If you actually get yourself out and you do things with other human beings, there is a definite benefit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the other one, which is very curious because I think it&#8217;s fair to say, you know, Canada and the UK, we&#8217;ve been brought up to worry about our own finances and amassing as much stuff as we can, and lining your nest for the future and everything. Well, this other one, controversially, the second one that I&#8217;m going to mention is the amount of stuff that you basically give away. And that could be time, or it could be finance, it could be any of those things. The more that you give away with no expectation of a return, that also apparently is a real indicator of happiness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think we can all identify that. That moment where you give somebody a gift and you&#8217;ve really thought about it, and you hand it over and you watch the face change as they unwrap it. And you think, they&#8217;ve loved that, haven&#8217;t they? And you&#8217;re not thinking to yourself, well, I did that. I made them happy there. You&#8217;re just thinking, oh look, they&#8217;re really happy. Isn&#8217;t that wonderful? So anyway, there&#8217;s my 2 cents of utterly unproven thoughts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:59] <strong>Cathy Mitchell:</strong> Okay. Learned something. Those are two, so the two things were being around people and altruism basically, with nothing expected in return.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:08] <strong>Nathan Wrigley:</strong> And funnily enough, they map very closely to what we&#8217;re talking about, right? We&#8217;re talking about events and socialising with other people, but also that, in this case, it&#8217;s not a financial thing that you are giving away, but you are definitely giving away an awful lot of your time for doing these kind of things. And maybe, given that little bit of information, it kind of becomes a little bit easier to justify because if you can say to yourself, this makes me happy, it might not seem it in those stressful moments.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:36] <strong>Cathy Mitchell:</strong> Yeah, today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:37] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s right. But ultimately that might be causing your happiness.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so there we go. That was our little segue. Let&#8217;s sort of bring it back to WordCamps. You were very kind to write me a bunch of show notes, and they really drew me in as I was reading them. And I want to sort of dwell on a few of them because you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:53] <strong>Cathy Mitchell:</strong> Had to convince you to get me on the podcast.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:54] <strong>Nathan Wrigley:</strong> Yeah, no, there not a lot of convincing needed. I loved it. You&#8217;ve got some sort of bullet points if you like, not really bullet points. You&#8217;ve touched on different areas where you feel that you&#8217;ve got something to say about, I dont know, why people might contribute and why they might volunteer and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it&#8217;s things like, why might new people, newbies, as you&#8217;ve described them, volunteer and why might business folk volunteer?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the first one was, let me go back. So I&#8217;ll read into the record what you wrote because it makes a lot of sense. You said, in 2025 I helped the organisers for WordCamp Canada and this year found myself the lead organiser. And this has been consistently one of the nicest, most open groups, that I&#8217;ve ever been part of. And then you strayed into why other people, for example, new people and business people might like to contribute.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the business side, you said, volunteers, boundaries when not getting paid, giving back, sponsoring folks, not necessarily a financial return on investment. And then for the newbies, you said, there&#8217;s other ways to contribute, for example, contributing in code or non-coding ways, and also just being a recipient of the open, friendly community that you encounter. So that was really it. Maybe I&#8217;ve said everything that you wanted to say.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:07] <strong>Cathy Mitchell:</strong> Well, those are kind of questions that I had coming from a corporate, and I keep talking to different people trying to figure out, I guess I&#8217;m looking for something other than altruism when comes to the corporate people at least. Like why are they sponsoring? And I can see, the pessimistic, or maybe the pragmatic, side of me to be positive wants to know why. Why are they putting the dollars in?</p>\n\n\n\n<p class=\"wp-block-paragraph\">But then on the other side, I think, well, if WordPress doesn&#8217;t do well, then they don&#8217;t do well. Like, if their businesses are based on WordPress. But then I also saw something that, if you sponsor open source projects, it makes hiring people that much easier, and also vetting people that much easier. Because it gets you into the community and so it goes both ways. People will be more likely to apply for your jobs and you will be more likely to have a way to vet them. That&#8217;s one thing I saw.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:04] <strong>Nathan Wrigley:</strong> I think there&#8217;s a lot of truth in that, or at least I&#8217;d like to believe there&#8217;s a lot of truth in that. That makes me feel happy about the whole situation. But what&#8217;s curious about what you&#8217;ve just said, and I don&#8217;t know how much of an intuition you&#8217;ve got on this, but if you were to go back to, let&#8217;s say the year, oh, I don&#8217;t know, 2018 or something like that, WordPress was experiencing this really stratospheric growth. You know, in terms of market share of the internet broadly, you know, the number of websites as a percentage, WordPress was going from sort of the low twenties to the mid twenties, high twenties, and then through the thirties, and then finally landing at this sort of 40%.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And during that time, saying this phrase sounds ridiculous because it is ridiculous, WordPress could kind of do no wrong, I think. There was just growth upon growth upon growth and a lot of companies, I don&#8217;t think needed to explain themselves to their directors quite so much. The return on the investment didn&#8217;t need to be made. It was just, look, we&#8217;re part of this thing, and there&#8217;s this rising tide, and we are one of the boats. And look, we&#8217;re going up as it all goes up. So it just happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, during COVID, and then especially over the last few years, and then now especially the last couple of years, inject AI into the mix, I feel that that calculus has changed a little bit. And there&#8217;s this inkling when you speak to the same corporate people who a few years ago were willing to open their wallets to sponsor events, the wallets are much, much harder to open.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Again, in much the same way that I don&#8217;t really know why the community is so fabulous. I don&#8217;t really know why the wallets are harder to open. But I think the landscape for sponsorship, and the requirement of a return on investment, as opposed to, well let&#8217;s just join in because WordPress is growing. I think that calculation is going to be harder and harder to make. And maybe you&#8217;ve got experience of this over at WordCamp Canada trying to gather sponsors. Perhaps you found it straightforward. Perhaps it&#8217;s been difficult. I don&#8217;t really know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:08] <strong>Cathy Mitchell:</strong> There&#8217;s almost like a perfect storm right now because wallets are tighter because over the last few years, at least in the States where my clients are, it&#8217;s become, economically there&#8217;s uncertainty. And so that trickles down and trickles up, right? And so more wallets are going to be a little bit more restrictive on what they&#8217;re going to buy, and they&#8217;re going to want to see more bang for their buck.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Corporately, also there&#8217;s been this huge rise in competition in the corporate world. There&#8217;s just way more competition over the last five or six years for just about anything when it comes to agencies or plugins or themes or whatever, there&#8217;s a lot more great competition, like good products out there. But then there&#8217;s also a lot more competition to get the clients, like clients have a lot more options.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so I think it&#8217;s a perfect storm. Like, do you want to put your money into WordPress because is that the future? Is there money for sponsorship? Plus WordPress has become stricter on what they require to sponsor, as far as trademark use and different things that have been put higher on the priority list.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I kind of see it like a levelling off. Like not as a bad thing because every industry can&#8217;t just, go, go, go, go. Like there&#8217;s going to be a levelling, right? Can&#8217;t be that easy. When I started, I didn&#8217;t even advertise. And I&#8217;ve had this business for 19 years. I&#8217;ve never advertised. That is going to go away. Like it was just, you know, I lucked out starting somewhere, but that&#8217;s not realistic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:44] <strong>Nathan Wrigley:</strong> So what&#8217;s interesting in that is I think I am the same. The only period in which I&#8217;ve been in the WordPress community was during this stratospheric growth period really. Everything has been, you know, people have argued on the inside about this, that, and the other thing, and whether a feature should ship in Core, or whether or not we should do this thing at an event or what have you. So there&#8217;s been some minor disagreements.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But broadly speaking, the whole project has just swelled and swelled and swelled. There&#8217;s this overarching sense of optimism and growth, and now the brakes are on. And so for me, it feels like unfamiliar territory. And because it&#8217;s unfamiliar, it feels a little bit scary because I don&#8217;t know what that means. I don&#8217;t know whether that means that things are going to just level out as you just described, or whether it means things are going to decline, or whether it means some of my friends are going to go away because the community, it&#8217;s no longer going to be something that they wish to frequent because their profitability is under question and they need to seek revenue from other different options. Maybe AI, maybe, whatever it might be. And so I think my concern just, it&#8217;s probably self-interest really. I&#8217;m just concerned because I don&#8217;t know what&#8217;s coming and that fear is, well, it&#8217;s fear.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:57] <strong>Cathy Mitchell:</strong> I think this brings me perfectly into the WordCamp Canada thing that I wanted to mention. Just because I see this event, and even the community team, as a whole in WordPress. There are teams in WordPress, by the way, for people that don&#8217;t know, that help you get involved. It&#8217;s not just coders, like there&#8217;s all kinds of teams. And one of them is the community team, and all we have to know how to do is plan an event or host an event or serve coffee. It&#8217;s amazing. But anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am excited about WordCamp Canada, and the reason I&#8217;m putting so much time and effort into this conference is because I really see it as a light at the end of this tunnel. Not at the end. Maybe midway. I have no idea what&#8217;s going to happen to my own business, to WordPress, I don&#8217;t know. But I think there&#8217;s one thing that I&#8217;m fairly certain of, even now, even in the midst of AI, and that&#8217;s open source. I really still believe that open source is the way of the future. I still think it is, open source and AI are probably the way of the future. Yeah, I don&#8217;t know how else to say it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think the exciting thing, and the thing that we need to do as people who got to take advantage of that uprise and that uptick, is you and I need to get young people involved. Like we need to get those young people involved in open source. I don&#8217;t even care if it&#8217;s WordPress or not, but they need to become part of a community that is exciting, that is beyond themselves. They need to see that we&#8217;re nice. We don&#8217;t bite. We&#8217;ll hire them. There&#8217;s just so much good that can come out of being together. And these are the nicest people. They&#8217;ll talk to people that are just standing around in the hallways with nobody to talk to, which is me. I&#8217;m an introvert, ironically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:38] <strong>Nathan Wrigley:</strong> You definitely don&#8217;t come across like that, just so that you know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:40] <strong>Cathy Mitchell:</strong> Well, we&#8217;re I&#8217;m pretending nobody else is listening.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:43] <strong>Nathan Wrigley:</strong> The other thing that I would add, as you were saying all of those things, it occurred to me that, I would imagine that people in more senior positions, I don&#8217;t really know how to describe it in the WordPress world, have got a similar intuition to the one that you just described. In that they can definitely see that the future needs to be thought about in terms of the youth coming in. Because there&#8217;s an awful lot of work being done at the moment and an awful lot of hours being put into educational initiatives.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And also, not just where you and I are living, but all over the world. And it was kind of interesting at WordCamp Asia recently, that was a big focus. A lot of people talking about exactly this thing and these kind of overlapping initiatives that are beginning to bear fruit. So people coming out of universities who&#8217;ve had experience of open source and WordPress in particular. And children at schools having experience of open source and WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think, as much as we would like open source and WordPress to win, just from a moral point of view, wouldn&#8217;t that be a great thing if everybody just noticed it and got on and used it? I think we need to do a bit of work to make sure that it&#8217;s being put under their noses so that they can make those judgements for themselves. And that is definitely a part of the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:57] <strong>Cathy Mitchell:</strong> Yeah, the Campus Connect and the Credits where they can university credits, like it is getting popular in other places we haven&#8217;t heard so much. But I really want to introduce it and bring it to the conference in Vancouver this fall. Because we can have universities in Canada and the US, on this side of the pond get involved in this and actually give kids credits that they can use to graduate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:21] <strong>Nathan Wrigley:</strong> It&#8217;s so interesting as well because it&#8217;s very hard to, how to describe this, that&#8217;s a difficult one to sell, let&#8217;s put it that way. The people that are really into those initiatives really love it, but it&#8217;s hard to get people to notice that that&#8217;s going on, and hard for people perhaps to notice how important that is. But without those little foundational bricks being put in place for the future, this rising tide carries all boats metaphor, that&#8217;s not going to happen. You know, I think maybe another good metaphor there is they&#8217;re kind of building the harbour wall to make sure that the boats have got something to rise against. And I think that&#8217;s really important.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And your part of the world is definitely open to that, I&#8217;m sure. Seems to be that some European institutions, colleges, universities and South American institutions and parts in India and Southeast Asia and places like that are also beginning to bite on those ideas as well. So it&#8217;d be really interesting to see how that all goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You&#8217;re painting a picture, Cathy, which makes me feel optimistic. Feels like there&#8217;s a lot of positivity coming out of where you are, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:24] <strong>Cathy Mitchell:</strong> I&#8217;m probably going to get in trouble for saying this, but for all of the faults that Matt might be accused of, somehow he put something in place that became very, very popular. And the culture that I have been a part of, I haven&#8217;t worked for Automattic, but the culture at the WordCamp level and volunteering and the community team has been unbelievably positive, and foreign to me. Like I&#8217;ve had to learn this culture. What do you mean there&#8217;s no application process? How do I say yes? What are you talking about? So somehow this has grown. And he has had a lot to do with it. People don&#8217;t like that he&#8217;s had a lot to do with it, but there&#8217;s some truth there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:07] <strong>Nathan Wrigley:</strong> It&#8217;s really interesting and it doesn&#8217;t matter how many times I have conversations like this, I&#8217;m always confused by it. I can never get my hands around it and work out what the secret sauce is so that I could copy and paste it into a different locale or a different jurisdiction or different era. But there&#8217;s a there, there. There&#8217;s something very satisfying about this community. And from everything that you&#8217;ve said, it sounds like you are very positive about it. And I share your positivity, even though sometimes it seems quite hard to grasp in the more recent times.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Oh, Cathy, that&#8217;s been absolutely wonderful. I&#8217;ve enjoyed chatting to you today. We&#8217;ve hit the sort of sweet spot of the amount of time that we&#8217;ve got, so if it&#8217;s okay with you, we&#8217;ll wrap it up there. Just before we go, if anybody wants to get in touch with you, or just sort of wants to pat you on the back for your wisdom there, where would we find you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:55] <strong>Cathy Mitchell:</strong> Well they can find me at WPBarista. And right now they can also find me at canada.wordcamp.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:02] <strong>Nathan Wrigley:</strong> Okay. Well I will make sure that that goes into the show notes. So if you&#8217;re listening to this, head to wptavern.com, search for the episode with Cathy Mitchell, that&#8217;s Cathy with a C, and you&#8217;ll be able to find the details in the show notes there. So Cathy Mitchell, thank you very much for chatting to me today. That was lovely. Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:40:19] <strong>Cathy Mitchell:</strong> Thank you. I enjoyed it.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Cathy Mitchell.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Cathy has been working with WordPress since 2007. What began as a fun personal project during her maternity leave soon evolved into a fully fledged business with the launch of WPBarista in 2008. Over the years, Cathy has garnered extensive experience in the WordPress space, and is now working towards the 2026 WordCamp Canada.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focuses on the powerful role of community within the WordPress ecosystem, something that Cathy is deeply passionate about. We discuss how open, welcoming, and international the WordPress community feels compared to more traditional corporate or volunteer environments. A theme that emerged was how involvement in WordPress has provided Cathy, and many others, with a sense of belonging and fulfillment, especially after life changes like becoming an &#8220;empty nester&#8221;.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion explores the motivations for volunteering and organising within the WordPress community, both from the perspective of newcomers looking for purpose and connection, and business owners assessing the return on investment from contributing or sponsoring events. This included how easy it is to get involved, the unique lack of barriers and red tape, and the value of altruism and camaraderie.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other topics we explored were the broader impact of technology and loneliness, the importance of service and community for well-being, challenges in sponsorship amid changing economic times, and the vital need to engage the next generation in open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in the human side of WordPress, how volunteering shapes both individuals and the broader community, and what the future might hold for WordPress events and contributors, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wpbarista.com\"> WPBarista</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://canada.wordcamp.org/2026/\">WordCamp Canada 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://london.wordcamp.org/2019/\">WordCamp London</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://events.wordpress.org/campusconnect/\"> WordPress Campus Connect</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/education/credits/\">WordPress Credits</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, 10 Jun 2026 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:36;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"Open Channels FM: BackTalk on AI Burnout, Bridging Innovation and Standards, and the Risks of Single-Maintainer Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2555405\";s:7:\"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:122:\"https://openchannels.fm/backtalk-on-ai-burnout-bridging-innovation-and-standards-and-the-risks-of-single-maintainer-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:212:\"Conversations reveal insights on deep work, innovation standards, and the risks of underappreciated developer tools, highlighting challenges of mental fatigue, standardization, and reliance on single maintainers.\";s: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, 10 Jun 2026 09:40: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Open Channels FM: Rethinking Developer Life and Productivity with Rapid AI Advancements\";s:7:\"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://openchannels.fm/?p=2555214\";s:7:\"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://openchannels.fm/rethinking-developer-life-and-productivity-with-rapid-ai-advancements/\";s: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:264:\"In this episode of Open Web Conversations, Zach Stepek and Carl Alexander discuss with Alex Standiford the impact of AI on developers, highlighting productivity, burnout, workflow changes, and the necessity of setting boundaries in this rapidly evolving landscape.\";s: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, 09 Jun 2026 10:41: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Gutenberg Times: Gutenberg Changelog #131 – Gutenberg Plugin Releases 23.1 – 23.3, Calls for Testing for 7.1 and more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=45809\";s:7:\"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://gutenbergtimes.com/podcast/gutenberg-changelog-131/\";s: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:60685:\"<p class=\"wp-block-paragraph\">In episode 131 of the Gutenberg Changelog, Birgit Pauli-Haack welcomes Isabel Brison to discuss the latest developments in Gutenberg plugin releases 23.1, 23.2, and 23.3, as well as progress leading up to WordPress 7.1. The hosts highlight recent calls for testing, including collaborative editing—previously delayed from 7.0 due to stability concerns—and the new media editor modal for the image block.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Isabel Brison shares insights into the new responsive global block styles, allowing users to customize styles per device breakpoint, as well as updates to the layout and dimensions controls in the block editor. She encourages feedback from users as these features iterate for the upcoming WordPress 7.1 release. The episode covers stabilizations, such as the improved, more ergonomic media editor and cropper, and strides in accessibility, particularly regarding the tabs block.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The hosts also discuss experiments in dashboard widgets, content type management, and empowering plugin developers with new admin UI components. Both stress the importance of community feedback and testing, given the ambitious new features arriving soon. The episode wraps with practical notes on documentation improvements, React 19 integration, and a reminder of the short summer break ahead.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-131/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-131/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size wp-block-paragraph\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special guest: Isabel Brison</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>GitHub <a href=\"https://github.com/tellthemachines\">@tellthemachines</a></li>\n\n\n\n<li>WordPress <a href=\"https://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a></li>\n\n\n\n<li>X (former Twitter) <a href=\"https://twitter.com/ijayessbe\">@ijayessbe</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Calls for Testing</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/06/03/announcing-a-collaborative-editing-outreach-effort-for-7-1/\">Announcing a collaborative editing outreach effort for 7.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/21/media-editor-modal-call-for-testing/\">Media Editor Modal: call for testing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/04/call-for-testing-client-side-media-processing/\">Call for Testing: client-side media processing</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/news/2026/05/wordpress-7-0-armstrong/\">WordPress 7.0 “Armstrong”</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/14/wordpress-7-0-field-guide/\">WordPress 7.0 Field Guide</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/wordpress-7-0-source-of-truth/\">WordPress 7.0 Source of Truth</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/05/react-19-upgrade-temporarily-reverted-in-gutenberg/\">React 19 upgrade temporarily reverted in Gutenberg</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg releases </h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/05/07/whats-new-in-gutenberg-23-1-07-may/\">What’s new in Gutenberg 23.1? (07 May)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/21/whats-new-in-gutenberg-23-2-21-may/\">What&#8217;s new in Gutenberg 23.2? (21 May)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">What’s new in Gutenberg 23.3? (03 Jun)</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So welcome to our 131st episode of the Gutenberg Changelog. We will talk about Gutenberg plugin releases 23.1, 23.2 and 23.3. There are calls for testing out for WordPress 7.1 and we have more. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project sponsored by Automattic. Today, Isabel Brison joins me from Sydney again. Isabel is a longtime core contributor and JavaScript developer on the Gutenberg Project. Welcome back to the show, Isabel. Thank you for joining me. How are you?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison</em>: I&#8217;ll be good. Thanks for having me. It&#8217;s always a pleasure to be here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Well, I&#8217;m so glad you&#8217;re here because you and your team have worked on some of the most exciting features that coming to Gutenberg. People have been waiting for quite a long time. So we will dive in when we get to the updates. How is Sydney?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>It&#8217;s winter, cold, rainy, you know, the usual.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>The usual? Yeah. How is the technology? I know you&#8217;re going to meetups there. Are these WordPress meetups or are these other technology meetups?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>I go to a variety of tech meetups. There&#8217;s not a huge amount, so I&#8217;ll go say to JavaScript meetup and there&#8217;s a good technology leaders one too. I enjoy going to the Python meetup even though I don&#8217;t work with Python. It&#8217;s just a lovely community and they have some interesting talks. So it&#8217;s sort of whatever&#8217;s on offer, I guess.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, nice. Yeah, I found out in Munich to the technology community and I kind of connected with a local Claude meetup community and it was kind of interesting at the Technical university or the Design university, they switch around the places, but it was interesting. Yeah, they had some lightning talks. Yeah, like 20-minute talks and it was really cool. Yeah, I think we need to get out more.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, no, I like, I like going out after work and just, you know, even if it&#8217;s just to listen to some tech talks, you get a bit of air and meet new people.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, that&#8217;s good. Yeah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">All right, so we have a few announcements. WordPress 7.0 has been released two weeks ago and we are heading big steps towards 7.1. Beta 1 is scheduled for July 15th. That&#8217;s kind of a little bit of ahh. It&#8217;s only six weeks away.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah. So we get going not long time at all.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And contributors have been working on the next major version already. So the official roadmap planning post is in the works. The team is in the final steps to assemble the release squad and we do well from the Gutenberg plugin releases we get a pretty good idea what might come through also from what didn&#8217;t make it into 7.0 as well. So we will. But it&#8217;s the web, right? Web is translated for me in the Japanese kind of design thing. Yeah, it&#8217;s like wabi sabi. Nothing is finished, nothing is last, and nothing is perfect. So we always get work to do and it&#8217;s always getting better. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yep. It&#8217;s a work in progress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>It&#8217;s a work in progress. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Calls for Testing &#8211; WordPress 7.1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">So there are two calls for testing out now. One is announcing the collaborative editing outreach effort for 7.1. Many of you dear listeners remember, okay, collaborative editing, real time collaborative editing was pulled from the 7.0 because it wasn&#8217;t stable enough for all the hosting environments that are out there. And there was this call for testing out for hosting and now there&#8217;s another one for outreach effort to make sure that everything is kind of caught for 7.1. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And Anne McCarthy just published it on the Make Core blog so you can join it anytime. There&#8217;s a separate channel Collaborative Editing Outreach that you can. It&#8217;s kind of modeled after the full site editing outreach program that ran for two or three years. I hope this doesn&#8217;t run for two or three years before it&#8217;s released, but it definitely there are more people kind of discussing it and how it all supposed to work. Amy Kamala, who was the Release Coordinator for 7.0 and Justin Tadlock, who is a developer advocate at Automattic and Theme Team Rep are helping Anne to coordinate those calls for testing. And also some of the teams at Automattic who work with Enterprise level are also there. So yeah, it&#8217;s a bigger discussion on how collaborative editing works on all the levels.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, it&#8217;s a pretty big and complex piece of work.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, join the channel and dive right in if that&#8217;s a feature that you are excited about. I&#8217;m excited about it. But I also only have two or three people that handle my editing stuff. So I don&#8217;t have 10 or 15 editors in my post zone. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Another call for testing is about the media editor Modal that has been added to the image block. Ramon Dodd published a call for testing about two weeks ago about the new modal for the image cropper. It&#8217;s kind of the bigger image cropping in the block editor, so you don&#8217;t have to. It&#8217;s a much easier way to get your images in line, but you can also rotate the images and resize them. And it has been merged with the Gutenberg plugin. It also, with 23.3, is out of experimentation. So anybody who has the Gutenberg plugin installed can be testers. And Ramon has some great details on how to test things and what to look for and how to share the feedback. It also has a little paragraph there on what&#8217;s out of scope. So for this version, we of course share all the links in the show. Notes. Isabel, you&#8217;re part of that project. What excites you about it?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>I haven&#8217;t actually, actually worked on it. Well, not I, I, I helped a little, a little bit at the very beginning when we were discussing sort of choice of libraries and whether to build our own or use a third party. And a bit with the initial testing, but it was mostly Ramon and Andrew&#8217;s work. This latter part, the bit that&#8217;s now in Gutenberg, in fact, it was all their work. And I think it&#8217;s super exciting because replacing the old, the old Cropper, I. I never liked it. I have to be perfectly honest.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I hate the old Cropper.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>I never could figure out how to use it. It was not ergonomic at all. And this one is such a better experience. Aside from allowing us to do all the stuff that the old Cropper, the in Editor Cropper is what I&#8217;m talking about. The one that you can access from the Image block toolbar. It&#8217;s also on the site Logo block. So you can now access it from both those blocks and the new one, in addition to what the old one did, also allows you to do free cropping and free rotating. So if you want to rotate your image 3 degrees and if you want to crop it to whatever weird aspect ratio you like, you can do that, which you couldn&#8217;t on the old one. Yeah, and it&#8217;s. It&#8217;s just a much nicer experience. I believe it&#8217;s also more accessible than the old one in terms of the keyboard accessibility of it. It&#8217;s. It&#8217;s better too, so. All advantages. Yeah, they did a great job on it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I used it just for a little bit and I was so amazed how smooth it was. Yeah, I kind of. It was also much more intuitive. I never knew what to do with the Cropper when I was pinging it previously and said, so how do I do this now? Every. I had to think every time. And this one is very, very intuitive and very smooth also to use it and to see it. So I&#8217;m really happy about that. I&#8217;m hoping it makes it into 7.1. Yeah, so we have that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, it&#8217;s, it&#8217;s on track, I don&#8217;t think. I mean, barring any major natural disaster, I don&#8217;t think that there&#8217;s any reason for that not to make 7.1. It&#8217;s a great piece of work. It&#8217;s really stable and now that it&#8217;s not behind the experiment flag anymore, real users are using it. I&#8217;m sure we&#8217;re going to get tons of feedback if there&#8217;s anything that&#8217;s not 100% perfect and we still have time to iterate on it until beta one.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>I really appreciate that Roman and Andrew went to the research portion and kind of looked at how other graphic programs actually are doing things and tried to get some of the experiences also into the blocked. So okay, yeah, so two calls for testing for those who want to dive in. It&#8217;s a very good way to contribute to WordPress because it&#8217;s so close to what you&#8217;re doing with WordPress. And not only developers but also content creators can help testers even better and those who work at agencies or work with clients at agencies to kind of see how that all works. Which brings us to what&#8217;s released. I mentioned it. </p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; WordPress 7.0</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 Armstrong was released. We talked about it in previous episodes on this changelog with various people from the agency view, from the designer view, from the content creators views. We will share in the show notes in case you need to catch up. The Field Guide the link to the official field guide for WordPress 7.0 as well as to the source of truth on Gutenberg Times that has all the user facing stuff in there. Those are the best information on 7.0. I have not seen in the last two weeks any major boo boos that came in. Yeah, it was such a great testing cycle with a delay of six weeks. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Most of the bugs were actually caught quite early or in the loliso, I don&#8217;t think. I&#8217;m not sure when there will be a point release which normally happens within a few weeks of the major release, but I have not seen any planning for that. But it could be end of June after WorldCap Europe. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So let&#8217;s dive into the Gutenberg releases. We start with Gutenberg 23.1. Oh, one question, Isabel, do you have a favorite feature that came into WordPress 7.0?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Oh, I don&#8217;t know. There&#8217;s a bunch of interesting features and I worked on some of them. Of course I have sort of my personal favorites of the ones that I worked on of which one that is. It was very, very subtle or sort of low profile. We didn&#8217;t talk about it much, but I worked on a little handy addition to the grid block or the grid layout type, I should say. That allows us to configure a responsive number of columns. So by setting column count and a minimum width you can say I want my block to always have at maximum three columns but on smaller screens it can go down to two and even one. So that&#8217;s something we didn&#8217;t have before and I&#8217;m quite happy with it. I think it&#8217;s a good improvement. But compared to. Oh, there was. There was loads of stuff. The pattern editing work I think is going to be really handy. And what else? There was the notes feature.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> No, I was in 6.9 already. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Oh yeah. No, there was something about what? Oh God, I&#8217;m confusing my releases.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, yeah, they&#8217;re kind of. They melt together once it&#8217;s released. They melt all together. It&#8217;s kind of. Yeah. Was it there or there? Yeah, sometimes. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">All right, let&#8217;s dive into Gutenberg 23.1. It was released on May 7, had 212 closed PRs by 49 contributors. So we are really wrapping up the releases or the work on Gutenberg and the block editor. It&#8217;s now not only the block editor, it&#8217;s also the site editor. It&#8217;s the data views, it&#8217;s the. The design system, those all. So the Gutenberg repo has kind of exploded in other areas for the WordPress ecosystem. So. But yeah, the first one on the list and it&#8217;s. It&#8217;s really interesting how these change logs are actually automated and coming together is the upload media and it enabling concurrent sideload uploads. That&#8217;s an interesting thing because it&#8217;s so performance issue to have multiple streams on upload on images so you don&#8217;t have to wait so long that the image shows up in your block canvas. And that&#8217;s a really good improvement for that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, yeah. I&#8217;d imagine when uploading, when bulk uploading particularly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So when you copy paste content from another source it has this also a feature that you can download and upload the images that you connect there. And that also happens in this module stream uploads thing. So it&#8217;s really cool. You only know this because it&#8217;s faster but other than that there&#8217;s no disruption of your work or any of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, there&#8217;s a lot of good work. This was also the client side. This is part, I believe, of the client side media processing work that did not make 7.0 but is now being aimed at 7.1. That&#8217;s mostly Adam Silverstein&#8217;s been working on that. I haven&#8217;t kept a close eye on it, but it looks like, you know, very useful work and it&#8217;ll be good once we manage to get it in for performance.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, Adam Silverstein has worked on these image handling features quite a bit for 6.9 as well. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, there is an enhancement that I have flagged here, but I&#8217;m not sure how useful that is. It&#8217;s for the WordPress UI overlays and a global preview styles on the storybook. So the WordPress UI is the next level of components for WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>It&#8217;s sort of the successor of the components package.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And at the moment both are used, but I have seen now efforts to migrate, merge things, I don&#8217;t know how you call it, but to get it kind of in one thing. But the overlays, the preview styles is how you can show the preview in the storybook so you have a better inkling how it&#8217;s going to look later on.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, that should be good.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And then there are tons of changes for the components, the admin ui, the UI components, dialogues. This is mostly for developers that are working with WordPress and creating their own either building WordPress or creating plugins for WordPress to have a unified design system, unified component system that they don&#8217;t have to kind of come up with their own interfaces. Those decisions are already made and you can kind of build on top of things before any of that, even the components, every plugin had to design their own interfaces and now this is really cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, it&#8217;s good to have a sort of a system that you can use when you&#8217;re extending and you need to build a new screen or something for your plugin, you can just use these components and everything looks integrated with WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>And it&#8217;s also good for the users because they don&#8217;t have to think about how do I use this tool now? Or how, how is. How do I filter now on this screen? Because it&#8217;s all a unified system and it&#8217;s all built out and stable. So the next thing is on the notes getting a few updates. So right now it&#8217;s in 23.1. It&#8217;s mostly refactors on the positions and the floating board. But we will see later in, in the other releases that there are some nice features coming in for the Blocked libraries. We have updates to the tabs block. I&#8217;m really hoping that it comes into 7.1. It&#8217;s still behind an experiment flag, but now it can handle duplicate tabs, meaning duplicate handles on the tabs. And it follows now WCAG tabs pattern for accessibility in the renaming of the blocks. So which is a. It&#8217;s a major step towards accessibility and acceptance for that. I&#8217;m really waiting for the tabs to come into Gutenberg or to.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Mostly I think the renaming was about as I understand it, so that the blocks have names that match the accessibility standards or how these things are known as. There&#8217;s a WCAG pattern it&#8217;s linked to in the PR, and those sort of example patterns that the WCAG website has for people to know how to use ARIA attributes correctly, which is a whole science. And the idea is to have our tabs blocks match the names of that pattern so that it feels more standard and it&#8217;ll be more familiar to people who might have implemented tabs in other places.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And those are the standards also where screen readers kind of tap into and people are. That use screen readers kind of have a common pattern for that. Yes. So that definitely elevates the tabs block in its accessibility. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>So it&#8217;s going to be pretty useful block once it&#8217;s stabilized. So I hope it is.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. Yeah. I know that quite a few block collections have tabs right from the beginning in the last eight years. And they&#8217;re not going to go away because the first iteration of any of the core blocks will not be as feature rich as any of the block collections that have been developed for the last six or seven years. Yeah. The next one is tapping into the image cropper we talked about. So you can. And it was tapping into the keyboard actions with drag handles on the canvas. So you can use your mouse to do some of the actions that you want to do with the image cropper or the image tool. Yeah, if you say Image Cropper, it kind of reduces it to cropping, but yeah, it&#8217;s also the handling to rotate</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>And all that too.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah, yeah. There&#8217;s a new API for the WordPress grid package, but that&#8217;s a different grid that you are working on.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, that&#8217;s not the layout. The block layout grid. This is something else. This is a grid that you can use for dashboard UI.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Sort of admin stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. That&#8217;s the new API that powers the new experiments that in Gutenberg. That is the dashboard widgets. We kind of talked about it a little later. You as a plugin developer or extender of WordPress, you can use them now as well for any of your dashboards. If you are having a plugin that has some data vising kind of, you can put them into these grid package and display them on your plugin settings pages. The guidelines is also a new API and it has now a public API method and the REST API route to it. There have been iterations after 23.1, so I think that that would be really helpful to look at later. </p>\n\n\n\n<h3 class=\"wp-block-heading\">New APIs</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The guidelines are actually a whole set of content types that are for AIs. Pretty much when your agents come to the WordPress site, you can tell them what to do with things. What&#8217;s the purpose of the site? The editing guidelines? Yeah, how, how you want AIs to behave on your site if you let them in. And it&#8217;s really important when you have other agents come in that you don&#8217;t control. Yeah, that sounds scary. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But if you as a site owner connect your Claude to your website, you can have in the guidelines all the things that you want Claude to know about your site. So it&#8217;s. You don&#8217;t have to put it all in a prompt and it kind of finds all the things and it&#8217;s also your memory. So if you use an agent to do your SEO, to do your. Some of the content updates like headlines or tags, your policies on how to do tags and categories, that&#8217;s all things that you can solidify in your documentation in the guidelines for your AI. And it will remember that. But it&#8217;s also interesting to see the discussions about it. I had a short discussion with Grzegorz, who was a former co-host here on the Changelog, a few, I would say a few hundred episodes before, but it wasn&#8217;t that much. But he is now part of that team who thinks about AI and memory and all that. And it was really interesting to hear because if you are in an agency, you work on multiple different sites, but you have one Claude, so you don&#8217;t want things to bleed over from one site to the next. And these guidelines help you kind of keep track of everything. So it&#8217;s an interesting problem space that came out with AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> It&#8217;s like providing the correct context and the correct amount of context so that the AI can be maximally productive on your website, whatever you want to do with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, right. Yeah, yeah. Most people are really not all that into. Site owners are not so into AI, but it helps a few things quite nicely. I find it with SEO and with yeah, accessibility and all that. It&#8217;s really helpful to have a double check there. Yeah. All right, what&#8217;s next in 23.1? Do we have something? </p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Oh yeah, there&#8217;s these custom taxonomies experiment in 23.1 with the custom post types and taxonomy management that started out as out of. I don&#8217;t know how that came about, but it probably is one of the radical speed month project as well that people say okay, we probably need to have content management when the APIs were in WordPress in 3.1. But there is no interface there and there were always plugins there to do this, be it custom UI, custom post UI or ACF or so. But there&#8217;s no interface for. And that&#8217;s where this experiment comes in to kind of push the envelope on that a bit. Have the REST controllers in there, have the interface in there. But it definitely is not the last word spoken there yet because that is a field where there have been a lot of extensions in the universe or in the WordPress ecosystem that might not fit in where this is going. So it&#8217;s just a. It&#8217;s a prototype kind of experimental way to do that. But check it out. You just have to enable the experiment in the Gutenberg plugin and then you can kind of try it out and work with it. It uses the common APIs. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The other experiment is the dashboard. We talked a little bit about it because that&#8217;s the grid package was created for that. The dashboard to have administ page routes and sidebar menus as a shell to add additional grids on the dashboard. I&#8217;m interested to see. I haven&#8217;t played with it yet but I want to see if I can. So what are the dashboards? The dashboard right now is just a. The quick edit and the site health and the news that&#8217;s on your dashboard right now and a few other things and plugin kind of tap into that as well. But I have never have not seen yet and I&#8217;m still thinking about it to. Maybe Claude can help me with that. Having a quick edit that&#8217;s a block editor actually. So when you log in into your WordPress site you don&#8217;t want to kind of just do all the other admin stuff. You just want to create a new post. So why not have it on the dashboard and create a blog post right there from the quick edit. Quick Edit only gives you text based things but not block editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> So a block based quick edit, do you reckon all the blocks. I reckon it would need to be A very simplified version of the block editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Maybe images, paragraphs, but yeah, that would be cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, yeah. Lists. Yeah. Like an outliner kind of. Yeah. Very fast kind of. Yeah. Maybe come back to the white space, but kind of instead of having a classic editor, just build blocks with it. Yeah. So kind of a distraction free, quick edit, full set, toolbar on top kind of thing. I don&#8217;t know. When I&#8217;m bored, I&#8217;m gonna star B. Prototype it. Prototype it. Yeah. And get it in. Yeah. That. That was one of the things that a lot of writers said. I don&#8217;t want to deal with all the stuff I&#8217;m getting so distracted. Yeah. There&#8217;s announcements and all that. So let me just start my blog post. But anyway, and then there is a list of Media editor modal call for testing. We talked about it. There&#8217;s a whole in 23.1. There&#8217;s a whole list of bigger and smaller PRs that went in. I think the call for testing gives you all the ins and outs of it that I think was. Was it. Did you find anything for 23.1 that you wanted to talk about further?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Not. Not really. Apart from the things that you&#8217;ve already highlighted. I just thought. I already mentioned that the media editor is also on the site logo block. So you can test it on both blocks and that&#8217;s it.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.2</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So right into Gutenberg. 23.2 was released on May 21st and also with 204 PRs by 50 contributors and there were four first timers there. Congratulations. You got your first contribution to WordPress core. Yeah. And you got your badge. Well, you got your badge when 7.1 is released, I guess the first feature that is listed is the responsive global block styles with states. This is so cool. Yeah. What does it say? Can you walk us through it?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. So this was the first part of the work towards enabling responsive styles for blocks. And it&#8217;s with States because it leverages a style states API that was already built. So Maggie Cabrera was who did that initial work for the States API, and her part was just leveraging it for adding the ability to style pseudo states for very few blocks have pseudo states. Well, this might be extended, but it won&#8217;t be super extended because not all blocks need to have pseudo by pseudo states, I mean hover focus and things like that. So usually only interactive blocks would need those. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And so States came about to cater to that pseudo element scenario. But it was always something that could potentially be extended further. And one of the use cases that had been thought out when this initial idea of having the states API was thought it was using it to be able to create responsive styles for blocks was one of the possibilities there. And I had been eyeballing all those issues that have been sitting in the Gutenberg repo for years about creating some mechanism that allows us to define responsive styles. And I finally had the opportunity to pick them up. And having that state&#8217;s work already partially done was great because, you know, sometimes it&#8217;s starting something is the hard part. And there were endless decisions in the repo about how should we build this and let&#8217;s do this and let&#8217;s do that and let&#8217;s not do that. And it&#8217;s like we should take this into account. You know, how you can talk and talk and talk and then it never actually starts because it seems like the problem is too big and too complicated. And the more that&#8217;s added to the discussion, the bigger and the more complicated it gets. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But there was this little stepping stone. This states API had already been built. And so I thought, well, it&#8217;s already in there for pseudo states, let&#8217;s try building responsive. So we call them viewport states. I&#8217;ve been working on this with my teammate Dan Richards. We&#8217;ve both started working on this and thought, okay, let&#8217;s do as sort of a baseline for global styles, but then as a stretch goal, let&#8217;s try and do it for actual block instance too. So we managed to do both in the end, but for 23.2, it was only the global block styles that was ready. And this means when you go into the site editor and into the style section, where you have global styles, then you go into blocks. This only works for blocks. It doesn&#8217;t work for top level global styles yet. We&#8217;re not quite sure. Well, we&#8217;re not quite sure if there&#8217;s a need to add this to top level stars yet. It&#8217;s still something that&#8217;s being thought about because for a lot of them, so a lot of really sort of global basic elements like typography, you know, font sizes. Okay, we already have ways of defining them responsively even without using breakpoints. So we are using the clamp function. You can define a maximum and a minimum and you can pretty much, you know, manipulate it so that you get your different font sizes on mobile and tablet and desktop. So there is to some extent you already have that responsive functionality there. So that&#8217;s something that might be looked at later on for enabling actual breakpoints for those global styles. But for now it only applies to blocks so for each block you can go into the block, into the block&#8217;s global styles and you can pick a state. There&#8217;s a new little states drop down at the top and so by default you&#8217;ll be styling the default state that&#8217;s you know, no media query. And then you have a tablet and a mobile state and the tablet state is only, so it&#8217;s, it&#8217;s only from you know, the top level. Like what&#8217;s your maximum Breakpoint to the minimum, which is the maximum for mobile. So the tablet styles will only apply to tablet to that breakpoint and then the mobile styles will only apply to their own breakpoint. And that&#8217;s. Yeah, essentially that&#8217;s it. </p>\n\n\n\n<p class=\"wp-block-paragraph\">You can do anything color typography and spacing wise. So for most blocks you know, you have the typography, you have the colors, you have dimensions like not for most blocks you don&#8217;t have dimensions, you have, you know, margin, padding, block gap if the block has layout and you can define per break point what you want those values to be. And there are certain features that exist in global styles that do not yet work with, with that responsive logic and those. So when you enter that breakpoint you know, you get, you choose the tablet viewport and you&#8217;ll see that some of the tools might be hidden. So for instance, Duotone is one. You can&#8217;t set Duotone per breakpoint yet. This is something that will be worked on in the future but it feels like a bit like I&#8217;m not sure how many people will need to change the colors per break point. That&#8217;s not usually responsive styles are more about spacing dimensions, that sort of thing. So we focused more on those that felt like these are the ones that are really going to be used by most people and the more edge Casey ones if they don&#8217;t work out of the box, we sort of. Okay that, you know, that&#8217;s a problem for later. We&#8217;ll, we&#8217;ll figure it out later. And Duotone is one of those awesome.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. Well a lot of people have been waiting for that a long time. So glad you, you finally started taking it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> I hope it&#8217;s useful. I just hope that folks can take this and like ok, okay, I can finally build the thing and yeah, and it works. And please, please, to anyone listening and wanting to try this out, if there&#8217;s anything that&#8217;s not working, if there&#8217;s anything you don&#8217;t like or you think, no, no, this should be different because it doesn&#8217;t work. Just please give us feedback. We need feedback because this is in the plugin now it&#8217;s aimed to go into 7.1. We still have those six weeks until beta one. Those six weeks will be iterating on the feature. The earlier we get feedback the better so that we know if there&#8217;s anything that really isn&#8217;t working for anyone then we can change it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Yeah. Yeah. Awesome. So that&#8217;s a 23.2. There&#8217;s also a WordPress components called WordPress Theme and that&#8217;s actually the theme for the admin section. We have definitely confusion things going on because we use the same term for multiple things that are totally different and have nothing to do with each other except they are now motion design tokens for duration and easing in the WordPress theme component. So if you want to use those for your admin pages and plugins, go have at it. I am really because it kind of gets you a little bit more into a more interactive way to build websites and I think we really like those or I do. Yeah. Although I&#8217;m not a motion or animation kind of person. But yeah, I like when it&#8217;s nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. Little bits of discreet smooth animation here and there can really make a web experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. It&#8217;s kind of a quality of life kind of thing. Yeah. Yeah. What else is in the 23? Yeah, the content types. It was an iteration on. We talked about it on the content types experiments with various improvements and post type and taxonomy management, duplicate view, quick edit actions. A ton of PRs have been added to that so it definitely is maturing and you can with 23.2 also the media editor modal had matured and there is now. I also will share in  the show notes a link to an overview issue on the Dashboard experiment so you can go back and read up about it, what it&#8217;s all about. Because there&#8217;s a whole lot of work still being done with that. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\">There&#8217;s also an experiment on the classic block migration notice. I&#8217;m just pointing that out because you might see it that the classic block might get deprecated or might not be available in certain situations.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. I believe the plan is to deprecate it and remove it at some point, but it&#8217;s a whole process because I guess lots of folks are using it. So it needs to be slow, give people time to adjust, choose alternatives.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, well it has been in Gutenberg for eight years and all that and actually what I found is that some of the AI tools actually create blocks that need to be. That are looking like classic blocks and need to be migrated to blocks before they can be in the block editor canvas. So, yeah, those things also need to be kind of tested in that space.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Yeah, that&#8217;s a good point. With AI, with AI tools increasingly being used to build websites and create and. Or move content across from other places, it. You don&#8217;t want AI sort of adding the classic block to its knowledge base and suddenly deciding that the easiest way to do anything is to just dump all the content into a classic block,</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Which what they&#8217;re doing right now. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> So this is a good time to deprecate it so that. Okay, let&#8217;s. Let&#8217;s ensure that AI works properly, that it&#8217;s easier for AI tools to work properly and do things as we expect them to.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It hasn&#8217;t been merged yet, but there is also a documentation issue. It&#8217;s a big. It was a big undertaking that Juan Margarito took on, was that it was found that an AI can&#8217;t really find documentation on the block markup for each of the core blocks. And that was a documentation gap that was kind of found that none of the block library blocks had a readme so it wouldn&#8217;t. So what Guan Ma did, he created automatically from the block JSON files a readme for each block on documentation site and then created some tokens where you can have on the readme additional manual content that&#8217;s put in there and then have a parser go through that and put it into the block editor handbook. And that is a really. So it talks about the supports, it talks about the, the, the global styles design tool supports about the block markup and also the connection with other blocks. It&#8217;s a comprehensive documentation about each block and that&#8217;s in the block handbook. It will be merged. We had a hardware hangout on it. We had a proposal on MakeBlog, a core block about that. And I think it&#8217;s finally going to be merged within I hope a week, but maybe days.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Oh, cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>That&#8217;ll be super useful. So it will be in the, in the block edit handbook. It has an additional 80 pages, of course. Yeah. But they&#8217;re all connected and categorized by blocks. And so now block developers and there were some comments from the community where people said, well, I wish I had that when I was starting out learning about block development and now it&#8217;s finally coming. But it was a huge undertaking because it kind of created a ton of new code and that all needs to be reviewed. And it was so. But there were a lot of people kind of working on that. Guided or spearheaded by Guan Ma but it&#8217;s now coming and it&#8217;s really cool. I&#8217;m so happy that it made it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> I mean, you can never have too much documentation, but developers are crap at writing it. So, you know, nowadays we have tools to assist us in the creation of the documentation and we should leverage them.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Yeah. And the hybrid version, automatic documentation plus a way to have also manual content in that is actually a good combination because for some of the blocks, Joe Dawson from the Accessibility team has said, okay, maybe we also want to have some documentation about the accessibility of blocks. And anybody who has comments on that can add it to the, the readme file of that particular block to elaborate on that. And that is outside of any automation. You can just add it to the page. And it was really cool to see that process working. I post a link to the proposal into the show notes just as a side note here. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.3</h3>\n\n\n\n<p class=\"wp-block-paragraph\">And now we&#8217;re coming to 23.3. That was just released a day ago June 3rd with 270 closed PRs and 57 contributors. So we are ramping up to 7.1 kind of thing. And the first item on that is really cool that you can now that the notes section. And I think it was Adam Silverstein as well who worked on that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Oh yeah, the multiple notes per block. Yeah. Oh, that&#8217;s cool. That&#8217;s really useful.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, so you can have multiple threads or comments per block. That&#8217;s also helpful when you work with AI that comes in and kind of reviews some of your post and posts notes in there. So yeah, it was really helpful. And it&#8217;s also. And he found it to be necessary to have that. So what&#8217;s missing in the notes in comparison to Google Docs is that you can highlight a section and then comment on that section. So yeah, like, okay, you probably can delete this half sentence or something like that. And that you couldn&#8217;t do that up until now. And with the multi threads on the notes for a block you can highlight a section because if the paragraph is, I don&#8217;t know, 10 lines or something like that, you might have multiple comments on the, on that block. And now you can have that. So it&#8217;s really cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah. So the note is attached to a part of a block and not to the block itself.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, yeah. The next sections are a continuation on your quest for responsive styles.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, that&#8217;s part two, part two of the work which is enabling responsive styles for block instances. So again this, this was a part. So Maggie Cabrera had worked on the sudo style states for global styles and she had an open PR to add them to block instances. And Dan and I basically hijacked her PR with her approval of course. We asked Maggie first, can we just take this work that you. She was off doing something else. She wasn&#8217;t actively working on the PR at the time. We thought ah, we could just take that over and finish it and then build the responsive styles on top of it. So we did and that obviously there was work already pre-existing so it sort of made it easier to build it step by step on top of it. And now we have in 23.3 the ability to add responsive styles to. So any block, open a post, pick a block, open the inspector controls and then at the top where you have the block name you have this little menu which has a drop down that has the states. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So again just like with global styles we have tablet and mobile. The default is what you get by default what you already had. And then you have a tablet breakpoint and a mobile breakpoint. And for those again as in global styles there were a few things that didn&#8217;t really work out of the box, a few of the controls. So we decided to hide everything that doesn&#8217;t work. So for now what&#8217;s enabled is only the controls that you can actually create responsive styles with. Those are pretty much all the block supports, the standard block supports like color typography, dimensions, block gap. Now layout is also supported and we aside a sort of side effect of that was that we ended up moving the layout panel into the styles tab. And well that was sort of. I&#8217;d been wanting to do that for ages I have to say because to me it didn&#8217;t make any sense at all that layout was in at the same time. Settings tab and Dimensions, which has controls that are intimately related to layout such as block gap was in the styles tab. And so I felt the. The only thing that makes sense is to have them side by side. If it&#8217;s not the same panel, which I still think we could maybe make it the same panel. But that&#8217;s another different conversation. But at least they&#8217;re side by side. So now layout is in the styles panel. That&#8217;s the reason why it&#8217;s in the styles panel. So when we have a responsive state enabled we&#8217;re only showing the styles panel in the inspector and only the controls that work, which is most of them. There&#8217;s a couple of things that we had to hide again, you know, duotonethings like that. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And for block instances there are some blocks have custom controls and some of those custom controls should probably become Block supports. Some are like aspect ratio is a block support, but there&#8217;s only one block using it and there&#8217;s a couple of blocks that have their own custom implementation of aspect ratio. This is something that should change. I have an open PR to try and enable aspect ratio to work responsively because I feel that that&#8217;s one of the important ones that people will want to change aspect ratios for different breakpoints. So that&#8217;s in progress and what our plan is basically to try to get as much as we can working until 7.1.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Awesome. So when I want to start testing this, I&#8217;m going to add a paragraph to my block canvas and then I go to the block inspector and say, okay, this paragraph, I want a different background for a different viewport. So on the mobile I want it green and on tablet I want it yellow and on desktop I want it gray.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yep, you can do that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Okay. Yeah, so that&#8217;s how I will change it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> You go into. So you give the default. The desktop is the default. I guess we&#8217;re not mobile. We were never mobile first really. I mean Gutenberg has from the beginning being a dev stop first experience. And that&#8217;s how it&#8217;s sort of turned out to be. So you have default desktop and then you can go into the tablet state, you can select the tablet state and then whatever you add to the visible controls in the block inspector in that state is exclusive to that state. And you can go into the mobile and choose a different color for that and save everything and then you can go and do the good old resizing. Well, in the block editor we leveraging the responsive preview, the sort of device specific preview to show you a preview of what the styles are as you&#8217;re editing them. And then once you go into the front end, you can resize your window to your heart&#8217;s content and see all the changes happening.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> All right, all right. So that is really cool and I&#8217;m looking forward to kind of testing it out and trying it out and have opinions.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, yeah, no, lots of opinions, I&#8217;m sure. And one of the things that I feel like we haven&#8217;t got 100% right is the previewing because you switch like you go enable mobile state for this block and it switches you to the mobile preview. But then you can select another block while still being in the mobile preview and then you&#8217;re not in the mobile state for that blocking. So I feel like this is something that we&#8217;re working on. We need to improve that experience and feedback. Again, very welcome. What are your opinions on this and how you think it would be the most intuitive to work with.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Well, awesome. Yeah. I&#8217;m thinking maybe we should actually have a demo hallway hangout about that somewhere. Let me think about that. Well, I have a time issue because I&#8217;m going on vacation.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Okay. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Coming back to the beginning of July, but yeah, definitely. Maybe find somebody to do a demo video or something like that. Well, the demos are all on the PR, so definitely check those out because they&#8217;re the best way to learn how to use that and how what works or what doesn&#8217;t work. Yeah. All right. What&#8217;s else in 23.3?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> There was so much. Well, the media editor was stabilized, so now it&#8217;s no longer an experiment. You get it by default whether you want it or not. Again, I mean, we hope to get feedback on that. I think it&#8217;s a pretty good piece of work, honestly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, it is. Yeah. Yeah, absolutely. Yeah. Just wanted to. You said it in the. You talked about it. But if you are looking for the layout panel after 23.3 Gutenberg plugin install, it&#8217;s not hidden, it&#8217;s not lost. It&#8217;s in the Styles tab now.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Some content creators that are not interested in this, all that, they might have a little oops, where is it? Kind of thing. It&#8217;s in the other tab now. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> And that is. It might be weird for blocks that still have a Settings panel. So, for blocks, what happened with the group block? For instance, the group block only had layout and position in Settings, so we moved position into styles. Because it makes sense. Position is a style. And now the group block doesn&#8217;t have a Settings tab. So you open the group. I think it&#8217;s much easier because you don&#8217;t have clicking, clicking, clicking. Everything&#8217;s there, everything&#8217;s visible. Layout, position, all the other controls in the same tab for other blocks. For instance, the navigation block still has a bunch of stuff in Settings. So if you put a navigation block on the page and suddenly you&#8217;re, oh, where&#8217;s the layout controls gone? Okay, they&#8217;re in the Styles tab. They&#8217;re no longer in the Settings tab.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> I just wanted to point that out. People kind of miss that part because they&#8217;re so excited about the responsiveness. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And then there&#8217;s also. Oh, there was one thing that was fixed. It was a. I would say it was a bug, but it is an enhancement that the additional CSS. If there was an error in there, you wouldn&#8217;t see that when you get back into the post again, until you interact with the additional CSS field, you wouldn&#8217;t see the error message. So unless you interact with that, you wouldn&#8217;t see that it&#8217;s actually not working. That has changed. That now has a little notification that there is something in the additional CSS that&#8217;s not valid CSS for those who muck about with that. Yeah. And here it is. The PR78653 has the modal media editor, image cropper modal being the default experience for the block editor. It&#8217;s out of experiments in. Another thing for 23.3 is that Gutenberg upgraded to React 19. This is important for plugin developers and those who have a very tight handle on the dependencies for their work. React 19 is now the default and there might be dragons out there. Please, please, please, yeah. Give feedback on that. Create issues what works and what doesn&#8217;t work. Especially what doesn&#8217;t work. So those can be fixed PR 7.1 so you don&#8217;t have any surprises later on. What else? I think those were the, the big items.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Yeah, I mean I&#8217;ve, I&#8217;ve been sort of like under, under my responsive styles rock for these past few weeks just working on that. Very, very fixated on getting this thing right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>So I have to say nothing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> I mean it&#8217;s definitely got a huge amount of attention to. Yeah. What else is out there?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Definitely God&#8217;s work.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> Hopefully it&#8217;s worth it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, absolutely. Yeah, absolutely. Yeah, I think that&#8217;s it. As I said, there are 270 PRs. So. Yeah. And it just has been released for a while ago.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison:</em> There&#8217;s a lot of enhancements and bug fixes and stuff in here.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, that&#8217;s it. I think we are good. So, dear listeners, you will see on the Weekend Edition and the Gutenberg Changelog will pause during my vacation. I&#8217;m going on vacation next week, which is June 15th and I&#8217;m coming back in beginning of July. So in time for 7.1 beta, you&#8217;ll hear us again and you will read us again. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m so happy, Isabel, you are here on the show to walk us through all the good things that come with Gutenberg to 7.1, especially the responsive parts. The responsive parts. I like that. Responsive parts. Thank you so much for taking the time out of your busy work schedule and be on the show and walk us through that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>No worries. You always enjoy this show.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack: </em>Well, thank you so much. And as always, dear listeners, the show notes will be published on GutenbergTimes.com podcast. This is episode 1311 31st. And if you have questions or suggestions or news you want us to include, send them to <a href=\"http://changelogutenbergtimecs.com\">changelogutenbergtimecs.com</a> that&#8217;s <a href=\"http://changelogutenburgtimes.com\">changelogutenburgtimes.com</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you all for listening. And until the next time, and I see you in July. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Isabel Brison: </em>Bye bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Jun 2026 10:03: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:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.org blog: What Happened at WordCamp Europe 2026\";s:7:\"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=20793\";s:7:\"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://wordpress.org/news/2026/06/wceu-2026-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:36048:\"<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20801\" height=\"1440\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-01.08.10-1-scaled-edited.jpeg?resize=2560%2C1440&#038;ssl=1\" width=\"2560\" /></figure>\n\n\n\n<div class=\"wp-block-group is-horizontal is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-e8523bbf wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20863\" height=\"501\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Witold-wapuu-wceu-2026.jpg?resize=386%2C501&#038;ssl=1\" width=\"386\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe, <a href=\"https://europe.wordcamp.org/2026/\">the biggest WordPress conference in Europe</a>, spent the first week of June in Kraków. The 2026 edition of this event filled the ICE Kraków Congress Centre from June 4 to 6, drawing 2,458 ticket holders from 81 countries to the south of Poland. Close to a quarter of them were attending their first WordCamp Europe.</p>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">The city made it easy to settle in. Every attendee&#8217;s badge carried a transport hologram good for unlimited trams and buses. The Main Market Square, the largest in Europe, sat a short ride away, and the local food ran the gamut from pierogi to żurek soup to obwarzanek pretzels sold off the street.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Kraków is beautiful, with history everywhere.<br /><em>&#8211; Sebastian Miśniakiewicz, local team lead</em></p>\n</blockquote>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-7387b849 wp-block-group-is-layout-flex\">\n<p class=\"wp-block-paragraph\">The program kept pace with the setting. Across multiple tracks, the schedule held 49 talks and eight hands-on workshops, grouped into themes that ran from core development and AI to business and the open web. Around them sat a full Contributor Day, a sponsor area, side events, on-site childcare, and an after-party the local team stretched to eight hours.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-20864\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wandzia-wapuu-wceu-2026.jpg?resize=474%2C500&#038;ssl=1\" width=\"474\" /></figure>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day Opens the Week</h2>\n\n\n\n<p class=\"wp-block-paragraph\">As it does every year, the event began the day before the talks. Contributors filled the venue for Contributor Day, a working session where people work together to improve WordPress itself rather than watch a presentation about it. The morning started with registration and a welcome, the room split into teams, and a group photo broke up the work around midday. The afternoon ran a second working block before each team gathered to share what it had done.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20812\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.16.10.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20806\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.48.24.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20805\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-02.43.58.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20807\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.15.18.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20808\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.46.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20809\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-03.32.47.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20810\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.00.15.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20813\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-06.25.24-1-scaled.jpeg?ssl=1\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20811\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-04-at-04.31.29.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The range of tables is the clearest picture of how wide the project has become. Newcomers could sit down with Polyglots to translate WordPress into their own language, with Documentation to fix the pages people reach when they get stuck, or with Support to answer questions in the forums. More technical tables covered Core, Performance, Testing, Themes, and the Plugins team, whose reviewers screen every plugin submitted to the directory.</p>\n\n\n\n<p class=\"wp-block-paragraph\">First-timers were not left to find their own way. The day was built around onboarding tables, named table leads, and mentors, with an open invitation for experienced contributors to adopt a newcomer and walk them through their first patch, string, or ticket.</p>\n\n\n\n<p class=\"wp-block-paragraph\">People who could not travel to Kraków were welcomed to join remotely through the #contributor-day channel in the <a href=\"https://make.wordpress.org/\">Make WordPress Slack</a>, so distance was not a reason to sit the day out.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Birthplace of the Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It was fitting that the opening keynote came from CERN. The European Laboratory for Particle Physics, on the French-Swiss border outside Geneva, is where the World Wide Web was invented more than 30 years ago, and <a href=\"https://profiles.wordpress.org/joachimv\">Joachim Valdemar Yde</a>, who has managed CERN&#8217;s web team since 2021, came to explain why the laboratory had chosen WordPress to carry its web presence forward.</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-ef2f134e wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Yde and <a href=\"https://profiles.wordpress.org/franciscobbarros\">Francisco Borges Aurindo Barros</a>, who leads CERN&#8217;s WordPress infrastructure, framed the move as a chance to give a web presence built up over three decades a shared, modern foundation. After evaluating several leading content management systems against CERN&#8217;s needs, WordPress came out on top.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Barros walked through what they had built. The guiding idea is that people at CERN focus on their content while the web team looks after the platform underneath. A self-service portal lets anyone request a site in a few clicks. Behind it, a shared distribution supplies a common theme and a set of approved, security-hardened plugins, and an in-house tool provisions each new site on Kubernetes in about a minute. In its first year, the platform has already set up hundreds of sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Moving years of existing content onto the new platform is the other half of the work, and the team automated it: a single command lifts each site&#8217;s pages, headings, and images and rebuilds them as Gutenberg blocks, with no downtime. They plan to open source the tool.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Then Yde delivered the line that the room had been waiting for.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">As of today, our main flagship website, home.cern, is now served on WordPress. It&#8217;s been automatically migrated, and it&#8217;s live.<br /><br /><em>&#8211; Joachim Valdemar Yde, Web Manager, CERN</em></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The rollout is on track to wrap up over the coming months, and early impressions, Yde said, have been overwhelmingly positive, with easy wins in responsiveness and accessibility. For those at the event, the keynote pointed the room toward <a href=\"https://youtu.be/f09yvh3mnME\">a later talk by CERN&#8217;s Akanksha Chatterjee</a> on building and maintaining the laboratory&#8217;s engineering websites on the same service.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a neat symmetry to it. The institution that published the world&#8217;s first website now runs on the software that powers more than 40% of today&#8217;s web, licensed under the GPL and maintained by the people in the room.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 7.0 and AI</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0 was a throughline of the conference. Several sessions placed the release at the center, framing it less as a routine update than as a change in what the software is, and in what it makes possible for the people who build with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The anchor for that conversation was a panel called &#8220;Inside WordPress 7.0.&#8221; It gathered contributors who worked on the release, among them <a href=\"https://profiles.wordpress.org/juanmaguitar\">Juan Manuel Garrido</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/mikachan\">Sarah Norris</a>, and <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>. It was framed around more than a feature list, setting out to cover how a release of this size actually comes together: the contribution workflows, the coordination, and the human aspects of shipping software in the open.</p>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"Photo of the stage for the panel inside WordPress 7.0\" class=\"wp-image-20878\" height=\"843\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wordpress-news-6a2425b8ceabf.png?resize=1264%2C843&#038;ssl=1\" title=\"Panel: Inside WordPress 7.0\" width=\"1264\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<p class=\"wp-block-paragraph\">What gives this release its weight is the work moving into WordPress&#8217;s core: a native AI client, a new Abilities API that lets plugins declare what they can do in a way other tools can discover, and a Connectors screen for wiring up providers such as OpenAI, Anthropic, or Google Gemini. The argument running through the AI sessions was that this belongs to everyone who builds on WordPress, not only to developers shipping their own integrations. Speakers got specific about how to put that to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/anukasha\">Anukasha Singh</a> focused on how the Abilities API can make plugin permissions cleaner and safer than the capability checks developers have leaned on for years.</li>\n\n\n\n<li>In a workshop, <a href=\"https://profiles.wordpress.org/wpfeedback\">Vito Peleg</a> set out to take builders from one-off prompts toward a tool-using workflow that audits a live site and files structured tickets.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, a WP-CLI maintainer who has worked on structured data and the AI-native web, turned to a fast-growing opportunity. AI assistants and search now send real traffic to the open web, with more than a billion referral visits logged by the middle of 2025. His session framed WordPress as well-placed to earn that attention, with a practical checklist for getting a site ready to be found, read, and cited.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">People stayed at the center of the conversation, too. <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, in a talk called &#8220;Human in the loop means something,&#8221; framed the phrase as a real commitment rather than a checkbox. Humans and AI are each good at different things, and the products worth building let each do what it does best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Development and Craft</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The development sessions were where the craft lived. <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, who co-wrote the HTML API and designed the block parser, devoted a deep-dive workshop to that API. <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, a long-time Core committer on the Performance team, focused on how the WP_Query class has been made faster through better caching, and how site builders can take advantage of that at scale.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Scaling got a hands-on session of its own. One talk set out to see how far a WordPress site can run on a twelve-dollar virtual server, profiling it under load in Grafana and tuning away the bottlenecks, with a GitHub repository so attendees could follow along at home. <a href=\"https://profiles.wordpress.org/fellyph\">Fellyph Cintra</a> focused on the latest in <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, the browser-based tooling and architectural changes that the project credits with a real speed-up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, a Core contributor and former default-theme co-lead, set out to make the case that accessibility-ready requirements are far easier to meet than most theme developers assume, drawing on real reviews of both block and classic themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Two members of the Plugins team, <a href=\"https://profiles.wordpress.org/davidperez\">David Perez</a> and <a href=\"https://profiles.wordpress.org/frantorres\">Fran Torres</a>, framed their session as a practical clinic. Between them, they have reviewed more than 25,000 plugins, and they set out to name the common, avoidable issues that keep good plugins stuck in the review queue. For a first-time author, that is the difference between an afternoon and a month of waiting.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Business of WordPress and the Open Web</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The business and community sessions pulled the lens back to people, with a refreshingly unsentimental view of running a WordPress business. <a href=\"https://profiles.wordpress.org/deltacx\">Debbie Levitt</a> built her talk around a model for finding product-market fit at three levels at once, on the premise that teams celebrate one good metric and then wonder months later where their users went. <a href=\"https://profiles.wordpress.org/vasvalch\">Vassilena Valchanova</a> took on a quieter problem: being good at the work is not the same as anyone knowing you are.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There was a local thread here as well. <a href=\"https://profiles.wordpress.org/irsilviana\">Irfani Silviana</a>, a full-stack developer at a Kraków-based agency, framed the Business Model Canvas as a translation layer that moves developers from shipping features to engineering business value, a fitting talk to give in her own city.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">The web&#8217;s standards, the argument goes, remain as open as the day Tim Berners-Lee created them at CERN.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">That idea carried through the rest of the community sessions. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://profiles.wordpress.org/wdavidsnead\">David Snead</a>, an attorney who works with internet infrastructure providers, set out to explain how hosts, registrars, and registries coordinate against abuse through shared, real-time intelligence, on the logic that a threat to one WordPress host is a threat to all of them.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a> shared a practical playbook for how companies and individuals can support open source sustainably and look after the people who keep it going.</li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/karinchristen\">Karin Christen</a> set out to describe how her Swiss agency turned <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> from a good intention into a standing team habit through internal contributor days.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Running alongside the talks, the hands-on workshops were a chance to build something on the spot. In one, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a> set out to build a touch-enabled gallery slider with the Interactivity API, while another centered on Full Site Editing, with a working portfolio theme attendees could reuse on their next client project. These were laptop-open, leave-with-working-code sessions.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20849\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55316270345_085d4eb772_k.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20850\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55317280236_97760333e1_k.jpg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Closing Fireside Chat</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The closing session opened with a warm gesture from Kraków University of Technology. Representatives took the stage to thank the organizers and the community and to present <a href=\"https://profiles.wordpress.org/4thhubbard\">Mary Hubbard</a>, the Executive Director of WordPress, with a gift from their faculty of informatics and mathematics. They described what the university and the WordCamp community share: a love of learning and sharing knowledge, and an openness to new ideas, skills, and connections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard used the moment to share some news. Starting in October, the university will open a WordPress-specific course, which she called a trail-blazing event for Poland and for WordPress. Earlier that day, the program&#8217;s first cohort, around 20 students, had shown what they built, part of the <a href=\"https://wordpress.org/education/campus-connect/\">WordPress Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a> education work.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-4 is-cropped has-black-background-color has-background wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20888\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20887\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-06-at-10.26.32-1.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Hubbard then turned the stage into a conversation, inviting <a href=\"https://profiles.wordpress.org/matveb\">Matías Ventura</a>, the lead of the Gutenberg project, and <a href=\"https://profiles.wordpress.org/richtabor\">Rich Tabor</a>, a WordPress designer and developer, to talk through where WordPress is heading and how AI fits in. WordPress 7.0 had just launched with Ventura as its release lead, and he asked everyone who had contributed to it to stand for a round of applause.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of the chat explored the balance between building WordPress with AI, and building with AI on WordPress, without losing the human part. Ventura noted that WordPress&#8217;s long investment in its design system is paying off now that you can ask an AI to extend a menu or a control, and it reaches for the right components. He pointed to older primitives gaining new value, like <a href=\"https://wordpress.org/cli/\">WP-CLI</a>, which AI models use fluently, and to <a href=\"https://developer.wordpress.com/docs/developer-tools/studio/studio-code/\">Studio Code</a>, an open source, agent-based coding tool the team has been building for WordPress. Tabor showed how he now ships many small editor improvements by talking to an agent instead of typing code, and Ventura demoed desktop mode and open-canvas experiments that reimagine the admin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On open source and AI, Hubbard argued that open source is why WordPress has thrived, that the same values should shape AI, and that the community should be far more vocal about it. As she put it, &#8220;We should be talking about it, and we should be much louder about it.&#8221;</p>\n\n\n\n<div class=\"wp-block-group has-black-background-color has-background is-layout-constrained wp-container-core-group-is-layout-9c97b5da wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Audience questions pushed on multilingual support, unsticking long-stalled tickets, and reaching a younger, more diverse community. On that last point, Hubbard came back to education, pointing to a <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">US pilot of an AI literacy micro-credential</a> that uses WordPress as the playground, and made the case for it:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">I think that focusing in on younger generations, and bringing them into the project in a healthy way, with the dynamic of education as well as mentorship, and how we can understand and learn from them, as well as mentor them and adopt them as contributors, is very important.<br /><br /><em>&#8211; Mary Hubbard, WordPress Executive Director</em></p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond the Talks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp is also about the corridor outside the talks, and Kraków gave people reason to roam. Between sessions, attendees moved through the sponsor area for product demos and conversations that often carried on over lunch.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-3 is-cropped has-black-background-color has-background wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20823\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.47.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20828\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.49.48.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20825\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.46.57.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20824\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-02.39.48.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20826\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-05.23.01.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-20827\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WhatsApp-Image-2026-06-05-at-04.35.58.jpeg?resize=1024%2C683&#038;ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n			<svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n				<path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">The after-party was the not-so-subtle flourish of a local team that doubled the usual length to eight hours, with Polish food and dragon-and-floral swag that nodded to the Wawel Dragon of Kraków legend. The nearby artistic Kazimierz district kept the evening going, and the trams, as one organizer had promised, were still running reliably afterward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps run on people, and 2026 was no different. The organizing teams, the speakers, the sponsors who funded the venue and the meals, the local crew who sorted trams and pierogi, and the contributors who arrived a day early to work on the project all built this WCEU together. The people watching the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ET_os7azDwYFsUDoc0Y9plA\">livestream</a> from outside Kraków were part of it as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For anyone whose appetite was only sharpened by three days in Poland, the calendar already has the next stop. <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a> (Phoenix, USA) runs August 16 to 19, with its own Contributor Day opening the week.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&#038;ssl=1\" width=\"1024\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe will return next year (May 27-29, 2027) in Málaga, Spain.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>Photography by the <a href=\"https://europe.wordcamp.org/2026/community/organisers/#photography-team\">WCEU 2026 photography team</a>. See the full galleries on <a href=\"https://www.flickr.com/photos/wceu/albums/\">Flickr</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 06 Jun 2026 17:44: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: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:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Gutenberg Times: Calls for Testing, Gutenberg 23.3, Block MCP and more — Weekend Edition 367\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=45754\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://gutenbergtimes.com/calls-for-testing-gutenberg-23-3-block-mcp-weekend-edition-367/\";s: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:23404:\"<p class=\"wp-block-paragraph\">Howdy,</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is the time of the year when publishing on the Gutenberg Times becomes less frequent. I will be on vacation and back at the beginning of July with the weekend edition, just in-time for Beta 1 of WordPress 7.1. Three more Gutenberg plugin releases will happen before that. </p>\n\n\n\n<p class=\"wp-block-paragraph\">What also happened was that someone <a href=\"https://techcrunch.com/2026/06/01/hackers-hijacked-instagram-accounts-by-tricking-meta-ai-support-chatbot-into-granting-access/\">grabbed my instagram account in this AI hack</a> at Meta.  Although Meta reports this as resolved, I probably won&#8217;t get my account back. I am now actively looking for a better way to share my photos without the overlords that can&#8217;t keep things tight. <img alt=\"🤦‍♀️\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f926-200d-2640-fe0f.png\" style=\"height: 1em;\" />   It&#8217;s not that I didn&#8217;t know better. &lt;sigh/&gt; <img alt=\"🤷‍♀️\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f937-200d-2640-fe0f.png\" style=\"height: 1em;\" /> It&#8217;s a cautionary tale for what&#8217;s in store for all internet services handing over crucial business processes to a gulliable AI.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">I had the great pleasure of going on the <strong>OpenMakers</strong> show with <strong>Abha Thakor</strong> to <a href=\"https://openchannels.fm/new-tools-and-updates-in-wordpress-7-0-for-developers-and-content-managers/\">talk through what WordPress 7.0 &#8220;Armstrong&#8221; means for you</a>. First, the safety bit: test on a staging site or Playground before updating, and check your PHP. Then the good stuff. Visual revisions show edits in context with color coding. Notes keep feedback inside the editor. Patterns gain content-only editing, blocks can hide by device, and new AI connector APIs give developers a unified foundation. Real-time editing waits for a later release.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<p class=\"wp-block-paragraph\"><strong>WordCamp Europe</strong> LiveStream was up and running and Friday&#8217;s keynote can be watched online. <strong><a href=\"https://www.youtube.com/live/cLGiNR-h_34?si=7JEdopb4nHMec5Bs&amp;t=5032\">Two worlds collide: WordPress at CERN</a></strong> with Joachim Valdemar Yde and Francisco Borges Aurindo Barros. The Livestream are all routed to the <a href=\"https://www.youtube.com/@WordPress/streams\">WordPress YouTube account</a>. <a href=\"https://europe.wordcamp.org/2026/schedule/\">The schedule</a> is posted on the website. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<p class=\"wp-block-paragraph\">Over the course of the weekend more recordings will be uploaded to <a href=\"https://wordpress.tv/event/wordcamp-europe-2026/\">WordPress TV &gt; WordCamp Europe 2026</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">On Saturday, Matt Mullenweg, co-founder of WordPress and CEO of Automattic  will close out WordCamp Europe 2026 with his keynote. Afterward, the organizers will reveal where WordCamp Europe 2027 will take place. Tune in around 2:15 UTC / 8:15 am EDT. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Arthur Chu </strong>walks you through <strong><a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">what&#8217;s new in Gutenberg 23.3</a>.</strong> The modal media editor is now the default for cropping. It pulls cropping, flip, rotation, and metadata into one place. The experimental customizable dashboard grows too, with five new widgets you can drag and resize. Responsive styles now reach individual blocks, so designs adapt per screen. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rae Morey</strong> reports that <a href=\"https://www.therepository.email/gutenberg-23-3-ships-experimental-customizable-wordpress-dashboard\">Gutenberg 23.3 brings an experimental, customizable WordPress dashboard</a>. It&#8217;s the admin&#8217;s biggest structural shakeup in years. You can drag, resize, and rearrange widgets like Welcome, Activity, and Site Health to fit how you actually work. It&#8217;s the first testable preview of a long-discussed overhaul. Enable it under Gutenberg &gt; Experiments to try it. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jarda Snajdr</strong> reports that <a href=\"https://make.wordpress.org/core/2026/06/05/react-19-upgrade-temporarily-reverted-in-gutenberg/\"><strong>the React 19 upgrade has been reverted in Gutenberg</strong></a>. Shortly after 23.3.0 shipped, many plugins built for React 18 started crashing. The APIs barely changed, but the runtimes clashed: React 19 rejects elements made by a bundled React 18 JSX helper. So 23.3.2 rolls back to React 18. The team still plans the upgrade for 7.1—this time with a feature flag and a compatibility layer.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Isabel Brison</strong> and I chatted extensively about the latest Gutenberg plugin releases 23.1 to 23.3 and discussed the responsive controls now available in the Gutenberg plugin for desktop, tablet and mobile view ports. The episode will drop in your favorite podcast app over the weekend. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-131/\">Gutenberg Changelog #131 – Gutenberg Plugin Releases 23.1 – 23.3, Calls for Testing for 7.1 and more</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45775\" height=\"280\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/06/Screenshot-2026-06-05-at-17.56.38.png?resize=652%2C280&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rich Tabor</strong> shares a few <strong><a href=\"https://rich.blog/little-big-things/\">“little big things” for WordPress editing</a>. </strong>The idea is simple: complexity has piled up, and small fixes can clear it. His PRs make block locking a one-click job in List View. They keep you in place when editing synced patterns, instead of whisking you off to another view. And zooming out reuses the familiar Patterns Explorer. He&#8217;s not precious about them—contributors are warmly invited to take them over the line.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Dave Smith</strong> walks you through <a href=\"https://www.youtube.com/watch?v=TdsQe9oi8mg\">an interactive prototype reimagining the WordPress Site Editor around user goals rather than system architecture</a>. Built during Automattic&#8217;s Radical Speed Month, it keeps the same blocks, templates, and data model intact while changing entry points, language, and defaults. Since internal research flags the Site Editor as the top driver of negative support outcomes, you&#8217;ll see how remapping it around what you want to do could ease that friction. It&#8217;s an experiment, not a roadmap.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"calls-for-testing-for-wordpress-7-1\">Calls for Testing for WordPress 7.1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">With WordPress 7.0 out the door, contributors shared a series of Calls for testing  this week to prepare for WordPress 7.1. The schedule is tight with Beta 1 slated for July 15, 2026. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ramon Dodd</strong> puts out a <strong><a href=\"https://make.wordpress.org/core/2026/05/21/media-editor-modal-call-for-testing/\">call for testing the new Media Editor Modal</a>.</strong> Cropping in the block editor hasn&#8217;t changed much in years, and the old inline tool leans on a limited third-party library. This new standard way of Image edition inside the Block editor replaces it with a WordPress-native one. You get freeform and aspect-ratio cropping, flip, rotation, and metadata editing in one place. The quickest way to try it is a ready-made Playground link. Feedback is welcome via the comments or GitHub.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne McCarthy</strong> announced a <strong><a href=\"https://make.wordpress.org/core/2026/06/03/announcing-a-collaborative-editing-outreach-effort-for-7-1/\">collaborative editing outreach effort for WordPress 7.1</a>.</strong>  After real-time collaboration was pulled from 7.0, this gathers real-world early adopters across many hosting setups to find bugs faster. It lives in one Slack channel, <a href=\"https://wordpress.slack.com/archives/C0B7W4UQFC2\">#collaborative-editing-outreach</a>. If you&#8217;d use collaborative editing regularly and run the latest Gutenberg, you&#8217;re invited—through the cycle, with a test team badge at the end. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rae Morey</strong> has the skinny for you in <strong><a href=\"https://www.therepository.email/contributors-launch-fse-style-outreach-program-to-get-real-time-collaboration-ready-for-wordpress-7-1\" rel=\"noopener\" target=\"_blank\">Contributors Launch FSE-Style Outreach Program to Get Real-Time Collaboration Ready for WordPress 7.1</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Adam Silverstein</strong> puts out a <a href=\"https://make.wordpress.org/core/2026/06/04/call-for-testing-client-side-media-processing/\"><strong>call for testing client-side media processing</strong></a>, now targeting WordPress 7.1. Here&#8217;s the idea: when you upload an image, your browser resizes and encodes every size locally using VIPS in WebAssembly, before anything reaches the server. That eases CPU and memory load on hosts and brings modern formats like AVIF, WebP, HEIC, and JPEG XL to every site. Browsers that can&#8217;t cope fall back quietly to server-side. Try it in Chromium with the latest Gutenberg.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Brian Coords</strong> invites you to a <a href=\"https://developer.woocommerce.com/2026/06/03/ai-wordpress-woo-live-event/\"><strong>live panel on practical AI workflows for WordPress and WooCommerce</strong></a> on Tuesday, June 30, 2026, at 10am PDT. Hosted with Shani Banerjee and featuring Nik McLaughlin, Kyle Runner, and Suzanne Kolpakov, the conversation covers WooCommerce MCP, the WordPress Abilities API, Pressable MCP, and making your own plugins more agent-ready. You&#8217;ll come away with practical ideas for managing stores and guiding cautious clients, plus open Q&amp;A. Can&#8217;t make it live? Register anyway for the recording.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nathan Wrigley</strong> talks with plugin reviewer Luke Carbis about <a href=\"https://wptavern.com/podcast/218-luke-carbis-on-the-future-of-wordpress-plugins-ai-ethics-and-new-directory-standards\">the future of WordPress plugins on the Jukebox podcast</a>. Here&#8217;s the worry: plugin submissions have quadrupled in a year, largely AI-generated, so good plugins struggle to stand out. Carbis floats ideas you can test: logging into your site with your WordPress.org account, installing from your own Git repos, or a commercial marketplace funding contributors. They also weigh AI ethics, a generational backlash, and his proposed AI-disclosure header for the directory.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Wes Theron</strong> published a new training video and you can learn <strong><a href=\"https://www.youtube.com/watch?v=MIbZSbBbF2k\">how to customize your site’s navigation menus with AI</a><a>.</a></strong> Once your site is connected, you describe the change and the agent makes it. You&#8217;ll learn to add a page to your header, remove an outdated link, and reorder items. It also covers building dropdown menus under an unclickable parent, adding a footer menu, and linking to blog categories. The point: clear menus help visitors find what matters.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ajit Bohra</strong> and the LUBUS team released <a href=\"https://wordpress.org/plugins/color-palette-block/\">Color Palette Block 2.0, a free plugin for building and sharing color palettes</a> in the block editor. It grew out of their own client and internal documentation needs. It&#8217;s handy for brand kits, design systems, and style guides. You add swatches manually, pull from your theme, or generate random ones. Pick from four display styles—Square, Polaroid, Circle, or Droplet—and copy each color as HEX, RGB, HSL, or a CSS variable.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Justin Tadlock</strong> shares a playful tutorial on registering custom icons for WordPress 7.0&#8217;s new Icon block. Since the public registration API won&#8217;t land until 7.1, you&#8217;ll learn a clever workaround using PHP Reflection to reach the protected <code>WP_Icons_Registry::register()</code> method, bundling SVGs in your theme through an Icon enum and registrar class. Built on work by Ryan Welcher and Nick Diego, it&#8217;s educational fun—not for production, where Nick&#8217;s Icon Block plugin still does the job properly.</p>\n\n\n<div class=\"ng-block-7740483c98ba74ad wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-d481c02ffb8c8467 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2025&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-2764cf6c181a18b3 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Casey Burridge</strong> introduced <strong><a href=\"https://www.gravitykit.com/introducing-block-mcp/\">Block MCP, GravityKit&#8217;s open-source WordPress MCP server</a>. </strong>The problem it solves is familiar: existing MCPs treat a post as one HTML blob, so AI edits strip block markers and break your layout. Block MCP exposes each block as an addressable unit with a stable ID. Your agent can make surgical edits, batch up to 50 changes atomically, and undo any of them. In their tests across Claude models, only Block MCP worked reliably. </p>\n\n\n<div class=\"ng-block-e5d09f6bb655eba8 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-94aff0e577ec06b3 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-147a5e9877cf4bdc wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-ad59c9f65e7ed6e6 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-11f0c929408130b8 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-9518a58cbf4b750f wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jun 2026 23:14:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Matt: WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=152996\";s:7:\"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:27:\"https://ma.tt/2026/06/wceu/\";s: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:1597:\"<p class=\"wp-block-paragraph\">Cześć wszystkim, Kraków&#8230; I made the call not to fly to Poland for <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. I&#8217;m very sorry for the last-minute notice; I was really hoping to make it. I’m okay, but I <a href=\"https://waitbutwhy.com/2015/12/the-tail-end.html\">want to stay close</a> to loved ones going through difficult times.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Seeing the pictures from <a href=\"https://europe.wordcamp.org/2026/community/contributor-day/\">Contributor Day</a> warms my heart.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-152999\" height=\"378\" src=\"https://i0.wp.com/ma.tt/files/2026/06/wceu-2026-contrib-day-1024x640.jpg?resize=604%2C378&#038;quality=89&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Bardzo za Wami tęsknię. I miss you dearly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The <a href=\"https://wordpress.org/news/2026/06/pts/\">Protect The Shire post on W.org</a> contains what I planned to talk about, and <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a> and <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a> will lead the Q&amp;A keynote at the end.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;ll watch all the sessions so if any WordCamp speakers would like feedback on their talk, <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdIeEJ8L2tGDVeJVZQrD5LMGMdtJLXP9RYKOB4DhbXIOADMyQ/viewform\">just fill out this form</a>, and I’ll write something up and message it to you on the .org Slack. </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, 05 Jun 2026 19:07:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: Protect The Shire\";s:7:\"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=20783\";s:7:\"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:39:\"https://wordpress.org/news/2026/06/pts/\";s: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:7893:\"<p class=\"wp-block-paragraph\"><strong>tl;dr:</strong> <em>Temporary 24-hour cooldown period for plugin/theme releases before auto-updates. AI can give defenders an edge. We want to secure all 78K plugins and themes on WordPress.org. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">One of the things we’ve always striven to do as the developers of WordPress is to work harder so you don’t have to; we take technology that’s complex or inaccessible and make it available to everyone, running in as many environments as possible. It’s the Open Source way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just last December there was a <a href=\"https://x.com/karpathy/status/2026731645169185220\">step-change in coding ability</a> that rocked many developers, and since April’s <a href=\"https://red.anthropic.com/2026/mythos-preview/\">reveal of Mythos</a>, security activity has kicked into high gear. A few days ago, <a href=\"https://chromereleases.googleblog.com/2026/06/stable-channel-update-for-desktop.html\">Chrome shipped a release with 429 security fixes</a>! The threats and opportunities of these new capabilities inspired us to kick off an initiative we call <strong>Protect The Shire</strong> (hat tip <a href=\"https://www.tolkiensociety.org/discover/biography/\">J. R. R. Tolkien</a>) with the aim of using our best minds and the infrastructure of WordPress.org to make all code in our directories and repositories as secure as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Much of this work was and will remain behind the scenes, and we hope its success is defined mostly by what <em>doesn’t</em> happen. However, while we reckon with our newfound powers, we need to make space for review.</p>\n\n\n\n<h2 class=\"wp-block-heading\">To Update or Not</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress core updates go through multiple people and layers of review before they go out, a process we’ve polished to a high art in the 18 years since we <a href=\"https://wordpress.org/news/2008/12/coltrane/\">introduced one-click upgrades in 2.7 “Coltrane.”</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Core is solid, and I’m so proud that <a href=\"https://wordpress.org/about/stats/\">over 50% of all WordPress sites have upgraded to 7.0 within two weeks</a>! That’s the result of an unimaginable amount of work across thousands of hosts, developers, and teams across WordPress.org. We’ve pushed hard to make upgrades happen automagically, and as fast as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’re in a liminal period now, and I believe 2026 will be a year of tension between two approaches: updating as quickly as possible to stay secure, and holding back on updating to stay secure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’ve seen clever and dangerous supply chain attacks across the npm, PyPI, GitHub, and RubyGems ecosystems, and we even had our own mini-version with the <a href=\"https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/\">Essential Plugins debacle</a>, where good plugins were unknowingly sold to a new author who had malicious intent.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How to balance security updates and <em>securing</em> updates?</p>\n\n\n\n<h2 class=\"wp-block-heading\">Mirkwood or the Wild West?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Everyone knows the fun of WordPress is in its 78k+ plugins and themes. We have a rigorous, human-powered review process for <a href=\"https://make.wordpress.org/themes/handbook/review/\">theme</a> and <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\">plugin</a> submissions, but once you’re published in the directory, you’re on your own. Our update system currently distributes every plugin and theme release as soon as a developer presses the button. That’s what keeps the directory as robust as WordPress itself. There were over 3,000 commits to the plugin repository yesterday! </p>\n\n\n\n<p class=\"wp-block-paragraph\">For now, each new plugin release will wait up to 24 hours before being distributed through auto-updates. This will give everyone, including a <a href=\"https://wapuu.studio/wapuu/a-gandalf-wapuu-that-is-a-coding-wizard-302912b8/\">new Wapuu</a> we call Gandalf, a chance to review changes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I expect 24 hours could be reduced to minutes as the process evolves, but we’ll err on the side of caution while AI models are advancing so rapidly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Our <a href=\"https://make.wordpress.org/plugins/\">plugin review team</a> seems superhuman, but still needs to sleep. But bots don’t, and a depth of review that seemed unimaginable before is now a matter of time and tokens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The security capabilities of AI are going to make the world weird and take a lot of our focus in the next few months, but there’s a light at the end of the tunnel.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our Shire Is Special</h2>\n\n\n\n<p class=\"wp-block-paragraph\">There’s no shortage of ways to find, install, and update plugins and themes for WordPress. For those who choose WordPress.org, though, we want to make sure that it feels safe and secure. That means staying strict about some things—like guidelines and Open Source licenses—while also remaining flexible enough to allow solo hackers, community projects, and for-profit commercial plugins and themes to thrive in our ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">GitHub stars may get the hype, but if you add up all the numbers <a href=\"https://wordpress.org/plugins/\">in our plugin directory</a>, it’s over 400M installs. There are 78k+ extensions, many from solo devs, installed on over a million sites each! Now we need to learn from the best parts of GitHub and make that available to every developer on WordPress.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Just because WordPress plugins have a reputation for vulnerabilities is no reason not to aim for the same security and stability we’ve achieved in core. We’ve done the impossible a few times already in <a href=\"https://wordpress.org/book/table-of-contents/\">our journey from a b2/cafelog fork</a> to <a href=\"https://wordpress.org/showcase/\">where we are today</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Freedom and security are not zero-sum.</strong> With Open Source, we can show how security comes from transparency, not obscurity. Collaboration over competition. What we accomplish when we come together is nothing short of incredible. Success always attracts bad actors, but we grow stronger through every adversity.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scale of WordPress can make some challenges seem too big to tackle, but given time, there is no problem that’s insurmountable. I’m reminded of the story behind the title of <a href=\"https://www.amazon.com/Bird-Some-Instructions-Writing-Life/dp/0385480016\">Anne Lamott’s book <em>Bird by Bird</em></a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Thirty years ago my older brother, who was ten years old at the time, was trying to get a report written on birds that he&#8217;d had three months to write, which was due the next day. We were out at our family cabin in Bolinas, and he was at the kitchen table close to tears, surrounded by binder paper and pencils and unopened books about birds, immobilized by the hugeness of the task ahead. Then my father sat down beside him, put his arm around my brother&#8217;s shoulder, and said, &#8220;Bird by bird, buddy. Just take it bird by bird.”</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">More to come, stay tuned. I wish everyone <a href=\"https://europe.wordcamp.org/2026/\">in Kraków at WordCamp Europe</a> the best and hope to see you soon!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jun 2026 18:51:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Open Channels FM: Artificial Intelligence” Just a Fancy Way to Say “Fake”?\";s:7:\"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://openchannels.fm/?p=2554616\";s:7:\"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://openchannels.fm/artificial-intelligence-just-a-fancy-way-to-say-fake/\";s: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:128:\"The light side of whether artificial intelligence is genuinely intelligent or merely advanced technology misrepresented as such.\";s: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, 04 Jun 2026 13:19: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Open Channels FM: Open Tabs: Lists Over Grids, AI-Assisted Content &amp;amp; A Global Tech Read\";s:7:\"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://openchannels.fm/?p=2555279\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://openchannels.fm/open-tabs-lists-over-grids-ai-assisted-content-a-global-tech-read/\";s: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:219:\"Bob Dunn launches \"Open Tabs,\" sharing business insights while discussing his new design preferences, the importance of human touch in podcasting, efficient content repurposing with AI, and recommending restofworld.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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jun 2026 14:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: #219 – Austin Ginder on How AI Is Exposing Hidden Threats in WordPress Plugin Updates\";s:7:\"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=204491\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/podcast/219-austin-ginder-on-how-ai-is-exposing-hidden-threats-in-wordpress-plugin-updates\";s: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:47921:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, how AI is exposing hidden threats is WordPress plugin updates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/contact forward slash jukebox and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Austin Ginder. Austin has been involved in the WordPress ecosystem since 2010, and since 2014 has run Anchor Hosting, a business that manages thousands of WordPress websites. While he&#8217;s a developer and automation enthusiast at heart, in recent months Austin has found himself at the forefront of a burgeoning crisis in WordPress, security supply chain attacks targeting plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A chance discovery during a malware cleanup on a client&#8217;s site, propelled Austin into what would become a wider investigation of plugin vulnerabilities. What he uncovered is both alarming and timely. Bad actors aren&#8217;t just hacking sites directly, but are instead infiltrating the supply chain, either by purchasing plugin companies and weaponising them, or by hijacking plugins and pushing out malicious updates. These attacks are subtle, often shifting plugin update servers away from wordpress.org to rogue channels where malware can be distributed, leaving end users in the dark, and their sites at risk.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We trace Austin&#8217;s journey from accidental security investigator to creator of the WP Beacon Project, a resource aimed at tracking, documenting, and alerting the WordPress community to known supply chain attacks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He shares how AI tools have radically changed what&#8217;s possible in threat detection and forensics, enabling individuals, and hopefully someday, the larger hosting providers to identify patterns and root causes behind widespread infections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into case studies of specific plugins compromised in recent months, the challenges of auditing over 60,000 plugins in the wordpress.org repo, and the complexities of stopping these attacks once malicious code is in the wild. Austin also discusses his hopes for greater collaboration with hosts and security researchers aiming for better automated monitoring and response.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you manage WordPress websites, create plugins, or just care about the future of open source security, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">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/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Austin Ginder.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Austin Ginder. Hello, Austin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:40] <strong>Austin Ginder:</strong> Hey, good to meet you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:41] <strong>Nathan Wrigley:</strong> Very nice to meet you too. I was put in Austin&#8217;s way by I think Courtney Robertson.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thank you Courtney for that because, on a different podcast, which I do, we were talking about an item, which is very much in the news at the moment. It&#8217;s all to do with plugins and security. And whenever I say security, any of the people that I have on the podcast, I feel it&#8217;s pretty important that person gets a chance to stamp their credentials into the podcast about themselves. Because it&#8217;s one of those areas where a little bit of knowledge can go a long way. Tell us about your background, WordPress hosting, security, those kind of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:16] <strong>Austin Ginder:</strong> Sure. So I&#8217;m a developer, first off. I&#8217;ve been running a WordPress hosting service since 2014, and I&#8217;ve been working in the WordPress space since 2010. A long timer. I love automation. WPCLI commands, bash scripts. I&#8217;m in the weeds on a technical basis.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in terms of security, I wouldn&#8217;t call myself a security expert, which is ironic for this conversation because of some of the things I&#8217;ve been finding over the last month or so. And it&#8217;s all thanks to AI. AI has been my friend. It&#8217;s just right place, right time, getting lucky and also just a mix of everything is changing right now in the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:56] <strong>Nathan Wrigley:</strong> Yeah. Thank you for that. So as you&#8217;re about to hear, we&#8217;re not gonna be talking at from the perspective of Austin demonstrates how to fix a particular challenge in WordPress. It&#8217;s much more of a general thing, and an alert really. It&#8217;s a bit of a call to action about a problem which has been systemic in the WordPress ecosystem, well, forever really, since I guess, plugins came along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And this is all about really change of ownership of plugins, and I could do a job of trying to describe the scenario here, but do you want to just run through what you&#8217;ve discovered in the last few weeks, and the three or four incidents that you&#8217;ve uncovered and what they mean and how they&#8217;ve come about?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:37] <strong>Austin Ginder:</strong> Yeah. So in particular, we&#8217;re talking about supply chain attacks, and a supply chain attack is a different kind of attack. It&#8217;s not a direct, my site got infected with malware or something like that. It runs a little bit more deeper. It&#8217;s a scenario where either it can happen a couple different ways.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A hacker might get control over the plugin repo itself, maybe a credential breach, where they sign in and they are acting as the author, and they push out bad code. As a user, you just update your plugin and you don&#8217;t realise you&#8217;re updating to something that&#8217;s harmful for your website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that&#8217;s one scenario. The other scenario which is crazy to me, but like hackers literally buying companies and then weaponizing the plugins themselves and distributing them through the official channels. So that&#8217;s the big story that I was covering this last month. That is just what possesses someone to spend six figures to buy a suite of plugins and then weaponize them and try to get away with it? No, that can&#8217;t happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:42] <strong>Nathan Wrigley:</strong> Except, it does. So let me just reiterate what&#8217;s going on there. So if you&#8217;ve been to the wordpress.org repository, or indeed you&#8217;ve downloaded plugins from third party vendors, maybe a pro version of a plugin or what have you. Usually there is some aspect of the WordPress admin UI, which enables that plugin to be updated by clicking a link or perhaps automated, the update will happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Increasingly, I think people are being, have been encouraged to click enable automatic updates. So it just ticks over in the background. Perhaps while you&#8217;re asleep, it gets updated to the latest version. This in a universe occupied only by honest people would be absolutely fine. We&#8217;d have no problem that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, the scenario that you are describing is that kind of invisibly it&#8217;s entirely possible for somebody to sell their plugin or indeed maybe even have their plugin repo hijacked in some way. But let&#8217;s go with the sell their plugin scenario, because that&#8217;s the easiest one to get a hold of. Sell it to somebody.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Obviously, I would imagine in most cases, assuming that person is a good actor, is just going to carry on doing the nice things that the plugin does, updating the code, and doing security updates and what have you. However, there is zero guardrail to stop them putting whatever they want into the plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so overnight, a plugin which has been working for a decade or more, doing its job, now suddenly is masquerading. And it may be that the functionality of the plugin is also still there. It&#8217;s not like suddenly the plugin just stops working, or it&#8217;s really obvious what&#8217;s going on. It may be that just a few lines of code have been adapted, modified, there&#8217;s some backdoor smuggled in to the plugin. An end user would never know that this was going on. Have I summed that up? Is that about where we&#8217;re at?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:35] <strong>Austin Ginder:</strong> Yeah, these are bad actors trying to hide themselves. They&#8217;re sneaky. They don&#8217;t do things that are obvious. Like they&#8217;re not just uploading malware to WordPress plugin repo. What they&#8217;ll do instead is they might slip a third party updater, which is against the guidelines, clearly. But they can do it a little bit more sneaky.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if they can get a third party uploader put into their plugin, then they can actually hijack the plugin. Meaning you download a plugin from wordpress.org, and you run auto updates, and it updates not from the wordpress.org version to the newest wordpress.org version. It offloads to their own compromised update channel.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then once it&#8217;s on the update channel, wordpress.org has zero visibility, and you&#8217;re just running a hijacked plugin and you don&#8217;t even know it. Unless you go in and you run a verify command, from the command line or, you&#8217;re scanning for things like this. And then after they get the plugin hijacked, that&#8217;s when they compromise your site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">They could do SEO spam attacks, or display ads, or poison the search results from Google&#8217;s perspective. Many different things that they do to try to recoup their money in the investment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:50] <strong>Nathan Wrigley:</strong> So let me just run that by you again. So just to make sure I&#8217;ve understood. So in this scenario, the plugin, it is like a one time thing in a way, but we&#8217;ll explore that as well in a moment. The plugin is acquired by somebody else and potentially some of the behaviour that you&#8217;ve seen is that the only part of the plugin that they modify is the location of the update server.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, typically that would&#8217;ve been over at wordpress.org, and every time you click the update button, you are receiving the repo version of it. However, this updated version will then offload to a third party server somewhere. And at that moment, wordpress.org loses all visibility of what&#8217;s going on. As far as they&#8217;re aware nothing has happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You are now just getting updates from elsewhere. You would never see anything. But obviously whatever payload they wish to put into that plugin is completely invisible to wordpress.org.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, I suppose the wordpress.org version, there&#8217;d be a telltale sign that this was happening because there would be new and modified code to indicate, oh, look, there&#8217;s a third party server in play here. But WordPress org has no visibility into what the malicious code being updated onto your website is. Again, is that about where we&#8217;re at?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:07] <strong>Austin Ginder:</strong> Yeah. Everything on wordpress.org is open source. Even the platform itself is open source, so you can see the full code, how everything operates there. And in addition to that, all of the plugin activity happens on SVN, which is like the raw pipeline.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So all of the data is there and available to anyone to go in and audit the data, but it&#8217;s, it&#8217;s an after the fact situation. Like after a situation happens, you can go back to the raw data and run a full audit to try to piece together all these missing pieces. And all these missing pieces would&#8217;ve been impossible to correlate together if it wouldn&#8217;t be for AI. Like now we have a superpower where we could just run AI through it all. If we feed it the right points, we can start to make the correlation after the fact as to what happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:59] <strong>Nathan Wrigley:</strong> Okay, so essentially what you are saying, I think, is that the work of checking this, prior to AI, let&#8217;s go with that, it was just too humanly intensive. There were 60 plus thousand plugins on the wordpress.org repo, going back and having a human inspect every single update, every single file, every line of code is, as you can imagine, a completely unrealistic process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, now AI really its superpower is its capacity to take a giant corpus of data, and then do things with that data. It&#8217;s almost like it can capture the entirety of the internet in one hit. And so that&#8217;s what&#8217;s enabled you to weed out this sort of stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have to ask from a personal point of view, why are you doing this? And I don&#8217;t mean that the way it sounds, because obviously it&#8217;s philanthropic. I&#8217;m extremely grateful that you are doing this. But how did you end up taking this on as a, I don&#8217;t know, a hobby, a pet project, a sideline?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:59] <strong>Austin Ginder:</strong> This is completely accidental, right? The backstory is in February, I saw a huge shift at my own customers websites, where sites that have been secure for years and years, all of a sudden was getting malware. The short version of it is while I was doing some malware cleanup for a customer, I uncovered one of these big back doors, and it was just like going through the process.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So malware cleanup before AI was always a little bit of a dicey thing. You can check all the boxes, make sure everything looks good, but you never had the certainty that it was all a hundred percent clean. Did I miss something? But with AI it&#8217;s very easy to do a thorough, in depth, investigation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How did this happen? Where did it come from? Is my site actually clean now? It just crawls over all the files with Claude Code and other tools, and it gives you a nice report. When I had some recent, my own customers that got malware, and I ran through the forensics level style that AI can give, it uncovered some things that made me question, maybe I should look upstream, maybe I should look at wordpress.org. And I started to feed that into the AI and sure enough, there was something there and it was story worthy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:13] <strong>Nathan Wrigley:</strong> So presumably that was then bound to a particular plugin. So your customer, something went wrong, you pointed the AI at it, it gave you a report, pointed you to the wordpress.org repo. And that in theory could have been the end of that. You clean up your client website and move on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But it sounds like this became much more than that, because over the intervening days and weeks, you found that this was alarmingly, not just a one-off. This was a pattern. And I think the last time I was reading about this, I think you&#8217;d found four. I don&#8217;t know if four plugins is now up into some other figure or not, but certainly at the time I was reading you&#8217;d found four plugins with exactly the same strategy. I don&#8217;t know if they were from the same vendor or what have you. Just tell us where you&#8217;re at in the middle of May 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:07] <strong>Austin Ginder:</strong> Yeah, so I&#8217;ve now published four more or less in depth research. Now, I wasn&#8217;t the sole finder of all these, but I was the one who actually pointed the AI at it, and got to the root of it. And it uncovered some other things that previous folks hadn&#8217;t found. So the crazy thing is all four situations are completely different, and that&#8217;s the wild thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the one was, the source was the WordPress Plugin Team. So they saw there was some bad activity happening, with a set of the Essential Plugins package. So that&#8217;s like a 30 plus plugins. So they closed down all the plugins. They issued an alert, Hey, your site might be compromised. And they actually put code in the patch of the plugins that would check the wp-config file, was it tampered with by the plugin authors themselves?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So one of my customers saw the notice flagged me. I scanned it, saw it was compromised, and then that&#8217;s when I uncovered how big of a deal it was, the Essential Plugins. It was actually a purchase of a company. That was just one of them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The other three situations, again it&#8217;s all kind of part, it stems back to me overhauling my security system for my clients. The other one was flagged by a new security feature I was implementing where I check all of my customers JavaScript embeds.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m basically scanning changes over time, hoping to catch like a credit card skimmer, or something else like that for my own customers. Well one of them came back. Something&#8217;s weird. It was a widget logic plugin that was embedding some weird sports JavaScript code for one of my sites. And I kept digging and digging into it, and sure enough, it was another supply chain attack on that particular plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, in all these instances, the WordPress Plugin Team has been fantastic. Very responsive and closing down the plugin, and applying patches, and getting the out there. Yeah, it&#8217;s weird. I had no plans to building something like this. I just stumbled upon it and every situation was a different story.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The last one I&#8217;ll share is, I was messing around with this idea that, I wonder if I could use AI to hunt through my own customer&#8217;s plugins to detect plugins that are running different versions of the code base. You might have Jetpack installed with the latest version, but maybe there&#8217;s a variant version Jetpack&#8217;s running. That&#8217;s the core idea, or the core concept.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I built this tool with AI to scan my own customers, and it found a variant version of the Quick Redirection Plugin installed. I&#8217;m like, what&#8217;s going on here? So I dig into it and I had 12 sites running a version of the plugin that wasn&#8217;t on wordpress.org. So then I threw it through AI. It told me the difference. And sure enough, like you had to keep digging to get actually get to the answer what happened.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But that was a situation where many, the plugin author themselves offloaded most of their customers to a hijacked version. And my own customers years later were running a hijacked version. So I wasn&#8217;t directly searching for this stuff, it just came up, and then I&#8217;m like, after you get three of them, it&#8217;s alright, now I just wanna see if I can find one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I built the scanner and while I was scanning the top 2000 WordPress sites, I found one, and it was active. It was active, meaning the plugin, it&#8217;s called Scroll To Top. It was wired in to 20,000 sites, but it wasn&#8217;t active. So a lot of these bad actors, they will take their time, get a plugin that&#8217;s compromised in a lot of people&#8217;s sites, and then when the moment&#8217;s right, pull a trigger. And then at that point they can start to flow in bad content or SEO and actually do the compromise.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The one that I actually found was a compromise scenario, from what I can tell, the bad actor hadn&#8217;t actually pulled the trigger yet. So it was a success story.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:13] <strong>Nathan Wrigley:</strong> Yeah, that is really, kind of makes it more alarming in a sense, doesn&#8217;t it? Because once I suppose there&#8217;s an active exploit, and people are beginning to report what&#8217;s going on here? There&#8217;s some strange behaviour on a website, I presume at that point eyeballs will fall on what&#8217;s going on and work will be done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, as you&#8217;ve just described maybe months, weeks, possibly years, a plugin can have incredible functionality. It might gain widespread adoption, because it&#8217;s doing this one thing particularly well. Just with this dormant code sitting there waiting for the moment that&#8217;s opportune. Maybe there&#8217;s some scenario in the real world in which it will become a timely thing to be able to deploy that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s really alarming, isn&#8217;t it? Because who knows how many websites are currently sitting there with as yet undiscovered, back doors, or problems that we simply don&#8217;t know about because they haven&#8217;t been triggered? Yeah, that one is really alarming.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Austin, I&#8217;m going to give you a little opportunity because you keep saying my clients, and I don&#8217;t think we painted the context of that. Just tell us a little bit about what you do and how that aligns you to have, have an eyeball on so many websites. I think currently, when you say my clients, I think it&#8217;s true to say that you&#8217;ve got something in the order of 3000 websites that you manage. Now, if you were building those as client websites, that&#8217;s a lot of clients. Just tell us what it is that you do, and that might widen the debate a little bit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:39] <strong>Austin Ginder:</strong> No, I don&#8217;t do consulting work anymore. So back in 2014, I transitioned into web hosting full-time. I run Anchor Hosting, and my business is, it&#8217;s a pretty simple business model. I resell other managed WordPress hosting services, and provide all of the support and maintenance on top of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I primarily use web hosts like Kinsta and Rocket.net. They are larger companies. They have a lot more eyeballs on it. I like to layer as many layers between me and the web host infrastructure as I can, so that I can actually solve what I want to solve. And that&#8217;s the WordPress maintenance part.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I have a little bit more visibility than some. So that is more unique position than most. And I actually would say if there&#8217;s any takeaway from this conversation, the takeaway is any hosting company out there that has more data than me, they are sitting on a gold mine and they don&#8217;t know it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because any site that gets malware, that is the gold. If you can point AI at every malware situation or attack, you can sometimes back channel it to figure out where it actually happened, and start to paint a bigger picture. I would love to get my hands on like a web host that has millions of sites and run some scans, because that&#8217;s how you&#8217;re going to discover it, weed it out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:59] <strong>Nathan Wrigley:</strong> And there&#8217;s maybe patterns going on. I don&#8217;t suppose every hacker of WordPress plugins is some kind of evil genius. They might just be, I think what&#8217;s often called script kiddies. The idea being that they are taking templates and copying and pasting these ideas far and wide.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And therefore I suppose patterns would emerge and maybe as you said, some of these larger hosts would be able to spot that pattern, and get out in front of these different problems which have, as yet, been undetected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay, so you&#8217;ve then taken an additional step. You&#8217;ve got yourself a URL, wpbeacon.io. Dear listener, as is always the case, anything that we mention today, so the links to the articles which Austin has written, I will put those in the show notes, but also I&#8217;ll link to wpbeacon.io. Just tell us a little bit about that and that, how that&#8217;s helping the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:52] <strong>Austin Ginder:</strong> So WP Beacon was again, an idea I threw together last month. Not a whole lot of planning. But it was just like, okay, I&#8217;ve got three of these now. These are basically in depth investigations. Where do you put it? Because this is different than a typical vulnerability database. Like a vulnerability database is really good about endeavour to find bad code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is not bad code, this is bad actors. They&#8217;re two completely different problems. So I built WP Beacon as like my place to put all these findings. And the idea is actually have it be a legitimate feed for other folks, like another metric or another vulnerability database, but for supply chain attacks in particular.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:39] <strong>Nathan Wrigley:</strong> And so I suppose the idea being that people who are, I mean obviously if you&#8217;ve got one WordPress website, it&#8217;s fairly unlikely that you&#8217;ll come across WP Beacon, because you&#8217;re not in the business of being in the community or what have you. But if you are somebody that&#8217;s, I don&#8217;t know, managing multiple clients, half a dozen or what have you&#8217;re in the WordPress space, this is the kind of thing you might want to know about.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I suppose you are then hoping to be some sort of gatekeeper of knowledge around whether a supply chain attack has occurred. So let&#8217;s say for example, I&#8217;m considering putting a new plugin in. I find something on the wordpress.org repo, and it looks fine. Everything about it is screaming, yes, install me. I would go over to WP Beacon. I see that you&#8217;ve got a search on the homepage. There&#8217;s a list of the number of installations that have been covered, authors, tracked plugins that are being watched and what have you. I would be able to, in some way, interact with that website and gain an understanding of, yep, we&#8217;ve got nothing on them. Everything looks fine, or no, hold on, have a second thought. This thing happened last month. Is that again? Is that kind of what&#8217;s going on there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:45] <strong>Austin Ginder:</strong> I think end users might find value in it, but I think the better target audience is, this is missing security research that security people don&#8217;t have. I see it as that. It&#8217;s like when I do a report and I put it up on WP Beacon, those identifiers of these bad actors can then be, action can be taken on that by real legitimate security people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I have a friend, his name&#8217;s Sal. He used to work at Kinsta. So when I was dealing with one of these cleanups, I was messaging him privately. I&#8217;m like, hey, Sal, look what I found. And he is oh, gimme a second. I&#8217;m going take their compromise server offline. I&#8217;m like, what do you mean? So he whips it out and he gets their domain suspended, website taken offline. And this is like the crucial gap, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">The research person wants to make people&#8217;s site safe. So if you&#8217;re out there and you&#8217;ve got a hijacked plugin installed and you don&#8217;t know about it, you need a research person, and a security person, to take care of the issue for you. And that is like taking down their infrastructure, taking down the bad actors infrastructure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:51] <strong>Nathan Wrigley:</strong> Oh, that is interesting, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:53] <strong>Austin Ginder:</strong> My goal of WP Beacon is just like, this stuff needs to be more visible. We need to be drafting and documenting this is how the supply chain attack happened in this case. And here is all of the identifiers for the security firms to go for, and take down their infrastructure. To give some sort of incentive that like this kind of behaviour isn&#8217;t going to be tolerated or a signal to the bad actors like, we&#8217;re coming for you. We&#8217;re going to find you, we&#8217;re going to weed you out.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:21] <strong>Nathan Wrigley:</strong> Yeah, so that&#8217;s interesting. So connections with hosting companies would certainly be beneficial, wouldn&#8217;t it? Because let&#8217;s say a bunch of hosting companies are pointing their staff at the WP Beacon data, then you could probably satisfy, I don&#8217;t know, 60, 70, 80% of WordPress instal by communicating with the bigger hosts. Because I imagine that&#8217;s where the majority of WordPress websites occur. I presume another angle would be the .org repo itself. The team over there, the Plugin Review Team and the Security Team and what have you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One ray of light, I suppose is that if you fix this, then you have fixed it. Whereas a lot of security problems keep coming back. Well, no, that&#8217;s not entirely true, is it? Having said all of that, I was fairly confidently thinking if you can, if you can get the plugin turned off so that it can&#8217;t be installed anymore, that&#8217;s one thing. If you can switch off the supply chain server, that&#8217;s another thing. But there&#8217;s going to be loads of different scenarios. It might be that they don&#8217;t have a supply chain server. It might be that they&#8217;re just defacing your website. And how do we disable that that particular functionality and the plugin?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I believe that wordpress.org has in rare situations deployed the, we will overwrite your plugin. I don&#8217;t know how to describe that, but I have a memory that in the past, something so catastrophic had happened inside of a wordpress.org repo, that there is the capacity for WordPress to say, okay, we&#8217;re taking command here, and we&#8217;re going to rewrite your plugins. I don&#8217;t think that&#8217;s very common, but I think that is something that can be done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:59] <strong>Austin Ginder:</strong> In these situations, that&#8217;s exactly what they did. They reverted a patch, closed down the repos, and their patch is what stands.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:08] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:09] <strong>Austin Ginder:</strong> So I think a lot of what my, what I&#8217;m trying to do is complimentary to what everyone else is doing. And I think it&#8217;s a little bit more, it&#8217;s an unexplored area, what WP Beacon is exploring. We have all this data, let&#8217;s see what we can get out of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I do share your optimism, and also I would love this to just be a solved problem, and six months later we shut down WP Beacon, like it&#8217;s not even needed. But that&#8217;s just not how the world works, right? What I do hope will come from this is the bad actors that have been operating for years, 10 plus years, we make it harder for them to operate. I think that would be a more realistic success story of this project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the bigger findings I found this past week, in the last few days, is this bad operator he&#8217;s been operating for the last 13 years. And what happens is his accounts get shut down, his plugins get shut down, and he just tries again. He opens up new accounts, new plugins, and he just keeps trying. We&#8217;ve got to make it a little bit harder for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:09] <strong>Nathan Wrigley:</strong> And also what&#8217;s really interesting there is that this is not, for you at least anyway, this doesn&#8217;t feel like a finished story. This kind of feels like, for you, now that you&#8217;ve put yourself in this seat, if you like, it feels each week possibly something new will be coming along, something that you&#8217;ve explored? Is that the case? I would like for you to say no at this point, no, there&#8217;s nothing new happening, but I the feeling that there&#8217;s quite a lot that you are uncovering on a daily, weekly, monthly basis.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:37] <strong>Austin Ginder:</strong> I do think it&#8217;s going to be harder and harder to find interesting things based on the raw data, using my technique of just going through and auditing things? That&#8217;s a good thing, right? If it&#8217;s harder to uncover these problems, that&#8217;s a positive indication that something&#8217;s happening.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think I&#8217;ve been extremely lucky by reverse engineering a problem. Like, how does the malware get here? Oh, okay. So then figuring out that there&#8217;s a bigger issue at hand. And I also think it&#8217;s one of those scenarios that we all think people are searching through the data, but they aren&#8217;t. I&#8217;ve got a $200 month Claude Code subscription, and I can search through the data with that. It&#8217;s actually feasible for individuals to start auditing the data and to get more eyeballs on this in a way that would never been possible before.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, I would encourage people to think bigger. If you&#8217;re an individual, you can take your site, download a backup and run it through Claude Code and do a file by file audit. It might take a few, Claude doesn&#8217;t like to do this, but it might take a few wranglings. No, look every line of code and tell me what you see. Do you see vulnerabilities? Do you see malware? Do you see any harmful things there? And an individual can do this, and they can get a very high level detailed report unique for their site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:55] <strong>Nathan Wrigley:</strong> That&#8217;s interesting advice. Maybe in the future, some of the pain that you&#8217;ve been through with Claude trying to get it to behave in the way that you expect, maybe that be interesting data to put out? What are the prompts which you&#8217;ve seen that work and so on?</p>\n\n\n\n<p class=\"wp-block-paragraph\">One thing which dawns on me, and I don&#8217;t really have the answer to this, because the wordpress.org repo, for good reason, has been wide open. What I mean by that is, lots of people can submit code. You don&#8217;t necessarily have to have a certain type of credential, or be a certain type of business and so on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, if you look out there in the broader tech landscape, things like, I don&#8217;t know, the Mac App Store or the iOS App Store or Google&#8217;s Play Store. I wonder what their approach is to firstly the onboarding of new plugin developers. But then what the inspection is for updates. When code comes through and it&#8217;s purporting to make a minor change to a particular app on your phone, what is being done there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I&#8217;m guessing that in the WordPress space, the fact that it&#8217;s run often by volunteers means that those kind of things are just going to be different. And perhaps those things need to be looked at. There needs to be potentially some more friction that&#8217;s added, or some more steps. And I know that a lot of work has been done by the Plugin Review Team to automate as much of that as possible, and to put some steps in place to make it so that those submissions get inspected in a more timely way. But I don&#8217;t have an answer. I&#8217;m certainly no expert. But it would be curious to see if there&#8217;s any lessons to be learned from the broader tech community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:30] <strong>Austin Ginder:</strong> Obviously the openness of WordPress is its power. App Store versus Android, right, kind of comparison? We&#8217;re more open source. You could just do what you want. There&#8217;s pros and cons, right? So how do we make what we have more safe? And I think the answer to that is everything needs a hundred percent code audited.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How do we get there as quick as possible? That&#8217;s a token question. Like, how many tokens can we spend to audit everything? I have fairly good coverage now for my own customer base. What I do is whatever leftover usage I have, I&#8217;m auditing all of my plugins. And I do it in a way that&#8217;s efficient, meaning I only audit this one plugin version once. That gets assigned to a hash, a unique hash. Then I know, oh, okay, so all of my sites using that same variant are covered.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So a hundred percent code coverage is what we need to do now. And then long term, also in concurrently, we need to start auditing any changes that come over the wire. It&#8217;s a lot, right? Like wordpress.org is very popular. There&#8217;s a lot of code, but I do think it&#8217;s in a realm of realistic. If you are able to shave out a lot of the noise, we don&#8217;t have to audit everything. We don&#8217;t have to see every CSS file you&#8217;re changing, or image you&#8217;re changing. But we do have to look over every PHP line, every JavaScript line, that there&#8217;s nothing harmful in there. And then eventually we&#8217;ll start to catch things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I don&#8217;t think it&#8217;s necessarily a one off thing. We don&#8217;t have to wait around for Automattic to come up with a solution. The data is out there. Anyone with a laptop and a subscription could just create a mirror and see, what changed over the last, day, and then start auditing that. I think people think it&#8217;s too impossible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:18] <strong>Nathan Wrigley:</strong> It feels like a large cliff that you&#8217;re staring at, at the beginning of this. And certainly in the past before AI, that cliff was, I imagine, more or less impenetrable But now the way that you&#8217;ve described, perhaps AI can be co-opted to do a lot of this work for us?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I wonder what you&#8217;ve got, if you&#8217;ve got any thoughts on the sort of permissions system. So I know that other, let&#8217;s say CMSs and certainly devices like Android devices and iOS devices, they come with permissions based systems. So for example, this code, it&#8217;s allowed access to the root file structure. Or it&#8217;s allowed access to the camera, or whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I know that there&#8217;s been debate in the WordPress ecosystem recently about whether something like that would be a good idea. At the moment, plugins, all bets are off. If you put a plugin in, it&#8217;s more or less got access to anything on your WordPress website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That&#8217;s an absolute strength of WordPress because it enables anybody to do anything. But I suppose given that it can enable any anybody to do anything, it also prevents a very large threat surface as well. I don&#8217;t really have the answer to that. I just think that&#8217;s a curious thing to raise and see if you&#8217;ve got any thoughts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:29] <strong>Austin Ginder:</strong> I guess my initial thought is I don&#8217;t necessarily want my WordPress site to feel like my laptop, where I&#8217;m constantly clicking things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:35] <strong>Nathan Wrigley:</strong> Yeah. Grant permission for this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:38] <strong>Austin Ginder:</strong> I don&#8217;t know what the solution is either. I think some of those ideas are great when you&#8217;re thinking about making something from scratch, but they are not as relevant when you&#8217;ve already have an existing ecosystem. Like you can&#8217;t, I would think it&#8217;d be very hard to bring some of those concepts into WordPress at this point. We&#8217;re already past that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:59] <strong>Nathan Wrigley:</strong> That ship has definitely sailed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:00] <strong>Austin Ginder:</strong> I want to be in the Wild West. I want to be able to code and do what I want to do. And especially with AI. If I got an idea, I just want AI to go to town, write me up the plugin to my spec, and not have to deal with some of those extra safeguards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It&#8217;d be great if we could find some way to make things more secure from an architectural standpoint, but that&#8217;s an architecture problem probably best suited for a new project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:22] <strong>Nathan Wrigley:</strong> The truth is that this will never, ever be solved. I mean security problems online. There will be a no point in the future at which everything is always safe, because humans are ingenious, and there are really credible, credible is the wrong word. There are ways to make money, or to make it worthwhile for the bad actors to be doing the bad things. And so long as those incentives exist, there will be people trying to hijack websites, undermine the security of your computer or phone or whatever it may be. But this is certainly an interesting one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it&#8217;s such a shame because with the benefit of hindsight, this was so obvious, and yet it hasn&#8217;t been a news story. Maybe it has in the past, I&#8217;ve certainly not come across it. But this whole supply chain thing is fairly new to me, and fairly alarming in the simplicity of deployment.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You literally purchase, or somehow get hold of, a popular plugin, not necessarily even a popular plugin, a plugin. And then instantaneously every one of those websites is up for grabs in whichever way you would like to grab it. Definitely something that the WordPress community&#8217;s going to have to wrangle with.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Okay. I think we&#8217;ve hit the sweet spot in terms of time Austin. If it&#8217;s all right with you, we will wrap it up there. However, before we go, do you just want to drop a few little bits about where people could contact you? I am more or less certain that somebody listening to this podcast will have thoughts for you about getting in touch, helping out, or what have you. So tell us where you can be found.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:55] <strong>Austin Ginder:</strong> You can find me just by searching for my name, Austin Ginder. There&#8217;s not many Ginders. I&#8217;m on X, that&#8217;s my main feed. And you can also read along on anchor.host. I do blog posts there pretty regularly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:09] <strong>Nathan Wrigley:</strong> Okay. In which case I will just point everybody to the wptavern.com website. If you go and use the search feature, search for Austin Ginder. Austin, spelled in the usual way. Ginder, G-I-N-D-E-R. You&#8217;ll find the episode and anything that has been mentioned, any links or what have you, we will link to there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So thank you for chatting to me today about what I wish didn&#8217;t exist, but it does exist. Austin, thank you so much.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:34] <strong>Austin Ginder:</strong> Thank you. This was a pleasure.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://x.com/austinginder\">Austin Ginder</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Austin has been involved in the WordPress ecosystem since 2010, and since 2014 has run Anchor Hosting, a business that manages thousands of WordPress websites. While he’s a developer and automation enthusiast at heart, in recent months Austin has found himself at the forefront of a burgeoning crisis in WordPress security, supply chain attacks targeting plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A chance discovery during a malware cleanup on a client’s site propelled Austin into what would become a wider investigation of plugin vulnerabilities. What he uncovered is both alarming and timely, bad actors aren’t just hacking sites directly, but are instead infiltrating the supply chain, either by purchasing plugin companies and weaponising them, or by hijacking plugins and pushing out malicious updates. These attacks are subtle, often shifting plugin update servers away from WordPress.org to rogue channels where malware can be quietly distributed, leaving end users in the dark and their sites at risk.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We trace Austin’s journey from accidental security investigator to creator of the WP Beacon project, a resource aimed at tracking, documenting, and alerting the WordPress community to known supply chain attacks. He shares how AI tools have radically changed what’s possible in threat detection and forensics, enabling individuals, and hopefully, someday, the larger hosting providers, to identify patterns and root causes behind widespread infections.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We get into case studies of specific plugins compromised in recent months, the challenges of auditing over 60,000 plugins on the WordPress.org repo, and the complexities of stopping these attacks once malicious code is in the wild. Austin also discusses his hopes for greater collaboration with hosts and security researchers, aiming for better automated monitoring and response.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you manage WordPress websites, create plugins, or just care about the future of open source security, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/plugins/\"> wordpress.org plugin repository</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://claude.com/product/claude-code\">Claude Code</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/plugins/handbook/the-team/\">WordPress Plugin Review Team Handbook</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://anchor.host\">Anchor Hosting</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wpbeacon.io\">WP Beacon website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://x.com/austinginder\">Austin on X</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, 03 Jun 2026 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:46;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"Open Channels FM: BackTalk on Decentralized Interoperability, Data Sovereignty, and the Power of Local 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:34:\"https://openchannels.fm/?p=2555258\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://openchannels.fm/backtalk-on-decentralized-interoperability-data-sovereignty-and-the-power-of-local-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:185:\"The challenges of decentralized networks, data sovereignty complexities in hosting, and the importance of local connections within the tech community to foster collaboration and growth.\";s: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, 03 Jun 2026 10:13: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Open Channels FM: How to Make Your Case Studies Stand Out: The Power of Storytelling\";s:7:\"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://openchannels.fm/?p=2554372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://openchannels.fm/how-to-make-your-case-studies-stand-out-the-power-of-storytelling/\";s: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:204:\"Effective case studies focus on storytelling, positioning the customer as the hero. They highlight challenges, solutions, and outcomes, blending engaging narratives with measurable results to build trust.\";s: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, 02 Jun 2026 12:42: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:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Bee Champion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=152932\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2026/06/bee-champion/\";s: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:1141:\"<p class=\"wp-block-paragraph\"><a href=\"https://spellingbee.com/\">Spelling bees</a> have gotten a lot more intense. How many of these do you know?</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">torrone, enthymeme, iguape, Denebola, fais-dodo, cywyddau, pohutukawa, monadnock, émeute, nannofossil, tongkang, Natchitoches, flaith, semele, rusell, sawder, campernelle, Nicol, Zamenis, Tharparkar, tlachtli, madoqua, retiarius, balintawak, tessaraconter, taurokathapsia, rapakivi, uayeb, paroemia, melengket, teraglin, homelyn, chikungunya, bromocriptine (cashaw)</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.youtube.com/watch?v=yFkrOpDja1o\">Check out the first 90 seconds of this video where Shrey Parikh gets 32 out of 34 correct to become the 2026 champion</a>. That speed round is called a “spell-off,” and so many of the kids are getting all the words right that they use it to break ties. Lots of words to press. <img alt=\"🤠\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f920.png\" style=\"height: 1em;\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jun 2026 18:44:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:21:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Akismet: Introducing the official Akismet Drupal module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284770\";s:7:\"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://akismet.com/blog/introducing-the-official-akismet-drupal-module/\";s: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:3010:\"<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-284775\" height=\"649\" src=\"https://akismet.com/wp-content/uploads/2026/05/screenshot-2026-05-29-at-9.48.36-am.png?w=1024\" width=\"1024\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.drupal.org/project/akismet_antispam\">The official module is here!</a></p>\n\n\n\n<div class=\"wp-block-jetpack-markdown\"><p>For two decades, Akismet has done one thing exceptionally well: keep spam out of WordPress. Now we’re bringing that protection to Drupal. The official module is here, built by the team behind Akismet as a native Drupal module. It guards your site with the same spam-fighting service that keeps comments, contact forms, and signups clean across millions of sites.</p>\n<h2 id=\"protection-where-spammers-actually-go\">Protection where spammers actually go</h2>\n<p>Spam doesn’t stop at comments, so neither does the module. Once it’s set up, Akismet checks the forms spammers target most:</p>\n<ul>\n<li>Comments</li>\n<li>Contact forms</li>\n<li>Webform submissions</li>\n<li>User registrations</li>\n</ul>\n<p>It runs every submission through Akismet in the background and quietly filters the spam out, so you see less of it and your visitors never notice it’s there.</p>\n<h2 id=\"built-for-drupal-the-drupal-way\">Built for Drupal, the Drupal way</h2>\n<p>We wanted this to feel like a first-class part of your site, not a bolt-on. The module follows modern Drupal conventions, and plays nicely with other anti-spam tools like Honeypot and CAPTCHA if you already use them. It also adds invisible bot-detection signals that catch automated junk before it ever reaches the API.</p>\n<h2 id=\"tools-for-moderators\">Tools for moderators</h2>\n<p>For the spam worth a second look, there’s a dedicated review queue and one-click actions on every comment. Each correction goes back to Akismet, so the filter keeps getting smarter about your site. An admin dashboard shows your stats at a glance, and built-in GDPR export and erasure tools make honoring data requests straightforward.</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-284779\" height=\"508\" src=\"https://akismet.com/wp-content/uploads/2026/05/screenshot-2026-05-29-at-9.39.09-am.png?w=1024\" width=\"1024\" /></figure>\n\n\n\n<div class=\"wp-block-jetpack-markdown\"><h2 id=\"getting-started\">Getting started</h2>\n<p>You’ll need an Akismet API key. Grab one at <a href=\"https://akismet.com\">akismet.com</a>, then install the module with Composer:</p>\n<pre><code>composer require drupal/akismet_antispam\n</code></pre>\n<p>Enable it, add your key on the settings page, pick which forms to protect, and you’re done. The module needs Drupal 10.3+ and PHP 8.1+, and it’s released under the GPL. You’ll find the docs and issue queue on the <a href=\"https://www.drupal.org/project/akismet_antispam\">Drupal.org project page</a>.</p>\n<p>We’re excited to bring Akismet to the Drupal community. Give it a try and tell us what you think.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jun 2026 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Derek Springer\";s:7:\"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\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 02 Jul 2026 09:21:49 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 02 Jul 2026 09:00:38 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT dca 1\";}s:5:\"build\";i:1780330368;s:21:\"cache_expiration_time\";i:1783027309;s:23:\"__cache_expiration_time\";i:1783027309;}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("16259","_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9","1783027309","off"),
("16260","_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9","1782984109","off"),
("16261","_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b","1783027309","off"),
("16262","_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b","<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/06/ai-leaders-graduates/\'>The First AI Leaders Graduates</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/06/open-web-merch/\'>Browse the New Mercantile Swag Store</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/223-ivana-cirkovic-on-how-wordpress-credits-bridges-education-and-industry-in-the-wordpress-ecosystem\'>WPTavern: #223 – Ivana Ćirković on How WordPress Credits Bridges Education and Industry in the WordPress Ecosystem</a></li><li><a class=\'rsswidget\' href=\'https://openchannels.fm/backtalk-on-support-decision-making-reputation-and-risk/\'>Open Channels FM: BackTalk on Support, Decision-Making, Reputation and Risk</a></li><li><a class=\'rsswidget\' href=\'https://aarondcampbell.com/2026/06/open-source-support-cant-depend-on-charity/\'>Aaron D. Campbell: Open Source Support Can’t Depend on Charity</a></li></ul></div>","off"),
("16715","_site_transient_timeout_browser_f6c3272a02c4b5dcfbc129e8de5e6ed1","1783601162","off"),
("16716","_site_transient_browser_f6c3272a02c4b5dcfbc129e8de5e6ed1","a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"604.1\";s:8:\"platform\";s:6:\"iPhone\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:1;}","off"),
("16717","_site_transient_timeout_community-events-dec59a5e8abd3b47bda57a49a00c0268","1783039566","off"),
("16718","_site_transient_community-events-dec59a5e8abd3b47bda57a49a00c0268","a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"83.228.251.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp Mannheim 2026\";s:3:\"url\";s:35:\"https://mannheim.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-07-03 17:00:00\";s:8:\"end_date\";s:19:\"2026-07-04 00:00:00\";s:20:\"start_unix_timestamp\";i:1783090800;s:18:\"end_unix_timestamp\";i:1783116000;s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Mannheim, Germany\";s:7:\"country\";s:2:\"DE\";s:8:\"latitude\";d:49.48201040000000006102709448896348476409912109375;s:9:\"longitude\";d:8.4674385000000000900399754755198955535888671875;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:25:\"WordCamp Switzerland 2026\";s:3:\"url\";s:38:\"https://switzerland.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-09-11 00:00:00\";s:8:\"end_date\";s:19:\"2026-09-12 00:00:00\";s:20:\"start_unix_timestamp\";i:1789077600;s:18:\"end_unix_timestamp\";i:1789164000;s:8:\"location\";a:4:{s:8:\"location\";s:29:\"Murten, Fribourg, Switzerland\";s:7:\"country\";s:2:\"CH\";s:8:\"latitude\";d:46.93916800000000222325979848392307758331298828125;s:9:\"longitude\";d:7.13664689999999968250676829484291374683380126953125;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Pisa 2026\";s:3:\"url\";s:31:\"https://pisa.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-11-13 00:00:00\";s:8:\"end_date\";s:19:\"2026-11-14 00:00:00\";s:20:\"start_unix_timestamp\";i:1794524400;s:18:\"end_unix_timestamp\";i:1794610800;s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Pisa, Italy\";s:7:\"country\";s:2:\"IT\";s:8:\"latitude\";d:43.72022869999999983292582328431308269500732421875;s:9:\"longitude\";d:10.4009534000000005704578143195249140262603759765625;}}}}","off"),
("16738","_site_transient_timeout_community-events-e72af1cd331fa3c28896d77ba3074380","1783040298","off"),
("16739","_site_transient_community-events-e72af1cd331fa3c28896d77ba3074380","a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"178.131.136.0\";}s:6:\"events\";a:0:{}}","off"),
("16810","_transient_timeout_acf_plugin_updates","1783171699","off"),
("16811","_transient_acf_plugin_updates","a:5:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:11:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"6.8.5\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"7.0\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://connect.advancedcustomfields.com/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:66:\"https://connect.advancedcustomfields.com/assets/banner-772x250.jpg\";s:4:\"high\";s:67:\"https://connect.advancedcustomfields.com/assets/banner-1544x500.jpg\";}s:8:\"requires\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"7.4\";s:12:\"release_date\";s:8:\"20260630\";}}s:9:\"no_update\";a:0:{}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"6.8.2\";}}","off"),
("16871","_transient_timeout_wp_rocket_settings","1814535982","off"),
("16872","_transient_wp_rocket_settings","a:5:{s:12:\"consumer_key\";s:8:\"NULLCAVC\";s:14:\"consumer_email\";s:17:\"noreply@gmail.com\";s:10:\"secret_key\";s:8:\"c1171a5c\";s:7:\"license\";i:1782999982;s:6:\"ignore\";b:1;}","off"),
("16975","_site_transient_update_themes","O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1783017388;s:7:\"checked\";a:5:{s:17:\"Avada-Child-Theme\";s:5:\"1.0.0\";s:5:\"Avada\";s:4:\"7.13\";s:16:\"twentytwentyfive\";s:3:\"1.5\";s:16:\"twentytwentyfour\";s:3:\"1.5\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:5:\"Avada\";a:6:{s:5:\"theme\";s:5:\"Avada\";s:11:\"new_version\";s:6:\"7.15.5\";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.13.0&code=********-****-****-****-************\";s:8:\"required\";s:3:\"4.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.5.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.5.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}","off"),
("16992","_transient_timeout_avada_studio","1783090793","off"),
("16993","_transient_avada_studio","a:15:{s:11:\"studio_tags\";a:13:{s:5:\"forms\";a:14:{s:8:\"feedback\";a:4:{s:4:\"name\";s:8:\"Feedback\";s:4:\"slug\";s:8:\"feedback\";s:7:\"term_id\";i:417;s:5:\"count\";i:2;}s:12:\"testimonials\";a:4:{s:4:\"name\";s:12:\"Testimonials\";s:4:\"slug\";s:12:\"testimonials\";s:7:\"term_id\";i:117;s:5:\"count\";i:1;}s:10:\"multi-step\";a:4:{s:4:\"name\";s:10:\"Multi-Step\";s:4:\"slug\";s:10:\"multi-step\";s:7:\"term_id\";i:416;s:5:\"count\";i:3;}s:7:\"contact\";a:4:{s:4:\"name\";s:7:\"Contact\";s:4:\"slug\";s:7:\"contact\";s:7:\"term_id\";i:125;s:5:\"count\";i:7;}s:13:\"openstreetmap\";a:4:{s:4:\"name\";s:13:\"OpenStreetMap\";s:4:\"slug\";s:13:\"openstreetmap\";s:7:\"term_id\";i:302;s:5:\"count\";i:1;}s:9:\"call-back\";a:4:{s:4:\"name\";s:9:\"Call Back\";s:4:\"slug\";s:9:\"call-back\";s:7:\"term_id\";i:401;s:5:\"count\";i:1;}s:12:\"subscription\";a:4:{s:4:\"name\";s:12:\"Subscription\";s:4:\"slug\";s:12:\"subscription\";s:7:\"term_id\";i:164;s:5:\"count\";i:2;}s:10:\"membership\";a:4:{s:4:\"name\";s:10:\"Membership\";s:4:\"slug\";s:10:\"membership\";s:7:\"term_id\";i:419;s:5:\"count\";i:1;}s:6:\"log-in\";a:4:{s:4:\"name\";s:6:\"Log In\";s:4:\"slug\";s:6:\"log-in\";s:7:\"term_id\";i:415;s:5:\"count\";i:1;}s:11:\"reservation\";a:4:{s:4:\"name\";s:11:\"Reservation\";s:4:\"slug\";s:11:\"reservation\";s:7:\"term_id\";i:163;s:5:\"count\";i:2;}s:6:\"signup\";a:4:{s:4:\"name\";s:6:\"Signup\";s:4:\"slug\";s:6:\"signup\";s:7:\"term_id\";i:161;s:5:\"count\";i:3;}s:6:\"budget\";a:4:{s:4:\"name\";s:6:\"Budget\";s:4:\"slug\";s:6:\"budget\";s:7:\"term_id\";i:418;s:5:\"count\";i:1;}s:6:\"retail\";a:4:{s:4:\"name\";s:6:\"Retail\";s:4:\"slug\";s:6:\"retail\";s:7:\"term_id\";i:162;s:5:\"count\";i:1;}s:6:\"survey\";a:4:{s:4:\"name\";s:6:\"Survey\";s:4:\"slug\";s:6:\"survey\";s:7:\"term_id\";i:160;s:5:\"count\";i:1;}}s:14:\"awb_off_canvas\";a:29:{s:8:\"discount\";a:4:{s:4:\"name\";s:8:\"Discount\";s:4:\"slug\";s:8:\"discount\";s:7:\"term_id\";i:267;s:5:\"count\";i:4;}s:9:\"promotion\";a:4:{s:4:\"name\";s:9:\"Promotion\";s:4:\"slug\";s:9:\"promotion\";s:7:\"term_id\";i:208;s:5:\"count\";i:20;}s:4:\"sale\";a:4:{s:4:\"name\";s:4:\"Sale\";s:4:\"slug\";s:4:\"sale\";s:7:\"term_id\";i:334;s:5:\"count\";i:16;}s:6:\"spring\";a:4:{s:4:\"name\";s:6:\"Spring\";s:4:\"slug\";s:6:\"spring\";s:7:\"term_id\";i:421;s:5:\"count\";i:1;}s:6:\"autumn\";a:4:{s:4:\"name\";s:6:\"Autumn\";s:4:\"slug\";s:6:\"autumn\";s:7:\"term_id\";i:444;s:5:\"count\";i:2;}s:4:\"fall\";a:4:{s:4:\"name\";s:4:\"Fall\";s:4:\"slug\";s:4:\"fall\";s:7:\"term_id\";i:445;s:5:\"count\";i:2;}s:5:\"popup\";a:4:{s:4:\"name\";s:5:\"Popup\";s:4:\"slug\";s:5:\"popup\";s:7:\"term_id\";i:203;s:5:\"count\";i:39;}s:4:\"rsvp\";a:4:{s:4:\"name\";s:4:\"rsvp\";s:4:\"slug\";s:4:\"rsvp\";s:7:\"term_id\";i:443;s:5:\"count\";i:2;}s:9:\"halloween\";a:4:{s:4:\"name\";s:9:\"Halloween\";s:4:\"slug\";s:9:\"halloween\";s:7:\"term_id\";i:328;s:5:\"count\";i:4;}s:6:\"easter\";a:4:{s:4:\"name\";s:6:\"Easter\";s:4:\"slug\";s:6:\"easter\";s:7:\"term_id\";i:434;s:5:\"count\";i:1;}s:14:\"valentines-day\";a:4:{s:4:\"name\";s:15:\"Valentine\'s Day\";s:4:\"slug\";s:14:\"valentines-day\";s:7:\"term_id\";i:359;s:5:\"count\";i:3;}s:10:\"newsletter\";a:4:{s:4:\"name\";s:10:\"Newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:7:\"term_id\";i:152;s:5:\"count\";i:1;}s:12:\"subscription\";a:4:{s:4:\"name\";s:12:\"Subscription\";s:4:\"slug\";s:12:\"subscription\";s:7:\"term_id\";i:164;s:5:\"count\";i:8;}s:7:\"consent\";a:4:{s:4:\"name\";s:7:\"consent\";s:4:\"slug\";s:7:\"consent\";s:7:\"term_id\";i:441;s:5:\"count\";i:1;}s:12:\"thanksgiving\";a:4:{s:4:\"name\";s:12:\"Thanksgiving\";s:4:\"slug\";s:12:\"thanksgiving\";s:7:\"term_id\";i:358;s:5:\"count\";i:2;}s:4:\"form\";a:4:{s:4:\"name\";s:4:\"Form\";s:4:\"slug\";s:4:\"form\";s:7:\"term_id\";i:378;s:5:\"count\";i:2;}s:8:\"floating\";a:4:{s:4:\"name\";s:8:\"Floating\";s:4:\"slug\";s:8:\"floating\";s:7:\"term_id\";i:187;s:5:\"count\";i:2;}s:4:\"menu\";a:4:{s:4:\"name\";s:4:\"Menu\";s:4:\"slug\";s:4:\"menu\";s:7:\"term_id\";i:134;s:5:\"count\";i:7;}s:9:\"christmas\";a:4:{s:4:\"name\";s:9:\"Christmas\";s:4:\"slug\";s:9:\"christmas\";s:7:\"term_id\";i:356;s:5:\"count\";i:2;}s:11:\"sliding-bar\";a:4:{s:4:\"name\";s:11:\"Sliding Bar\";s:4:\"slug\";s:11:\"sliding-bar\";s:7:\"term_id\";i:188;s:5:\"count\";i:9;}s:7:\"overlap\";a:4:{s:4:\"name\";s:7:\"Overlap\";s:4:\"slug\";s:7:\"overlap\";s:7:\"term_id\";i:440;s:5:\"count\";i:5;}s:14:\"social-sharing\";a:4:{s:4:\"name\";s:14:\"Social Sharing\";s:4:\"slug\";s:14:\"social-sharing\";s:7:\"term_id\";i:132;s:5:\"count\";i:1;}s:6:\"review\";a:4:{s:4:\"name\";s:6:\"Review\";s:4:\"slug\";s:6:\"review\";s:7:\"term_id\";i:233;s:5:\"count\";i:1;}s:5:\"about\";a:4:{s:4:\"name\";s:5:\"About\";s:4:\"slug\";s:5:\"about\";s:7:\"term_id\";i:96;s:5:\"count\";i:1;}s:4:\"cart\";a:4:{s:4:\"name\";s:4:\"Cart\";s:4:\"slug\";s:4:\"cart\";s:7:\"term_id\";i:95;s:5:\"count\";i:1;}s:6:\"flyout\";a:4:{s:4:\"name\";s:6:\"Flyout\";s:4:\"slug\";s:6:\"flyout\";s:7:\"term_id\";i:126;s:5:\"count\";i:3;}s:4:\"push\";a:4:{s:4:\"name\";s:4:\"Push\";s:4:\"slug\";s:4:\"push\";s:7:\"term_id\";i:442;s:5:\"count\";i:2;}s:7:\"contact\";a:4:{s:4:\"name\";s:7:\"Contact\";s:4:\"slug\";s:7:\"contact\";s:7:\"term_id\";i:125;s:5:\"count\";i:1;}s:12:\"notification\";a:4:{s:4:\"name\";s:12:\"Notification\";s:4:\"slug\";s:12:\"notification\";s:7:\"term_id\";i:202;s:5:\"count\";i:3;}}s:7:\"content\";a:9:{s:11:\"single-post\";a:4:{s:4:\"name\";s:11:\"Single Post\";s:4:\"slug\";s:11:\"single-post\";s:7:\"term_id\";i:15;s:5:\"count\";i:8;}s:4:\"cart\";a:4:{s:4:\"name\";s:4:\"Cart\";s:4:\"slug\";s:4:\"cart\";s:7:\"term_id\";i:95;s:5:\"count\";i:4;}s:11:\"woocommerce\";a:4:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"term_id\";i:379;s:5:\"count\";i:13;}s:9:\"thank-you\";a:4:{s:4:\"name\";s:9:\"Thank You\";s:4:\"slug\";s:9:\"thank-you\";s:7:\"term_id\";i:376;s:5:\"count\";i:3;}s:14:\"single-product\";a:4:{s:4:\"name\";s:14:\"Single Product\";s:4:\"slug\";s:14:\"single-product\";s:7:\"term_id\";i:139;s:5:\"count\";i:6;}s:8:\"archives\";a:4:{s:4:\"name\";s:8:\"Archives\";s:4:\"slug\";s:8:\"archives\";s:7:\"term_id\";i:387;s:5:\"count\";i:6;}s:6:\"four04\";a:4:{s:4:\"name\";s:3:\"404\";s:4:\"slug\";s:6:\"four04\";s:7:\"term_id\";i:10;s:5:\"count\";i:5;}s:16:\"single-portfolio\";a:4:{s:4:\"name\";s:16:\"Single Portfolio\";s:4:\"slug\";s:16:\"single-portfolio\";s:7:\"term_id\";i:138;s:5:\"count\";i:3;}s:6:\"search\";a:4:{s:4:\"name\";s:6:\"Search\";s:4:\"slug\";s:6:\"search\";s:7:\"term_id\";i:12;s:5:\"count\";i:4;}}s:8:\"elements\";a:29:{s:14:\"nested-columns\";a:4:{s:4:\"name\";s:14:\"Nested Columns\";s:4:\"slug\";s:14:\"nested-columns\";s:7:\"term_id\";i:170;s:5:\"count\";i:2;}s:9:\"text-path\";a:4:{s:4:\"name\";s:9:\"Text Path\";s:4:\"slug\";s:9:\"text-path\";s:7:\"term_id\";i:439;s:5:\"count\";i:3;}s:5:\"title\";a:4:{s:4:\"name\";s:5:\"Title\";s:4:\"slug\";s:5:\"title\";s:7:\"term_id\";i:133;s:5:\"count\";i:9;}s:10:\"post-cards\";a:4:{s:4:\"name\";s:10:\"Post Cards\";s:4:\"slug\";s:10:\"post-cards\";s:7:\"term_id\";i:286;s:5:\"count\";i:2;}s:6:\"button\";a:4:{s:4:\"name\";s:6:\"Button\";s:4:\"slug\";s:6:\"button\";s:7:\"term_id\";i:31;s:5:\"count\";i:12;}s:14:\"image-carousel\";a:4:{s:4:\"name\";s:14:\"Image Carousel\";s:4:\"slug\";s:14:\"image-carousel\";s:7:\"term_id\";i:135;s:5:\"count\";i:5;}s:7:\"toggles\";a:4:{s:4:\"name\";s:7:\"Toggles\";s:4:\"slug\";s:7:\"toggles\";s:7:\"term_id\";i:118;s:5:\"count\";i:2;}s:17:\"table-of-contents\";a:4:{s:4:\"name\";s:17:\"Table Of Contents\";s:4:\"slug\";s:17:\"table-of-contents\";s:7:\"term_id\";i:298;s:5:\"count\";i:2;}s:12:\"circles-info\";a:4:{s:4:\"name\";s:12:\"Circles Info\";s:4:\"slug\";s:12:\"circles-info\";s:7:\"term_id\";i:291;s:5:\"count\";i:2;}s:14:\"image-hotspots\";a:4:{s:4:\"name\";s:14:\"Image Hotspots\";s:4:\"slug\";s:14:\"image-hotspots\";s:7:\"term_id\";i:143;s:5:\"count\";i:2;}s:13:\"content-boxes\";a:4:{s:4:\"name\";s:13:\"Content Boxes\";s:4:\"slug\";s:13:\"content-boxes\";s:7:\"term_id\";i:24;s:5:\"count\";i:7;}s:12:\"testimonials\";a:4:{s:4:\"name\";s:12:\"Testimonials\";s:4:\"slug\";s:12:\"testimonials\";s:7:\"term_id\";i:117;s:5:\"count\";i:3;}s:4:\"menu\";a:4:{s:4:\"name\";s:4:\"Menu\";s:4:\"slug\";s:4:\"menu\";s:7:\"term_id\";i:134;s:5:\"count\";i:3;}s:10:\"flip-boxes\";a:4:{s:4:\"name\";s:10:\"Flip Boxes\";s:4:\"slug\";s:10:\"flip-boxes\";s:7:\"term_id\";i:131;s:5:\"count\";i:2;}s:13:\"openstreetmap\";a:4:{s:4:\"name\";s:13:\"OpenStreetMap\";s:4:\"slug\";s:13:\"openstreetmap\";s:7:\"term_id\";i:302;s:5:\"count\";i:2;}s:5:\"image\";a:4:{s:4:\"name\";s:5:\"Image\";s:4:\"slug\";s:5:\"image\";s:7:\"term_id\";i:301;s:5:\"count\";i:2;}s:12:\"progress-bar\";a:4:{s:4:\"name\";s:12:\"Progress Bar\";s:4:\"slug\";s:12:\"progress-bar\";s:7:\"term_id\";i:276;s:5:\"count\";i:2;}s:9:\"checklist\";a:4:{s:4:\"name\";s:9:\"Checklist\";s:4:\"slug\";s:9:\"checklist\";s:7:\"term_id\";i:112;s:5:\"count\";i:3;}s:7:\"gallery\";a:4:{s:4:\"name\";s:7:\"Gallery\";s:4:\"slug\";s:7:\"gallery\";s:7:\"term_id\";i:171;s:5:\"count\";i:3;}s:4:\"tabs\";a:4:{s:4:\"name\";s:4:\"Tabs\";s:4:\"slug\";s:4:\"tabs\";s:7:\"term_id\";i:116;s:5:\"count\";i:2;}s:18:\"image-before-after\";a:4:{s:4:\"name\";s:24:\"Image Before &amp; After\";s:4:\"slug\";s:18:\"image-before-after\";s:7:\"term_id\";i:142;s:5:\"count\";i:2;}s:12:\"social-links\";a:4:{s:4:\"name\";s:12:\"Social Links\";s:4:\"slug\";s:12:\"social-links\";s:7:\"term_id\";i:137;s:5:\"count\";i:2;}s:9:\"tag-cloud\";a:4:{s:4:\"name\";s:9:\"Tag Cloud\";s:4:\"slug\";s:9:\"tag-cloud\";s:7:\"term_id\";i:206;s:5:\"count\";i:1;}s:9:\"countdown\";a:4:{s:4:\"name\";s:9:\"Countdown\";s:4:\"slug\";s:9:\"countdown\";s:7:\"term_id\";i:172;s:5:\"count\";i:3;}s:10:\"text-block\";a:4:{s:4:\"name\";s:10:\"Text Block\";s:4:\"slug\";s:10:\"text-block\";s:7:\"term_id\";i:136;s:5:\"count\";i:1;}s:14:\"social-sharing\";a:4:{s:4:\"name\";s:14:\"Social Sharing\";s:4:\"slug\";s:14:\"social-sharing\";s:7:\"term_id\";i:132;s:5:\"count\";i:1;}s:11:\"news-ticker\";a:4:{s:4:\"name\";s:11:\"News Ticker\";s:4:\"slug\";s:11:\"news-ticker\";s:7:\"term_id\";i:128;s:5:\"count\";i:1;}s:13:\"counter-boxes\";a:4:{s:4:\"name\";s:13:\"Counter Boxes\";s:4:\"slug\";s:13:\"counter-boxes\";s:7:\"term_id\";i:129;s:5:\"count\";i:1;}s:5:\"alert\";a:4:{s:4:\"name\";s:5:\"Alert\";s:4:\"slug\";s:5:\"alert\";s:7:\"term_id\";i:141;s:5:\"count\";i:1;}}s:6:\"footer\";a:20:{s:8:\"business\";a:4:{s:4:\"name\";s:8:\"Business\";s:4:\"slug\";s:8:\"business\";s:7:\"term_id\";i:165;s:5:\"count\";i:4;}s:3:\"cta\";a:4:{s:4:\"name\";s:3:\"CTA\";s:4:\"slug\";s:3:\"cta\";s:7:\"term_id\";i:149;s:5:\"count\";i:6;}s:10:\"full-width\";a:4:{s:4:\"name\";s:10:\"Full Width\";s:4:\"slug\";s:10:\"full-width\";s:7:\"term_id\";i:144;s:5:\"count\";i:6;}s:11:\"real-estate\";a:4:{s:4:\"name\";s:11:\"Real Estate\";s:4:\"slug\";s:11:\"real-estate\";s:7:\"term_id\";i:451;s:5:\"count\";i:1;}s:8:\"2-column\";a:4:{s:4:\"name\";s:8:\"2-Column\";s:4:\"slug\";s:8:\"2-column\";s:7:\"term_id\";i:177;s:5:\"count\";i:4;}s:8:\"4-column\";a:4:{s:4:\"name\";s:8:\"4-Column\";s:4:\"slug\";s:8:\"4-column\";s:7:\"term_id\";i:175;s:5:\"count\";i:7;}s:6:\"autumn\";a:4:{s:4:\"name\";s:6:\"Autumn\";s:4:\"slug\";s:6:\"autumn\";s:7:\"term_id\";i:444;s:5:\"count\";i:1;}s:4:\"fall\";a:4:{s:4:\"name\";s:4:\"Fall\";s:4:\"slug\";s:4:\"fall\";s:7:\"term_id\";i:445;s:5:\"count\";i:1;}s:4:\"shop\";a:4:{s:4:\"name\";s:4:\"Shop\";s:4:\"slug\";s:4:\"shop\";s:7:\"term_id\";i:121;s:5:\"count\";i:3;}s:12:\"subscription\";a:4:{s:4:\"name\";s:12:\"Subscription\";s:4:\"slug\";s:12:\"subscription\";s:7:\"term_id\";i:164;s:5:\"count\";i:7;}s:6:\"agency\";a:4:{s:4:\"name\";s:6:\"Agency\";s:4:\"slug\";s:6:\"agency\";s:7:\"term_id\";i:197;s:5:\"count\";i:6;}s:12:\"contact-info\";a:4:{s:4:\"name\";s:12:\"Contact Info\";s:4:\"slug\";s:12:\"contact-info\";s:7:\"term_id\";i:173;s:5:\"count\";i:5;}s:8:\"personal\";a:4:{s:4:\"name\";s:8:\"personal\";s:4:\"slug\";s:8:\"personal\";s:7:\"term_id\";i:427;s:5:\"count\";i:1;}s:9:\"portfolio\";a:4:{s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";s:7:\"term_id\";i:86;s:5:\"count\";i:1;}s:8:\"1-column\";a:4:{s:4:\"name\";s:8:\"1-Column\";s:4:\"slug\";s:8:\"1-column\";s:7:\"term_id\";i:176;s:5:\"count\";i:2;}s:8:\"centered\";a:4:{s:4:\"name\";s:8:\"Centered\";s:4:\"slug\";s:8:\"centered\";s:7:\"term_id\";i:186;s:5:\"count\";i:1;}s:8:\"3-column\";a:4:{s:4:\"name\";s:8:\"3-Column\";s:4:\"slug\";s:8:\"3-column\";s:7:\"term_id\";i:178;s:5:\"count\";i:6;}s:4:\"form\";a:4:{s:4:\"name\";s:4:\"Form\";s:4:\"slug\";s:4:\"form\";s:7:\"term_id\";i:378;s:5:\"count\";i:3;}s:14:\"nested-columns\";a:4:{s:4:\"name\";s:14:\"Nested Columns\";s:4:\"slug\";s:14:\"nested-columns\";s:7:\"term_id\";i:170;s:5:\"count\";i:1;}s:8:\"6-column\";a:4:{s:4:\"name\";s:8:\"6-Column\";s:4:\"slug\";s:8:\"6-column\";s:7:\"term_id\";i:174;s:5:\"count\";i:1;}}s:6:\"header\";a:22:{s:2:\"ai\";a:4:{s:4:\"name\";s:2:\"Ai\";s:4:\"slug\";s:2:\"ai\";s:7:\"term_id\";i:447;s:5:\"count\";i:1;}s:9:\"corporate\";a:4:{s:4:\"name\";s:9:\"Corporate\";s:4:\"slug\";s:9:\"corporate\";s:7:\"term_id\";i:319;s:5:\"count\";i:4;}s:4:\"tech\";a:4:{s:4:\"name\";s:4:\"Tech\";s:4:\"slug\";s:4:\"tech\";s:7:\"term_id\";i:448;s:5:\"count\";i:1;}s:6:\"autumn\";a:4:{s:4:\"name\";s:6:\"Autumn\";s:4:\"slug\";s:6:\"autumn\";s:7:\"term_id\";i:444;s:5:\"count\";i:1;}s:4:\"fall\";a:4:{s:4:\"name\";s:4:\"Fall\";s:4:\"slug\";s:4:\"fall\";s:7:\"term_id\";i:445;s:5:\"count\";i:1;}s:10:\"full-width\";a:4:{s:4:\"name\";s:10:\"Full Width\";s:4:\"slug\";s:10:\"full-width\";s:7:\"term_id\";i:144;s:5:\"count\";i:16;}s:10:\"mega-menus\";a:4:{s:4:\"name\";s:10:\"Mega Menus\";s:4:\"slug\";s:10:\"mega-menus\";s:7:\"term_id\";i:425;s:5:\"count\";i:2;}s:4:\"shop\";a:4:{s:4:\"name\";s:4:\"Shop\";s:4:\"slug\";s:4:\"shop\";s:7:\"term_id\";i:121;s:5:\"count\";i:8;}s:6:\"simple\";a:4:{s:4:\"name\";s:6:\"Simple\";s:4:\"slug\";s:6:\"simple\";s:7:\"term_id\";i:179;s:5:\"count\";i:14;}s:7:\"top-bar\";a:4:{s:4:\"name\";s:7:\"Top Bar\";s:4:\"slug\";s:7:\"top-bar\";s:7:\"term_id\";i:183;s:5:\"count\";i:16;}s:11:\"full-height\";a:4:{s:4:\"name\";s:11:\"Full Height\";s:4:\"slug\";s:11:\"full-height\";s:7:\"term_id\";i:240;s:5:\"count\";i:7;}s:3:\"rtl\";a:4:{s:4:\"name\";s:3:\"RTL\";s:4:\"slug\";s:3:\"rtl\";s:7:\"term_id\";i:347;s:5:\"count\";i:2;}s:11:\"side-header\";a:4:{s:4:\"name\";s:11:\"Side Header\";s:4:\"slug\";s:11:\"side-header\";s:7:\"term_id\";i:184;s:5:\"count\";i:4;}s:9:\"dual-menu\";a:4:{s:4:\"name\";s:9:\"Dual Menu\";s:4:\"slug\";s:9:\"dual-menu\";s:7:\"term_id\";i:424;s:5:\"count\";i:2;}s:11:\"sliding-bar\";a:4:{s:4:\"name\";s:11:\"Sliding Bar\";s:4:\"slug\";s:11:\"sliding-bar\";s:7:\"term_id\";i:188;s:5:\"count\";i:2;}s:6:\"search\";a:4:{s:4:\"name\";s:6:\"Search\";s:4:\"slug\";s:6:\"search\";s:7:\"term_id\";i:12;s:5:\"count\";i:9;}s:8:\"centered\";a:4:{s:4:\"name\";s:8:\"Centered\";s:4:\"slug\";s:8:\"centered\";s:7:\"term_id\";i:186;s:5:\"count\";i:8;}s:6:\"sticky\";a:4:{s:4:\"name\";s:6:\"Sticky\";s:4:\"slug\";s:6:\"sticky\";s:7:\"term_id\";i:185;s:5:\"count\";i:19;}s:7:\"default\";a:4:{s:4:\"name\";s:7:\"Default\";s:4:\"slug\";s:7:\"default\";s:7:\"term_id\";i:182;s:5:\"count\";i:7;}s:6:\"flyout\";a:4:{s:4:\"name\";s:6:\"Flyout\";s:4:\"slug\";s:6:\"flyout\";s:7:\"term_id\";i:126;s:5:\"count\";i:3;}s:8:\"floating\";a:4:{s:4:\"name\";s:8:\"Floating\";s:4:\"slug\";s:8:\"floating\";s:7:\"term_id\";i:187;s:5:\"count\";i:2;}s:6:\"signup\";a:4:{s:4:\"name\";s:6:\"Signup\";s:4:\"slug\";s:6:\"signup\";s:7:\"term_id\";i:161;s:5:\"count\";i:1;}}s:10:\"mega_menus\";a:18:{s:8:\"products\";a:4:{s:4:\"name\";s:8:\"Products\";s:4:\"slug\";s:8:\"products\";s:7:\"term_id\";i:258;s:5:\"count\";i:3;}s:4:\"sale\";a:4:{s:4:\"name\";s:4:\"Sale\";s:4:\"slug\";s:4:\"sale\";s:7:\"term_id\";i:334;s:5:\"count\";i:5;}s:4:\"shop\";a:4:{s:4:\"name\";s:4:\"Shop\";s:4:\"slug\";s:4:\"shop\";s:7:\"term_id\";i:121;s:5:\"count\";i:4;}s:11:\"woocommerce\";a:4:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"term_id\";i:379;s:5:\"count\";i:3;}s:10:\"categories\";a:4:{s:4:\"name\";s:10:\"Categories\";s:4:\"slug\";s:10:\"categories\";s:7:\"term_id\";i:414;s:5:\"count\";i:2;}s:4:\"food\";a:4:{s:4:\"name\";s:4:\"Food\";s:4:\"slug\";s:4:\"food\";s:7:\"term_id\";i:265;s:5:\"count\";i:2;}s:6:\"recipe\";a:4:{s:4:\"name\";s:6:\"Recipe\";s:4:\"slug\";s:6:\"recipe\";s:7:\"term_id\";i:157;s:5:\"count\";i:2;}s:6:\"autumn\";a:4:{s:4:\"name\";s:6:\"Autumn\";s:4:\"slug\";s:6:\"autumn\";s:7:\"term_id\";i:444;s:5:\"count\";i:1;}s:9:\"ecommerce\";a:4:{s:4:\"name\";s:9:\"Ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:7:\"term_id\";i:287;s:5:\"count\";i:6;}s:4:\"fall\";a:4:{s:4:\"name\";s:4:\"Fall\";s:4:\"slug\";s:4:\"fall\";s:7:\"term_id\";i:445;s:5:\"count\";i:1;}s:9:\"halloween\";a:4:{s:4:\"name\";s:9:\"Halloween\";s:4:\"slug\";s:9:\"halloween\";s:7:\"term_id\";i:328;s:5:\"count\";i:1;}s:8:\"discount\";a:4:{s:4:\"name\";s:8:\"Discount\";s:4:\"slug\";s:8:\"discount\";s:7:\"term_id\";i:267;s:5:\"count\";i:2;}s:8:\"features\";a:4:{s:4:\"name\";s:8:\"Features\";s:4:\"slug\";s:8:\"features\";s:7:\"term_id\";i:351;s:5:\"count\";i:1;}s:9:\"corporate\";a:4:{s:4:\"name\";s:9:\"Corporate\";s:4:\"slug\";s:9:\"corporate\";s:7:\"term_id\";i:319;s:5:\"count\";i:3;}s:5:\"deals\";a:4:{s:4:\"name\";s:5:\"Deals\";s:4:\"slug\";s:5:\"deals\";s:7:\"term_id\";i:336;s:5:\"count\";i:1;}s:5:\"books\";a:4:{s:4:\"name\";s:5:\"Books\";s:4:\"slug\";s:5:\"books\";s:7:\"term_id\";i:327;s:5:\"count\";i:1;}s:8:\"services\";a:4:{s:4:\"name\";s:8:\"Services\";s:4:\"slug\";s:8:\"services\";s:7:\"term_id\";i:124;s:5:\"count\";i:2;}s:4:\"cart\";a:4:{s:4:\"name\";s:4:\"Cart\";s:4:\"slug\";s:4:\"cart\";s:7:\"term_id\";i:95;s:5:\"count\";i:1;}}s:5:\"icons\";a:26:{s:6:\"autumn\";a:4:{s:4:\"name\";s:6:\"Autumn\";s:4:\"slug\";s:6:\"autumn\";s:7:\"term_id\";i:444;s:5:\"count\";i:1;}s:4:\"fall\";a:4:{s:4:\"name\";s:4:\"Fall\";s:4:\"slug\";s:4:\"fall\";s:7:\"term_id\";i:445;s:5:\"count\";i:1;}s:9:\"halloween\";a:4:{s:4:\"name\";s:9:\"Halloween\";s:4:\"slug\";s:9:\"halloween\";s:7:\"term_id\";i:328;s:5:\"count\";i:3;}s:4:\"food\";a:4:{s:4:\"name\";s:4:\"Food\";s:4:\"slug\";s:4:\"food\";s:7:\"term_id\";i:265;s:5:\"count\";i:2;}s:12:\"thanksgiving\";a:4:{s:4:\"name\";s:12:\"Thanksgiving\";s:4:\"slug\";s:12:\"thanksgiving\";s:7:\"term_id\";i:358;s:5:\"count\";i:1;}s:6:\"spring\";a:4:{s:4:\"name\";s:6:\"Spring\";s:4:\"slug\";s:6:\"spring\";s:7:\"term_id\";i:421;s:5:\"count\";i:1;}s:14:\"valentines-day\";a:4:{s:4:\"name\";s:15:\"Valentine\'s Day\";s:4:\"slug\";s:14:\"valentines-day\";s:7:\"term_id\";i:359;s:5:\"count\";i:1;}s:7:\"hosting\";a:4:{s:4:\"name\";s:7:\"Hosting\";s:4:\"slug\";s:7:\"hosting\";s:7:\"term_id\";i:307;s:5:\"count\";i:1;}s:8:\"cannabis\";a:4:{s:4:\"name\";s:8:\"Cannabis\";s:4:\"slug\";s:8:\"cannabis\";s:7:\"term_id\";i:306;s:5:\"count\";i:1;}s:6:\"beauty\";a:4:{s:4:\"name\";s:6:\"Beauty\";s:4:\"slug\";s:6:\"beauty\";s:7:\"term_id\";i:299;s:5:\"count\";i:1;}s:3:\"spa\";a:4:{s:4:\"name\";s:3:\"Spa\";s:4:\"slug\";s:3:\"spa\";s:7:\"term_id\";i:300;s:5:\"count\";i:1;}s:8:\"outdoors\";a:4:{s:4:\"name\";s:8:\"Outdoors\";s:4:\"slug\";s:8:\"outdoors\";s:7:\"term_id\";i:422;s:5:\"count\";i:1;}s:5:\"hotel\";a:4:{s:4:\"name\";s:5:\"Hotel\";s:4:\"slug\";s:5:\"hotel\";s:7:\"term_id\";i:269;s:5:\"count\";i:1;}s:9:\"christmas\";a:4:{s:4:\"name\";s:9:\"Christmas\";s:4:\"slug\";s:9:\"christmas\";s:7:\"term_id\";i:356;s:5:\"count\";i:1;}s:9:\"interface\";a:4:{s:4:\"name\";s:9:\"Interface\";s:4:\"slug\";s:9:\"interface\";s:7:\"term_id\";i:274;s:5:\"count\";i:2;}s:6:\"crypto\";a:4:{s:4:\"name\";s:6:\"Crypto\";s:4:\"slug\";s:6:\"crypto\";s:7:\"term_id\";i:423;s:5:\"count\";i:1;}s:9:\"education\";a:4:{s:4:\"name\";s:9:\"Education\";s:4:\"slug\";s:9:\"education\";s:7:\"term_id\";i:249;s:5:\"count\";i:1;}s:4:\"shop\";a:4:{s:4:\"name\";s:4:\"Shop\";s:4:\"slug\";s:4:\"shop\";s:7:\"term_id\";i:121;s:5:\"count\";i:3;}s:8:\"business\";a:4:{s:4:\"name\";s:8:\"Business\";s:4:\"slug\";s:8:\"business\";s:7:\"term_id\";i:165;s:5:\"count\";i:6;}s:6:\"sports\";a:4:{s:4:\"name\";s:6:\"Sports\";s:4:\"slug\";s:6:\"sports\";s:7:\"term_id\";i:169;s:5:\"count\";i:2;}s:4:\"city\";a:4:{s:4:\"name\";s:4:\"City\";s:4:\"slug\";s:4:\"city\";s:7:\"term_id\";i:262;s:5:\"count\";i:1;}s:6:\"energy\";a:4:{s:4:\"name\";s:6:\"Energy\";s:4:\"slug\";s:6:\"energy\";s:7:\"term_id\";i:261;s:5:\"count\";i:1;}s:12:\"construction\";a:4:{s:4:\"name\";s:12:\"Construction\";s:4:\"slug\";s:12:\"construction\";s:7:\"term_id\";i:168;s:5:\"count\";i:1;}s:7:\"finance\";a:4:{s:4:\"name\";s:7:\"Finance\";s:4:\"slug\";s:7:\"finance\";s:7:\"term_id\";i:167;s:5:\"count\";i:2;}s:9:\"marketing\";a:4:{s:4:\"name\";s:9:\"Marketing\";s:4:\"slug\";s:9:\"marketing\";s:7:\"term_id\";i:3;s:5:\"count\";i:2;}s:9:\"furniture\";a:4:{s:4:\"name\";s:9:\"Furniture\";s:4:\"slug\";s:9:\"furniture\";s:7:\"term_id\";i:166;s:5:\"count\";i:1;}}s:15:\"fusion_template\";a:27:{s:10:\"cyber-week\";a:4:{s:4:\"name\";s:10:\"Cyber Week\";s:4:\"slug\";s:10:\"cyber-week\";s:7:\"term_id\";i:338;s:5:\"count\";i:1;}s:6:\"events\";a:4:{s:4:\"name\";s:6:\"Events\";s:4:\"slug\";s:6:\"events\";s:7:\"term_id\";i:236;s:5:\"count\";i:8;}s:9:\"promotion\";a:4:{s:4:\"name\";s:9:\"Promotion\";s:4:\"slug\";s:9:\"promotion\";s:7:\"term_id\";i:208;s:5:\"count\";i:8;}s:4:\"sale\";a:4:{s:4:\"name\";s:4:\"Sale\";s:4:\"slug\";s:4:\"sale\";s:7:\"term_id\";i:334;s:5:\"count\";i:2;}s:12:\"black-friday\";a:4:{s:4:\"name\";s:12:\"Black Friday\";s:4:\"slug\";s:12:\"black-friday\";s:7:\"term_id\";i:357;s:5:\"count\";i:1;}s:11:\"full-height\";a:4:{s:4:\"name\";s:11:\"Full Height\";s:4:\"slug\";s:11:\"full-height\";s:7:\"term_id\";i:240;s:5:\"count\";i:1;}s:9:\"portfolio\";a:4:{s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";s:7:\"term_id\";i:86;s:5:\"count\";i:4;}s:18:\"scrolling-sections\";a:4:{s:4:\"name\";s:18:\"Scrolling Sections\";s:4:\"slug\";s:18:\"scrolling-sections\";s:7:\"term_id\";i:388;s:5:\"count\";i:3;}s:6:\"agency\";a:4:{s:4:\"name\";s:6:\"Agency\";s:4:\"slug\";s:6:\"agency\";s:7:\"term_id\";i:197;s:5:\"count\";i:1;}s:8:\"business\";a:4:{s:4:\"name\";s:8:\"Business\";s:4:\"slug\";s:8:\"business\";s:7:\"term_id\";i:165;s:5:\"count\";i:8;}s:12:\"landing-page\";a:4:{s:4:\"name\";s:12:\"Landing Page\";s:4:\"slug\";s:12:\"landing-page\";s:7:\"term_id\";i:365;s:5:\"count\";i:2;}s:8:\"services\";a:4:{s:4:\"name\";s:8:\"Services\";s:4:\"slug\";s:8:\"services\";s:7:\"term_id\";i:124;s:5:\"count\";i:3;}s:8:\"timeline\";a:4:{s:4:\"name\";s:8:\"Timeline\";s:4:\"slug\";s:8:\"timeline\";s:7:\"term_id\";i:257;s:5:\"count\";i:2;}s:8:\"products\";a:4:{s:4:\"name\";s:8:\"Products\";s:4:\"slug\";s:8:\"products\";s:7:\"term_id\";i:258;s:5:\"count\";i:6;}s:11:\"woocommerce\";a:4:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"term_id\";i:379;s:5:\"count\";i:17;}s:9:\"shop-page\";a:4:{s:4:\"name\";s:9:\"Shop Page\";s:4:\"slug\";s:9:\"shop-page\";s:7:\"term_id\";i:393;s:5:\"count\";i:3;}s:8:\"checkout\";a:4:{s:4:\"name\";s:8:\"Checkout\";s:4:\"slug\";s:8:\"checkout\";s:7:\"term_id\";i:94;s:5:\"count\";i:2;}s:13:\"environmental\";a:4:{s:4:\"name\";s:13:\"Environmental\";s:4:\"slug\";s:13:\"environmental\";s:7:\"term_id\";i:403;s:5:\"count\";i:1;}s:11:\"maintenance\";a:4:{s:4:\"name\";s:11:\"Maintenance\";s:4:\"slug\";s:11:\"maintenance\";s:7:\"term_id\";i:93;s:5:\"count\";i:4;}s:8:\"about-us\";a:4:{s:4:\"name\";s:8:\"About Us\";s:4:\"slug\";s:8:\"about-us\";s:7:\"term_id\";i:404;s:5:\"count\";i:3;}s:8:\"software\";a:4:{s:4:\"name\";s:8:\"Software\";s:4:\"slug\";s:8:\"software\";s:7:\"term_id\";i:405;s:5:\"count\";i:1;}s:8:\"archives\";a:4:{s:4:\"name\";s:8:\"Archives\";s:4:\"slug\";s:8:\"archives\";s:7:\"term_id\";i:387;s:5:\"count\";i:2;}s:3:\"nft\";a:4:{s:4:\"name\";s:3:\"NFT\";s:4:\"slug\";s:3:\"nft\";s:7:\"term_id\";i:222;s:5:\"count\";i:1;}s:7:\"fitness\";a:4:{s:4:\"name\";s:7:\"Fitness\";s:4:\"slug\";s:7:\"fitness\";s:7:\"term_id\";i:201;s:5:\"count\";i:1;}s:4:\"blog\";a:4:{s:4:\"name\";s:4:\"Blog\";s:4:\"slug\";s:4:\"blog\";s:7:\"term_id\";i:14;s:5:\"count\";i:1;}s:7:\"contact\";a:4:{s:4:\"name\";s:7:\"Contact\";s:4:\"slug\";s:7:\"contact\";s:7:\"term_id\";i:125;s:5:\"count\";i:1;}s:4:\"cart\";a:4:{s:4:\"name\";s:4:\"Cart\";s:4:\"slug\";s:4:\"cart\";s:7:\"term_id\";i:95;s:5:\"count\";i:1;}}s:14:\"page_title_bar\";a:9:{s:4:\"sale\";a:4:{s:4:\"name\";s:4:\"Sale\";s:4:\"slug\";s:4:\"sale\";s:7:\"term_id\";i:334;s:5:\"count\";i:1;}s:4:\"blog\";a:4:{s:4:\"name\";s:4:\"Blog\";s:4:\"slug\";s:4:\"blog\";s:7:\"term_id\";i:14;s:5:\"count\";i:13;}s:14:\"featured-image\";a:4:{s:4:\"name\";s:14:\"Featured Image\";s:4:\"slug\";s:14:\"featured-image\";s:7:\"term_id\";i:181;s:5:\"count\";i:13;}s:12:\"masked-image\";a:4:{s:4:\"name\";s:12:\"Masked Image\";s:4:\"slug\";s:12:\"masked-image\";s:7:\"term_id\";i:420;s:5:\"count\";i:3;}s:14:\"valentines-day\";a:4:{s:4:\"name\";s:15:\"Valentine\'s Day\";s:4:\"slug\";s:14:\"valentines-day\";s:7:\"term_id\";i:359;s:5:\"count\";i:1;}s:6:\"simple\";a:4:{s:4:\"name\";s:6:\"Simple\";s:4:\"slug\";s:6:\"simple\";s:7:\"term_id\";i:179;s:5:\"count\";i:6;}s:11:\"full-height\";a:4:{s:4:\"name\";s:11:\"Full Height\";s:4:\"slug\";s:11:\"full-height\";s:7:\"term_id\";i:240;s:5:\"count\";i:1;}s:11:\"breadcrumbs\";a:4:{s:4:\"name\";s:11:\"Breadcrumbs\";s:4:\"slug\";s:11:\"breadcrumbs\";s:7:\"term_id\";i:180;s:5:\"count\";i:2;}s:7:\"archive\";a:4:{s:4:\"name\";s:7:\"Archive\";s:4:\"slug\";s:7:\"archive\";s:7:\"term_id\";i:85;s:5:\"count\";i:2;}}s:8:\"sections\";a:66:{s:12:\"black-friday\";a:4:{s:4:\"name\";s:12:\"Black Friday\";s:4:\"slug\";s:12:\"black-friday\";s:7:\"term_id\";i:357;s:5:\"count\";i:3;}s:4:\"sale\";a:4:{s:4:\"name\";s:4:\"Sale\";s:4:\"slug\";s:4:\"sale\";s:7:\"term_id\";i:334;s:5:\"count\";i:14;}s:10:\"cyber-week\";a:4:{s:4:\"name\";s:10:\"Cyber Week\";s:4:\"slug\";s:10:\"cyber-week\";s:7:\"term_id\";i:338;s:5:\"count\";i:2;}s:9:\"halloween\";a:4:{s:4:\"name\";s:9:\"Halloween\";s:4:\"slug\";s:9:\"halloween\";s:7:\"term_id\";i:328;s:5:\"count\";i:3;}s:4:\"hero\";a:4:{s:4:\"name\";s:4:\"Hero\";s:4:\"slug\";s:4:\"hero\";s:7:\"term_id\";i:4;s:5:\"count\";i:22;}s:6:\"easter\";a:4:{s:4:\"name\";s:6:\"Easter\";s:4:\"slug\";s:6:\"easter\";s:7:\"term_id\";i:434;s:5:\"count\";i:1;}s:4:\"farm\";a:4:{s:4:\"name\";s:4:\"farm\";s:4:\"slug\";s:4:\"farm\";s:7:\"term_id\";i:430;s:5:\"count\";i:1;}s:4:\"food\";a:4:{s:4:\"name\";s:4:\"Food\";s:4:\"slug\";s:4:\"food\";s:7:\"term_id\";i:265;s:5:\"count\";i:4;}s:8:\"industry\";a:4:{s:4:\"name\";s:8:\"Industry\";s:4:\"slug\";s:8:\"industry\";s:7:\"term_id\";i:280;s:5:\"count\";i:3;}s:7:\"organic\";a:4:{s:4:\"name\";s:7:\"organic\";s:4:\"slug\";s:7:\"organic\";s:7:\"term_id\";i:431;s:5:\"count\";i:1;}s:6:\"energy\";a:4:{s:4:\"name\";s:6:\"Energy\";s:4:\"slug\";s:6:\"energy\";s:7:\"term_id\";i:261;s:5:\"count\";i:1;}s:13:\"environmental\";a:4:{s:4:\"name\";s:13:\"Environmental\";s:4:\"slug\";s:13:\"environmental\";s:7:\"term_id\";i:403;s:5:\"count\";i:1;}s:5:\"solar\";a:4:{s:4:\"name\";s:5:\"solar\";s:4:\"slug\";s:5:\"solar\";s:7:\"term_id\";i:429;s:5:\"count\";i:1;}s:8:\"business\";a:4:{s:4:\"name\";s:8:\"Business\";s:4:\"slug\";s:8:\"business\";s:7:\"term_id\";i:165;s:5:\"count\";i:16;}s:9:\"corporate\";a:4:{s:4:\"name\";s:9:\"Corporate\";s:4:\"slug\";s:9:\"corporate\";s:7:\"term_id\";i:319;s:5:\"count\";i:8;}s:9:\"promotion\";a:4:{s:4:\"name\";s:9:\"Promotion\";s:4:\"slug\";s:9:\"promotion\";s:7:\"term_id\";i:208;s:5:\"count\";i:2;}s:14:\"valentines-day\";a:4:{s:4:\"name\";s:15:\"Valentine\'s Day\";s:4:\"slug\";s:14:\"valentines-day\";s:7:\"term_id\";i:359;s:5:\"count\";i:3;}s:6:\"beauty\";a:4:{s:4:\"name\";s:6:\"Beauty\";s:4:\"slug\";s:6:\"beauty\";s:7:\"term_id\";i:299;s:5:\"count\";i:1;}s:9:\"gardening\";a:4:{s:4:\"name\";s:9:\"Gardening\";s:4:\"slug\";s:9:\"gardening\";s:7:\"term_id\";i:402;s:5:\"count\";i:1;}s:8:\"services\";a:4:{s:4:\"name\";s:8:\"Services\";s:4:\"slug\";s:8:\"services\";s:7:\"term_id\";i:124;s:5:\"count\";i:12;}s:12:\"construction\";a:4:{s:4:\"name\";s:12:\"Construction\";s:4:\"slug\";s:12:\"construction\";s:7:\"term_id\";i:168;s:5:\"count\";i:1;}s:7:\"hosting\";a:4:{s:4:\"name\";s:7:\"Hosting\";s:4:\"slug\";s:7:\"hosting\";s:7:\"term_id\";i:307;s:5:\"count\";i:1;}s:15:\"interior-design\";a:4:{s:4:\"name\";s:15:\"Interior Design\";s:4:\"slug\";s:15:\"interior-design\";s:7:\"term_id\";i:399;s:5:\"count\";i:1;}s:6:\"agency\";a:4:{s:4:\"name\";s:6:\"Agency\";s:4:\"slug\";s:6:\"agency\";s:7:\"term_id\";i:197;s:5:\"count\";i:1;}s:7:\"finance\";a:4:{s:4:\"name\";s:7:\"Finance\";s:4:\"slug\";s:7:\"finance\";s:7:\"term_id\";i:167;s:5:\"count\";i:1;}s:5:\"money\";a:4:{s:4:\"name\";s:5:\"Money\";s:4:\"slug\";s:5:\"money\";s:7:\"term_id\";i:312;s:5:\"count\";i:1;}s:9:\"logistics\";a:4:{s:4:\"name\";s:9:\"Logistics\";s:4:\"slug\";s:9:\"logistics\";s:7:\"term_id\";i:397;s:5:\"count\";i:1;}s:11:\"information\";a:4:{s:4:\"name\";s:11:\"Information\";s:4:\"slug\";s:11:\"information\";s:7:\"term_id\";i:146;s:5:\"count\";i:23;}s:10:\"investment\";a:4:{s:4:\"name\";s:10:\"Investment\";s:4:\"slug\";s:10:\"investment\";s:7:\"term_id\";i:377;s:5:\"count\";i:1;}s:7:\"service\";a:4:{s:4:\"name\";s:7:\"Service\";s:4:\"slug\";s:7:\"service\";s:7:\"term_id\";i:97;s:5:\"count\";i:2;}s:3:\"cta\";a:4:{s:4:\"name\";s:3:\"CTA\";s:4:\"slug\";s:3:\"cta\";s:7:\"term_id\";i:149;s:5:\"count\";i:18;}s:3:\"seo\";a:4:{s:4:\"name\";s:3:\"SEO\";s:4:\"slug\";s:3:\"seo\";s:7:\"term_id\";i:25;s:5:\"count\";i:1;}s:13:\"pricing-table\";a:4:{s:4:\"name\";s:13:\"Pricing Table\";s:4:\"slug\";s:13:\"pricing-table\";s:7:\"term_id\";i:114;s:5:\"count\";i:4;}s:6:\"simple\";a:4:{s:4:\"name\";s:6:\"Simple\";s:4:\"slug\";s:6:\"simple\";s:7:\"term_id\";i:179;s:5:\"count\";i:1;}s:7:\"factory\";a:4:{s:4:\"name\";s:7:\"Factory\";s:4:\"slug\";s:7:\"factory\";s:7:\"term_id\";i:360;s:5:\"count\";i:1;}s:7:\"feature\";a:4:{s:4:\"name\";s:7:\"Feature\";s:4:\"slug\";s:7:\"feature\";s:7:\"term_id\";i:154;s:5:\"count\";i:5;}s:4:\"form\";a:4:{s:4:\"name\";s:4:\"Form\";s:4:\"slug\";s:4:\"form\";s:7:\"term_id\";i:378;s:5:\"count\";i:3;}s:10:\"info-boxes\";a:4:{s:4:\"name\";s:10:\"Info Boxes\";s:4:\"slug\";s:10:\"info-boxes\";s:7:\"term_id\";i:148;s:5:\"count\";i:3;}s:3:\"rtl\";a:4:{s:4:\"name\";s:3:\"RTL\";s:4:\"slug\";s:3:\"rtl\";s:7:\"term_id\";i:347;s:5:\"count\";i:1;}s:4:\"urdu\";a:4:{s:4:\"name\";s:4:\"Urdu\";s:4:\"slug\";s:4:\"urdu\";s:7:\"term_id\";i:348;s:5:\"count\";i:1;}s:4:\"menu\";a:4:{s:4:\"name\";s:4:\"Menu\";s:4:\"slug\";s:4:\"menu\";s:7:\"term_id\";i:134;s:5:\"count\";i:1;}s:8:\"products\";a:4:{s:4:\"name\";s:8:\"Products\";s:4:\"slug\";s:8:\"products\";s:7:\"term_id\";i:258;s:5:\"count\";i:3;}s:12:\"thanksgiving\";a:4:{s:4:\"name\";s:12:\"Thanksgiving\";s:4:\"slug\";s:12:\"thanksgiving\";s:7:\"term_id\";i:358;s:5:\"count\";i:1;}s:10:\"full-width\";a:4:{s:4:\"name\";s:10:\"Full Width\";s:4:\"slug\";s:10:\"full-width\";s:7:\"term_id\";i:144;s:5:\"count\";i:6;}s:3:\"art\";a:4:{s:4:\"name\";s:3:\"Art\";s:4:\"slug\";s:3:\"art\";s:7:\"term_id\";i:309;s:5:\"count\";i:1;}s:9:\"portfolio\";a:4:{s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";s:7:\"term_id\";i:86;s:5:\"count\";i:2;}s:6:\"soccer\";a:4:{s:4:\"name\";s:6:\"Soccer\";s:4:\"slug\";s:6:\"soccer\";s:7:\"term_id\";i:321;s:5:\"count\";i:1;}s:6:\"sports\";a:4:{s:4:\"name\";s:6:\"Sports\";s:4:\"slug\";s:6:\"sports\";s:7:\"term_id\";i:169;s:5:\"count\";i:1;}s:11:\"4th-of-july\";a:4:{s:4:\"name\";s:11:\"4th Of July\";s:4:\"slug\";s:11:\"4th-of-july\";s:7:\"term_id\";i:355;s:5:\"count\";i:2;}s:6:\"recipe\";a:4:{s:4:\"name\";s:6:\"Recipe\";s:4:\"slug\";s:6:\"recipe\";s:7:\"term_id\";i:157;s:5:\"count\";i:1;}s:11:\"full-height\";a:4:{s:4:\"name\";s:11:\"Full Height\";s:4:\"slug\";s:11:\"full-height\";s:7:\"term_id\";i:240;s:5:\"count\";i:2;}s:7:\"wedding\";a:4:{s:4:\"name\";s:7:\"Wedding\";s:4:\"slug\";s:7:\"wedding\";s:7:\"term_id\";i:408;s:5:\"count\";i:1;}s:4:\"grid\";a:4:{s:4:\"name\";s:4:\"Grid\";s:4:\"slug\";s:4:\"grid\";s:7:\"term_id\";i:147;s:5:\"count\";i:3;}s:10:\"life-coach\";a:4:{s:4:\"name\";s:10:\"Life Coach\";s:4:\"slug\";s:10:\"life-coach\";s:7:\"term_id\";i:409;s:5:\"count\";i:1;}s:9:\"christmas\";a:4:{s:4:\"name\";s:9:\"Christmas\";s:4:\"slug\";s:9:\"christmas\";s:7:\"term_id\";i:356;s:5:\"count\";i:1;}s:10:\"statistics\";a:4:{s:4:\"name\";s:10:\"Statistics\";s:4:\"slug\";s:10:\"statistics\";s:7:\"term_id\";i:155;s:5:\"count\";i:2;}s:6:\"events\";a:4:{s:4:\"name\";s:6:\"Events\";s:4:\"slug\";s:6:\"events\";s:7:\"term_id\";i:236;s:5:\"count\";i:1;}s:6:\"review\";a:4:{s:4:\"name\";s:6:\"Review\";s:4:\"slug\";s:6:\"review\";s:7:\"term_id\";i:233;s:5:\"count\";i:1;}s:7:\"digital\";a:4:{s:4:\"name\";s:7:\"Digital\";s:4:\"slug\";s:7:\"digital\";s:7:\"term_id\";i:229;s:5:\"count\";i:1;}s:6:\"banner\";a:4:{s:4:\"name\";s:6:\"Banner\";s:4:\"slug\";s:6:\"banner\";s:7:\"term_id\";i:153;s:5:\"count\";i:2;}s:4:\"blog\";a:4:{s:4:\"name\";s:4:\"Blog\";s:4:\"slug\";s:4:\"blog\";s:7:\"term_id\";i:14;s:5:\"count\";i:1;}s:4:\"cars\";a:4:{s:4:\"name\";s:4:\"Cars\";s:4:\"slug\";s:4:\"cars\";s:7:\"term_id\";i:410;s:5:\"count\";i:1;}s:4:\"text\";a:4:{s:4:\"name\";s:4:\"Text\";s:4:\"slug\";s:4:\"text\";s:7:\"term_id\";i:150;s:5:\"count\";i:7;}s:10:\"icon-boxes\";a:4:{s:4:\"name\";s:10:\"Icon Boxes\";s:4:\"slug\";s:10:\"icon-boxes\";s:7:\"term_id\";i:145;s:5:\"count\";i:2;}s:12:\"testimonials\";a:4:{s:4:\"name\";s:12:\"Testimonials\";s:4:\"slug\";s:12:\"testimonials\";s:7:\"term_id\";i:117;s:5:\"count\";i:3;}s:10:\"newsletter\";a:4:{s:4:\"name\";s:10:\"Newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:7:\"term_id\";i:152;s:5:\"count\";i:1;}}s:7:\"columns\";a:29:{s:9:\"text-path\";a:4:{s:4:\"name\";s:9:\"Text Path\";s:4:\"slug\";s:9:\"text-path\";s:7:\"term_id\";i:439;s:5:\"count\";i:2;}s:8:\"business\";a:4:{s:4:\"name\";s:8:\"Business\";s:4:\"slug\";s:8:\"business\";s:7:\"term_id\";i:165;s:5:\"count\";i:6;}s:4:\"card\";a:4:{s:4:\"name\";s:4:\"Card\";s:4:\"slug\";s:4:\"card\";s:7:\"term_id\";i:156;s:5:\"count\";i:13;}s:3:\"cta\";a:4:{s:4:\"name\";s:3:\"CTA\";s:4:\"slug\";s:3:\"cta\";s:7:\"term_id\";i:149;s:5:\"count\";i:10;}s:8:\"services\";a:4:{s:4:\"name\";s:8:\"Services\";s:4:\"slug\";s:8:\"services\";s:7:\"term_id\";i:124;s:5:\"count\";i:3;}s:4:\"team\";a:4:{s:4:\"name\";s:4:\"Team\";s:4:\"slug\";s:4:\"team\";s:7:\"term_id\";i:396;s:5:\"count\";i:2;}s:7:\"charity\";a:4:{s:4:\"name\";s:7:\"charity\";s:4:\"slug\";s:7:\"charity\";s:7:\"term_id\";i:428;s:5:\"count\";i:1;}s:12:\"testimonials\";a:4:{s:4:\"name\";s:12:\"Testimonials\";s:4:\"slug\";s:12:\"testimonials\";s:7:\"term_id\";i:117;s:5:\"count\";i:4;}s:10:\"statistics\";a:4:{s:4:\"name\";s:10:\"Statistics\";s:4:\"slug\";s:10:\"statistics\";s:7:\"term_id\";i:155;s:5:\"count\";i:3;}s:11:\"information\";a:4:{s:4:\"name\";s:11:\"Information\";s:4:\"slug\";s:11:\"information\";s:7:\"term_id\";i:146;s:5:\"count\";i:13;}s:9:\"halloween\";a:4:{s:4:\"name\";s:9:\"Halloween\";s:4:\"slug\";s:9:\"halloween\";s:7:\"term_id\";i:328;s:5:\"count\";i:2;}s:5:\"party\";a:4:{s:4:\"name\";s:5:\"party\";s:4:\"slug\";s:5:\"party\";s:7:\"term_id\";i:390;s:5:\"count\";i:1;}s:10:\"cyber-week\";a:4:{s:4:\"name\";s:10:\"Cyber Week\";s:4:\"slug\";s:10:\"cyber-week\";s:7:\"term_id\";i:338;s:5:\"count\";i:1;}s:4:\"sale\";a:4:{s:4:\"name\";s:4:\"Sale\";s:4:\"slug\";s:4:\"sale\";s:7:\"term_id\";i:334;s:5:\"count\";i:2;}s:4:\"food\";a:4:{s:4:\"name\";s:4:\"Food\";s:4:\"slug\";s:4:\"food\";s:7:\"term_id\";i:265;s:5:\"count\";i:1;}s:6:\"recipe\";a:4:{s:4:\"name\";s:6:\"Recipe\";s:4:\"slug\";s:6:\"recipe\";s:7:\"term_id\";i:157;s:5:\"count\";i:2;}s:14:\"valentines-day\";a:4:{s:4:\"name\";s:15:\"Valentine\'s Day\";s:4:\"slug\";s:14:\"valentines-day\";s:7:\"term_id\";i:359;s:5:\"count\";i:1;}s:10:\"info-boxes\";a:4:{s:4:\"name\";s:10:\"Info Boxes\";s:4:\"slug\";s:10:\"info-boxes\";s:7:\"term_id\";i:148;s:5:\"count\";i:9;}s:10:\"icon-boxes\";a:4:{s:4:\"name\";s:10:\"Icon Boxes\";s:4:\"slug\";s:10:\"icon-boxes\";s:7:\"term_id\";i:145;s:5:\"count\";i:3;}s:6:\"simple\";a:4:{s:4:\"name\";s:6:\"Simple\";s:4:\"slug\";s:6:\"simple\";s:7:\"term_id\";i:179;s:5:\"count\";i:1;}s:12:\"image-reveal\";a:4:{s:4:\"name\";s:12:\"Image Reveal\";s:4:\"slug\";s:12:\"image-reveal\";s:7:\"term_id\";i:411;s:5:\"count\";i:1;}s:6:\"travel\";a:4:{s:4:\"name\";s:6:\"Travel\";s:4:\"slug\";s:6:\"travel\";s:7:\"term_id\";i:264;s:5:\"count\";i:1;}s:12:\"social-links\";a:4:{s:4:\"name\";s:12:\"Social Links\";s:4:\"slug\";s:12:\"social-links\";s:7:\"term_id\";i:137;s:5:\"count\";i:1;}s:4:\"menu\";a:4:{s:4:\"name\";s:4:\"Menu\";s:4:\"slug\";s:4:\"menu\";s:7:\"term_id\";i:134;s:5:\"count\";i:1;}s:8:\"sponsors\";a:4:{s:4:\"name\";s:8:\"Sponsors\";s:4:\"slug\";s:8:\"sponsors\";s:7:\"term_id\";i:158;s:5:\"count\";i:1;}s:9:\"checklist\";a:4:{s:4:\"name\";s:9:\"Checklist\";s:4:\"slug\";s:9:\"checklist\";s:7:\"term_id\";i:112;s:5:\"count\";i:1;}s:6:\"banner\";a:4:{s:4:\"name\";s:6:\"Banner\";s:4:\"slug\";s:6:\"banner\";s:7:\"term_id\";i:153;s:5:\"count\";i:1;}s:10:\"newsletter\";a:4:{s:4:\"name\";s:10:\"Newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:7:\"term_id\";i:152;s:5:\"count\";i:1;}s:14:\"business-hours\";a:4:{s:4:\"name\";s:14:\"Business Hours\";s:4:\"slug\";s:14:\"business-hours\";s:7:\"term_id\";i:159;s:5:\"count\";i:1;}}s:10:\"post_cards\";a:10:{s:9:\"portfolio\";a:4:{s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";s:7:\"term_id\";i:86;s:5:\"count\";i:12;}s:16:\"single-portfolio\";a:4:{s:4:\"name\";s:16:\"Single Portfolio\";s:4:\"slug\";s:16:\"single-portfolio\";s:7:\"term_id\";i:138;s:5:\"count\";i:1;}s:6:\"agency\";a:4:{s:4:\"name\";s:6:\"Agency\";s:4:\"slug\";s:6:\"agency\";s:7:\"term_id\";i:197;s:5:\"count\";i:1;}s:8:\"services\";a:4:{s:4:\"name\";s:8:\"Services\";s:4:\"slug\";s:8:\"services\";s:7:\"term_id\";i:124;s:5:\"count\";i:1;}s:12:\"multipurpose\";a:4:{s:4:\"name\";s:12:\"Multipurpose\";s:4:\"slug\";s:12:\"multipurpose\";s:7:\"term_id\";i:400;s:5:\"count\";i:4;}s:4:\"blog\";a:4:{s:4:\"name\";s:4:\"Blog\";s:4:\"slug\";s:4:\"blog\";s:7:\"term_id\";i:14;s:5:\"count\";i:14;}s:7:\"product\";a:4:{s:4:\"name\";s:7:\"Product\";s:4:\"slug\";s:7:\"product\";s:7:\"term_id\";i:87;s:5:\"count\";i:10;}s:16:\"product-category\";a:4:{s:4:\"name\";s:16:\"Product Category\";s:4:\"slug\";s:16:\"product-category\";s:7:\"term_id\";i:432;s:5:\"count\";i:2;}s:3:\"lms\";a:4:{s:4:\"name\";s:3:\"LMS\";s:4:\"slug\";s:3:\"lms\";s:7:\"term_id\";i:250;s:5:\"count\";i:1;}s:14:\"search-results\";a:4:{s:4:\"name\";s:14:\"Search Results\";s:4:\"slug\";s:14:\"search-results\";s:7:\"term_id\";i:413;s:5:\"count\";i:2;}}}s:15:\"studio_elements\";a:30:{s:24:\"fusion_builder_row_inner\";a:1:{s:5:\"count\";i:1;}s:13:\"awb_text_path\";a:1:{s:5:\"count\";i:3;}s:12:\"fusion_title\";a:1:{s:5:\"count\";i:9;}s:17:\"fusion_post_cards\";a:1:{s:5:\"count\";i:2;}s:13:\"fusion_button\";a:1:{s:5:\"count\";i:11;}s:13:\"fusion_images\";a:1:{s:5:\"count\";i:5;}s:16:\"fusion_accordion\";a:1:{s:5:\"count\";i:2;}s:24:\"fusion_table_of_contents\";a:1:{s:5:\"count\";i:2;}s:19:\"fusion_circles_info\";a:1:{s:5:\"count\";i:2;}s:21:\"fusion_image_hotspots\";a:1:{s:5:\"count\";i:2;}s:20:\"fusion_content_boxes\";a:1:{s:5:\"count\";i:7;}s:19:\"fusion_testimonials\";a:1:{s:5:\"count\";i:2;}s:11:\"fusion_menu\";a:1:{s:5:\"count\";i:3;}s:17:\"fusion_flip_boxes\";a:1:{s:5:\"count\";i:2;}s:20:\"fusion_openstreetmap\";a:1:{s:5:\"count\";i:2;}s:17:\"fusion_imageframe\";a:1:{s:5:\"count\";i:2;}s:15:\"fusion_progress\";a:1:{s:5:\"count\";i:2;}s:16:\"fusion_checklist\";a:1:{s:5:\"count\";i:3;}s:14:\"fusion_gallery\";a:1:{s:5:\"count\";i:3;}s:11:\"fusion_tabs\";a:1:{s:5:\"count\";i:2;}s:25:\"fusion_image_before_after\";a:1:{s:5:\"count\";i:2;}s:19:\"fusion_social_links\";a:1:{s:5:\"count\";i:2;}s:15:\"fusion_tagcloud\";a:1:{s:5:\"count\";i:1;}s:16:\"fusion_countdown\";a:1:{s:5:\"count\";i:3;}s:11:\"fusion_text\";a:1:{s:5:\"count\";i:1;}s:53:\"fusion_builder_row_inner][fusion_builder_column_inner\";a:1:{s:5:\"count\";i:2;}s:14:\"fusion_sharing\";a:1:{s:5:\"count\";i:1;}s:18:\"fusion_news_ticker\";a:1:{s:5:\"count\";i:1;}s:19:\"fusion_counters_box\";a:1:{s:5:\"count\";i:1;}s:12:\"fusion_alert\";a:1:{s:5:\"count\";i:1;}}s:5:\"forms\";a:23:{s:9:\"item-6189\";a:10:{s:2:\"ID\";i:6189;s:10:\"post_title\";s:39:\"Collect Customer Testimonials Form 6189\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:77:\"https://avada.studio/wp-content/uploads/2026/03/testimonial-form-image-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6188|full\";}s:76:\"https://avada.studio/wp-content/uploads/2026/03/testimonial-form-step-01.png\";a:1:{s:8:\"image_id\";s:9:\"6190|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:84:\"https://avada.studio/fusion_form/collect-customer-testimonials/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2026/03/customer-testimonials-form-ss2-400x514.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:514;}s:4:\"tags\";a:2:{i:0;s:8:\"feedback\";i:1;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2026/03/customer-testimonials-form-ss2-800x1028.jpg\";}}s:9:\"item-5879\";a:10:{s:2:\"ID\";i:5879;s:10:\"post_title\";s:21:\"Real Estate Form 5879\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2025/02/colorful-structure-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5662|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:5881;s:12:\"real-estate-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:66:\"https://avada.studio/fusion_form/real-estate/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2025/09/real-estate-form-ss1-400x170.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:170;}s:4:\"tags\";a:1:{i:0;s:10:\"multi-step\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2025/09/real-estate-form-ss1-800x340.jpg\";}}s:9:\"item-5862\";a:10:{s:2:\"ID\";i:5862;s:10:\"post_title\";s:17:\"Contact Form 5862\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2025/07/contact-form-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5863|full\";}}}s:3:\"url\";s:64:\"https://avada.studio/fusion_form/contact-3/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/07/contact-form-ss-2-400x298.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:298;}s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/07/contact-form-ss-2-800x596.jpg\";}}s:9:\"item-5859\";a:10:{s:2:\"ID\";i:5859;s:10:\"post_title\";s:26:\"Contact with Map Form 5859\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:71:\"https://avada.studio/fusion_form/contact-with-map/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2025/07/contact-form-with-map-ss1-400x269.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:269;}s:4:\"tags\";a:2:{i:0;s:7:\"contact\";i:1;s:13:\"openstreetmap\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2025/07/contact-form-with-map-ss1-800x538.jpg\";}}s:9:\"item-5531\";a:10:{s:2:\"ID\";i:5531;s:10:\"post_title\";s:19:\"Call Back Form 5531\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:68:\"https://avada.studio/wp-content/uploads/2024/10/callback-image-4.jpg\";a:1:{s:8:\"image_id\";s:9:\"5536|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:64:\"https://avada.studio/fusion_form/call-back/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/10/callback-form-ss1-400x261.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:261;}s:4:\"tags\";a:2:{i:0;s:9:\"call-back\";i:1;s:7:\"contact\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/10/callback-form-ss1-800x522.jpg\";}}s:9:\"item-4687\";a:10:{s:2:\"ID\";i:4687;s:10:\"post_title\";s:32:\"Festive Subscribe Form Form 4687\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:75:\"https://avada.studio/wp-content/uploads/2023/11/holiday-gifts-subscribe.png\";a:1:{s:8:\"image_id\";s:9:\"4689|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/10/product-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4673|full\";}s:61:\"https://avada.studio/wp-content/uploads/2018/10/product-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4677|full\";}s:61:\"https://avada.studio/wp-content/uploads/2018/10/product-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"4676|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:67:\"https://avada.studio/fusion_form/festive-form/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2023/11/festive-subscribe-form-400x536.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:536;}s:4:\"tags\";a:1:{i:0;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/11/festive-subscribe-form.jpg\";}}s:9:\"item-4211\";a:10:{s:2:\"ID\";i:4211;s:10:\"post_title\";s:18:\"Progress Form 4211\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:58:\"https://avada.studio/wp-content/uploads/2023/06/form-3.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2023/06/form-4.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2023/06/form-6.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:63:\"https://avada.studio/fusion_form/progress/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/progress-form-ss-400x249.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:249;}s:4:\"tags\";a:2:{i:0;s:8:\"feedback\";i:1;s:10:\"multi-step\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/progress-form-ss-800x497.jpg\";}}s:9:\"item-4190\";a:10:{s:2:\"ID\";i:4190;s:10:\"post_title\";s:20:\"Multi-Step Form 4190\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:66:\"https://avada.studio/wp-content/uploads/2023/06/form-graphic-4.svg\";a:1:{s:8:\"image_id\";s:9:\"4199|full\";}s:64:\"https://avada.studio/wp-content/uploads/2023/06/form-graphic.svg\";a:1:{s:8:\"image_id\";s:9:\"4194|full\";}s:66:\"https://avada.studio/wp-content/uploads/2023/06/form-graphic-3.svg\";a:1:{s:8:\"image_id\";s:9:\"4196|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:65:\"https://avada.studio/fusion_form/multi-step/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/06/step-form-ss-400x515.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:515;}s:4:\"tags\";a:1:{i:0;s:10:\"multi-step\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2023/06/step-form-ss.jpg\";}}s:9:\"item-3179\";a:10:{s:2:\"ID\";i:3179;s:10:\"post_title\";s:25:\"Club Membership Form 3179\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/fusion_form/club-membership/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/08/club-membership-form-ss-400x668.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:668;}s:4:\"tags\";a:1:{i:0;s:10:\"membership\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/08/club-membership-form-ss-800x1336.jpg\";}}s:9:\"item-3176\";a:10:{s:2:\"ID\";i:3176;s:10:\"post_title\";s:15:\"Login Form 3176\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:57:\"https://avada.studio/wp-content/uploads/2022/08/phone.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:60:\"https://avada.studio/fusion_form/login/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/08/login-form-400x232.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:232;}s:4:\"tags\";a:1:{i:0;s:6:\"log-in\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/08/login-form-800x464.jpg\";}}s:9:\"item-3168\";a:10:{s:2:\"ID\";i:3168;s:10:\"post_title\";s:16:\"Survey Form 3168\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:61:\"https://avada.studio/fusion_form/survey/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2022/08/customer-satisfaction-form-simple-400x246.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:246;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2022/08/customer-satisfaction-form-simple-800x491.jpg\";}}s:9:\"item-3149\";a:10:{s:2:\"ID\";i:3149;s:10:\"post_title\";s:27:\"Hotel Reservation Form 3149\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:77:\"https://avada.studio/fusion_form/hotel-reservation-form/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/08/hotel-booking-form-ss-400x91.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:91;}s:4:\"tags\";a:1:{i:0;s:11:\"reservation\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/08/hotel-booking-form-ss-800x182.jpg\";}}s:9:\"item-3137\";a:10:{s:2:\"ID\";i:3137;s:10:\"post_title\";s:24:\"Project Budget Form 3137\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:69:\"https://avada.studio/fusion_form/project-budget/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/08/project-budget-form-style-2-400x475.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:475;}s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/08/project-budget-form-style-2-800x949.jpg\";}}s:9:\"item-1562\";a:10:{s:2:\"ID\";i:1562;s:10:\"post_title\";s:17:\"Sign Up Form 1562\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:974;s:9:\"mechanic-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/fusion_form/sign-up-form-03/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/get-appointment-gradient-form-400x164.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:164;}s:4:\"tags\";a:1:{i:0;s:6:\"signup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/get-appointment-gradient-form-800x328.jpg\";}}s:9:\"item-1010\";a:10:{s:2:\"ID\";i:1010;s:10:\"post_title\";s:19:\"Subscribe Form 1010\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:75:\"https://avada.studio/fusion_form/subscription-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/subscribe-one-row-blue-form-400x84.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:84;}s:4:\"tags\";a:1:{i:0;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2021/09/subscribe-one-row-blue-form-800x168.jpg\";}}s:8:\"item-972\";a:10:{s:2:\"ID\";i:972;s:10:\"post_title\";s:20:\"Reservation Form 972\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_form/reservation-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/09/reservation-yellow-form-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;}s:4:\"tags\";a:1:{i:0;s:11:\"reservation\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/09/reservation-yellow-form-800x485.jpg\";}}s:8:\"item-970\";a:10:{s:2:\"ID\";i:970;s:10:\"post_title\";s:23:\"Project Budget Form 970\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:976;s:8:\"digital-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:79:\"https://avada.studio/fusion_form/advanced-contact-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/dark-blue-underline-form-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;}s:4:\"tags\";a:2:{i:0;s:6:\"budget\";i:1;s:7:\"contact\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/dark-blue-underline-form-800x456.jpg\";}}s:8:\"item-969\";a:10:{s:2:\"ID\";i:969;s:10:\"post_title\";s:18:\"Call Back Form 969\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:70:\"https://avada.studio/fusion_form/sign-up-form-02/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/09/3d-get-callback-form-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;}s:4:\"tags\";a:1:{i:0;s:6:\"signup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/09/3d-get-callback-form-800x501.jpg\";}}s:8:\"item-964\";a:10:{s:2:\"ID\";i:964;s:10:\"post_title\";s:15:\"Retail Form 964\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:62:\"https://avada.studio/wp-content/uploads/2021/09/payment-1.jpeg\";a:1:{s:8:\"image_id\";s:8:\"966|full\";}s:62:\"https://avada.studio/wp-content/uploads/2021/09/payment-2.jpeg\";a:1:{s:8:\"image_id\";s:8:\"967|full\";}s:62:\"https://avada.studio/wp-content/uploads/2021/09/payment-3.jpeg\";a:1:{s:8:\"image_id\";s:8:\"968|full\";}}}s:3:\"url\";s:69:\"https://avada.studio/fusion_form/retail-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/retail-form-400x293.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:293;}s:4:\"tags\";a:1:{i:0;s:6:\"retail\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/retail-form-800x587.jpg\";}}s:8:\"item-963\";a:10:{s:2:\"ID\";i:963;s:10:\"post_title\";s:16:\"Contact Form 963\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:73:\"https://avada.studio/fusion_form/contact-us-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/09/blue-pastel-basic-form-400x206.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:206;}s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/09/blue-pastel-basic-form-800x412.jpg\";}}s:8:\"item-316\";a:10:{s:2:\"ID\";i:316;s:10:\"post_title\";s:16:\"Sign Up Form 316\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:70:\"https://avada.studio/fusion_form/sign-up-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/09/get-started-today-green-form-400x126.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:126;}s:4:\"tags\";a:1:{i:0;s:6:\"signup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/09/get-started-today-green-form-800x251.jpg\";}}s:8:\"item-178\";a:10:{s:2:\"ID\";i:178;s:10:\"post_title\";s:15:\"Survey Form 178\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:69:\"https://avada.studio/fusion_form/survey-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/08/pink-submit-poll-form-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;}s:4:\"tags\";a:1:{i:0;s:6:\"survey\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/08/pink-submit-poll-form-800x684.jpg\";}}s:8:\"item-154\";a:10:{s:2:\"ID\";i:154;s:10:\"post_title\";s:15:\"Simple Form 154\";s:9:\"post_type\";s:11:\"fusion_form\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:77:\"https://avada.studio/fusion_form/simple-contact-form-01/?awb-studio-form=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/08/simple-black-gray-form-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;}s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/08/simple-black-gray-form-800x541.jpg\";}}}s:14:\"awb_off_canvas\";a:50:{s:9:\"item-6172\";a:10:{s:2:\"ID\";i:6172;s:10:\"post_title\";s:27:\"Spring Sale Off Canvas 6172\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:66:\"https://avada.studio/wp-content/uploads/2026/03/star-dots-bg-1.png\";b:1;s:67:\"https://avada.studio/wp-content/uploads/2026/03/envelop-image-1.png\";a:1:{s:19:\"background_image_id\";s:9:\"6175|full\";}s:69:\"https://avada.studio/wp-content/uploads/2026/03/floral-sale-bg-02.png\";a:1:{s:8:\"image_id\";s:9:\"6178|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:77:\"https://avada.studio/?awb_off_canvas=spring-sale-2&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2026/03/spring-sale-ss02-400x397.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:397;}s:4:\"tags\";a:4:{i:0;s:8:\"discount\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";i:3;s:6:\"spring\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2026/03/spring-sale-ss02-800x794.jpg\";}}s:9:\"item-5991\";a:10:{s:2:\"ID\";i:5991;s:10:\"post_title\";s:34:\"Fall Festival RSVP Off Canvas 5991\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:6:{s:70:\"https://avada.studio/wp-content/uploads/2025/10/fall-festival-bg04.png\";a:1:{s:19:\"background_image_id\";s:9:\"5996|full\";}s:70:\"https://avada.studio/wp-content/uploads/2025/10/fall-festival-bg05.png\";a:1:{s:19:\"background_image_id\";s:9:\"6001|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/circles-line02.png\";a:1:{s:8:\"image_id\";s:9:\"5997|full\";}s:63:\"https://avada.studio/wp-content/uploads/2025/10/line-left01.png\";a:1:{s:8:\"image_id\";s:9:\"5999|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/10/festival-food-01.png\";a:1:{s:8:\"image_id\";s:9:\"5998|full\";}s:64:\"https://avada.studio/wp-content/uploads/2025/10/line-right01.png\";a:1:{s:8:\"image_id\";s:9:\"6000|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:82:\"https://avada.studio/?awb_off_canvas=fall-festival-rsvp&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2025/10/fall-festival-rsvp-ss1-400x404.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:404;}s:4:\"tags\";a:4:{i:0;s:6:\"autumn\";i:1;s:4:\"fall\";i:2;s:5:\"popup\";i:3;s:4:\"rsvp\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2025/10/fall-festival-rsvp-ss1.jpg\";}}s:9:\"item-5983\";a:10:{s:2:\"ID\";i:5983;s:10:\"post_title\";s:27:\"Autumn Sale Off Canvas 5983\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:74:\"https://avada.studio/wp-content/uploads/2025/10/autumn-leaves-bg02-min.png\";s:4:\"true\";s:76:\"https://avada.studio/wp-content/uploads/2025/10/fall-shopping-bags01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"5986|full\";}s:63:\"https://avada.studio/wp-content/uploads/2025/10/ticket-bg02.png\";a:1:{s:19:\"background_image_id\";s:9:\"5990|full\";}}}s:3:\"url\";s:75:\"https://avada.studio/?awb_off_canvas=autumn-sale&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2025/10/fall-sales-eventoffcanvas-ss1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;}s:4:\"tags\";a:4:{i:0;s:6:\"autumn\";i:1;s:4:\"fall\";i:2;s:5:\"popup\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2025/10/fall-sales-eventoffcanvas-ss1.jpg\";}}s:9:\"item-5923\";a:10:{s:2:\"ID\";i:5923;s:10:\"post_title\";s:36:\"RSVP Halloween Event Off Canvas 5923\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:66:\"https://avada.studio/wp-content/uploads/2025/10/pumpkins-rsvp2.png\";a:1:{s:8:\"image_id\";s:9:\"5930|full\";}s:62:\"https://avada.studio/wp-content/uploads/2025/10/hand-left1.png\";a:1:{s:8:\"image_id\";s:9:\"5928|full\";}s:63:\"https://avada.studio/wp-content/uploads/2025/10/hand-right1.png\";a:1:{s:8:\"image_id\";s:9:\"5927|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/10/balloons.png\";a:1:{s:8:\"image_id\";s:9:\"3391|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:5929;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:84:\"https://avada.studio/?awb_off_canvas=rsvp-halloween-event&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/10/halloween-event-rspv-ss1-400x424.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:424;}s:4:\"tags\";a:2:{i:0;s:9:\"halloween\";i:1;s:4:\"rsvp\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/10/halloween-event-rspv-ss1.jpg\";}}s:9:\"item-5709\";a:10:{s:2:\"ID\";i:5709;s:10:\"post_title\";s:36:\"Easter Surprise Sale Off Canvas 5709\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:76:\"https://avada.studio/wp-content/uploads/2025/03/easter-egg-surprise-feat.png\";a:1:{s:19:\"background_image_id\";s:9:\"5711|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:84:\"https://avada.studio/?awb_off_canvas=easter-surprise-sale&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2025/03/easter-egg-surprise-popup-400x240.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:240;}s:4:\"tags\";a:4:{i:0;s:6:\"easter\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2025/03/easter-egg-surprise-popup-800x479.jpg\";}}s:9:\"item-5619\";a:10:{s:2:\"ID\";i:5619;s:10:\"post_title\";s:34:\"Valentine Day Sale Off Canvas 5619\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:62:\"https://avada.studio/wp-content/uploads/2025/02/stars-bg-1.png\";b:1;s:60:\"https://avada.studio/wp-content/uploads/2025/02/hearts-1.png\";a:1:{s:8:\"image_id\";s:9:\"5622|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:82:\"https://avada.studio/?awb_off_canvas=valentine-day-sale&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/02/valentine-offcanvas-ss-3-400x301.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:301;}s:4:\"tags\";a:4:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";i:3;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/02/valentine-offcanvas-ss-3-800x601.jpg\";}}s:9:\"item-5412\";a:10:{s:2:\"ID\";i:5412;s:10:\"post_title\";s:37:\"Halloween Sales Promo Off Canvas 5412\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:64:\"https://avada.studio/wp-content/uploads/2024/09/sunrays-bg-4.png\";b:1;s:75:\"https://avada.studio/wp-content/uploads/2024/09/halloween-spider-02-min.png\";a:1:{s:8:\"image_id\";s:9:\"5419|full\";}s:69:\"https://avada.studio/wp-content/uploads/2024/09/halloween-main-04.png\";a:1:{s:8:\"image_id\";s:9:\"5418|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:85:\"https://avada.studio/?awb_off_canvas=halloween-sales-promo&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/09/halloween-sales-promo-ss1-400x352.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:352;}s:4:\"tags\";a:4:{i:0;s:9:\"halloween\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/09/halloween-sales-promo-ss1-800x703.jpg\";}}s:9:\"item-5221\";a:10:{s:2:\"ID\";i:5221;s:10:\"post_title\";s:29:\"4th July Sale Off Canvas 5221\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:71:\"https://avada.studio/wp-content/uploads/2024/05/flag-usa-left-1-min.png\";a:1:{s:8:\"image_id\";s:9:\"5225|full\";}s:72:\"https://avada.studio/wp-content/uploads/2024/05/flag-usa-right-1-min.png\";a:1:{s:8:\"image_id\";s:9:\"5226|full\";}s:72:\"https://avada.studio/wp-content/uploads/2024/05/4th-july-sale-logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"5229|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:974;s:9:\"mechanic-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:77:\"https://avada.studio/?awb_off_canvas=4th-july-sale&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/05/4th-july-sale-ss2-400x448.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:448;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2024/05/4th-july-sale-ss2.jpg\";}}s:9:\"item-5206\";a:10:{s:2:\"ID\";i:5206;s:10:\"post_title\";s:27:\"Summer Sale Off Canvas 5206\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:75:\"https://avada.studio/wp-content/uploads/2024/05/summer-sale-content-bg1.png\";a:1:{s:19:\"background_image_id\";s:9:\"5208|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:75:\"https://avada.studio/?awb_off_canvas=summer-sale&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2024/05/summwe-sale-ss1-400x349.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:349;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2024/05/summwe-sale-ss1.jpg\";}}s:9:\"item-5186\";a:10:{s:2:\"ID\";i:5186;s:10:\"post_title\";s:25:\"Subscribe Off Canvas 5186\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:71:\"https://avada.studio/wp-content/uploads/2024/05/bg-flower-offcanvas.png\";a:1:{s:19:\"background_image_id\";s:9:\"5189|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/05/subscribe-flower.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5187|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:5188;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:73:\"https://avada.studio/?awb_off_canvas=subscribe&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/05/subscribe-newsletter-ss-2-400x272.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:272;}s:4:\"tags\";a:3:{i:0;s:10:\"newsletter\";i:1;s:5:\"popup\";i:2;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/05/subscribe-newsletter-ss-2-800x543.jpg\";}}s:9:\"item-5104\";a:10:{s:2:\"ID\";i:5104;s:10:\"post_title\";s:27:\"Spring Sale Off Canvas 5104\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:67:\"https://avada.studio/wp-content/uploads/2024/03/spring-leaves-1.png\";a:1:{s:8:\"image_id\";s:9:\"5107|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/03/spring-floral-bg-1.png\";a:1:{s:8:\"image_id\";s:9:\"5108|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:75:\"https://avada.studio/?awb_off_canvas=spring-sale&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2024/03/spring-sale-ss-1-400x376.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:376;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2024/03/spring-sale-ss-1.jpg\";}}s:9:\"item-4955\";a:10:{s:2:\"ID\";i:4955;s:10:\"post_title\";s:30:\"Valentines Day Off Canvas 4955\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:75:\"https://avada.studio/wp-content/uploads/2024/02/top-promo-discount-deco.png\";a:1:{s:8:\"image_id\";s:9:\"5005|full\";}s:81:\"https://avada.studio/wp-content/uploads/2024/02/spin-wheel-valentine-discount.png\";a:1:{s:8:\"image_id\";s:9:\"5007|full\";}s:78:\"https://avada.studio/wp-content/uploads/2024/02/bottom-promo-discount-deco.png\";a:1:{s:8:\"image_id\";s:9:\"5003|full\";}s:72:\"https://avada.studio/wp-content/uploads/2024/02/valentine-bg-pattern.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2072;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:78:\"https://avada.studio/?awb_off_canvas=valentines-day&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/02/valentines-day-spin-wheel-400x209.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:209;}s:4:\"tags\";a:4:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:12:\"subscription\";i:3;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/02/valentines-day-spin-wheel-800x418.jpg\";}}s:9:\"item-4892\";a:10:{s:2:\"ID\";i:4892;s:10:\"post_title\";s:27:\"Age Consent Off Canvas 4892\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2023/12/bar.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:75:\"https://avada.studio/?awb_off_canvas=age-consent&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/12/consent-ss-400x238.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:238;}s:4:\"tags\";a:2:{i:0;s:7:\"consent\";i:1;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/12/consent-ss-800x475.jpg\";}}s:9:\"item-4550\";a:10:{s:2:\"ID\";i:4550;s:10:\"post_title\";s:34:\"Thanksgiving Sales Off Canvas 4550\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:67:\"https://avada.studio/wp-content/uploads/2023/10/floral-food-bar.png\";a:1:{s:8:\"image_id\";s:9:\"4551|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/10/wavy-line-1.png\";a:1:{s:8:\"image_id\";s:9:\"4552|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/10/pumpkin-1.png\";b:1;s:59:\"https://avada.studio/wp-content/uploads/2023/10/happy-1.png\";a:1:{s:8:\"image_id\";s:9:\"4553|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:82:\"https://avada.studio/?awb_off_canvas=thanksgiving-sales&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:92:\"https://avada.studio/wp-content/uploads/2023/10/thanksgiving-sales-offcanvas-ss1-400x391.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:391;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:12:\"thanksgiving\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2023/10/thanksgiving-sales-offcanvas-ss1.jpg\";}}s:9:\"item-4512\";a:10:{s:2:\"ID\";i:4512;s:10:\"post_title\";s:31:\"Halloween Sales Off Canvas 4512\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:76:\"https://avada.studio/wp-content/uploads/2023/09/halloween-sales-promo-bg.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:79:\"https://avada.studio/?awb_off_canvas=halloween-sales&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2023/09/halloween-sales-off-canvas-400x429.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:429;}s:4:\"tags\";a:4:{i:0;s:9:\"halloween\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/09/halloween-sales-off-canvas.jpg\";}}s:9:\"item-4416\";a:10:{s:2:\"ID\";i:4416;s:10:\"post_title\";s:26:\"Fall Sales Off Canvas 4416\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:65:\"https://avada.studio/wp-content/uploads/2023/09/fallsale-bg-3.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:74:\"https://avada.studio/?awb_off_canvas=fall-sales&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2023/09/fall-sale-offcanvas-ss1-400x384.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:384;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2023/09/fall-sale-offcanvas-ss1.jpg\";}}s:9:\"item-4189\";a:10:{s:2:\"ID\";i:4189;s:10:\"post_title\";s:25:\"Step Form Off Canvas 4189\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:4190;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:84:\"https://avada.studio/?awb_off_canvas=step-form-off-canvas&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/06/step-form-ss-400x515.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:515;}s:4:\"tags\";a:2:{i:0;s:4:\"form\";i:1;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2023/06/step-form-ss.jpg\";}}s:9:\"item-4214\";a:10:{s:2:\"ID\";i:4214;s:10:\"post_title\";s:29:\"Progress Form Off Canvas 4214\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:4211;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:88:\"https://avada.studio/?awb_off_canvas=progress-form-off-canvas&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/progress-form-ss-400x249.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:249;}s:4:\"tags\";a:2:{i:0;s:4:\"form\";i:1;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/progress-form-ss-800x497.jpg\";}}s:9:\"item-4084\";a:10:{s:2:\"ID\";i:4084;s:10:\"post_title\";s:29:\"Floating Menu Off Canvas 4084\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:77:\"https://avada.studio/?awb_off_canvas=floating-menu&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/05/floating-menu-ss.png\";s:5:\"width\";i:158;s:6:\"height\";i:547;}s:4:\"tags\";a:3:{i:0;s:8:\"floating\";i:1;s:4:\"menu\";i:2;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/05/floating-menu-ss.png\";}}s:9:\"item-3686\";a:10:{s:2:\"ID\";i:3686;s:10:\"post_title\";s:25:\"Christmas Off Canvas 3686\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:69:\"https://avada.studio/wp-content/uploads/2022/11/christmas-divider.png\";a:1:{s:8:\"image_id\";s:9:\"3690|full\";}s:66:\"https://avada.studio/wp-content/uploads/2022/11/christmas-star.png\";a:1:{s:8:\"image_id\";s:9:\"3691|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:73:\"https://avada.studio/?awb_off_canvas=christmas&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/11/christmas-offcanvas-ss3-400x346.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:346;}s:4:\"tags\";a:4:{i:0;s:9:\"christmas\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/11/christmas-offcanvas-ss3-800x692.jpg\";}}s:9:\"item-3644\";a:10:{s:2:\"ID\";i:3644;s:10:\"post_title\";s:29:\"Thanks Giving Off Canvas 3644\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:62:\"https://avada.studio/wp-content/uploads/2022/11/floral-top.png\";a:1:{s:8:\"image_id\";s:9:\"3645|full\";}s:67:\"https://avada.studio/wp-content/uploads/2022/11/thanks-giving-1.png\";a:1:{s:8:\"image_id\";s:9:\"3650|full\";}s:59:\"https://avada.studio/wp-content/uploads/2022/11/sale_bg.png\";b:1;s:65:\"https://avada.studio/wp-content/uploads/2022/11/floral-bottom.png\";a:1:{s:8:\"image_id\";s:9:\"3649|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:77:\"https://avada.studio/?awb_off_canvas=thanks-giving&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/11/thanksgiving-offcanvas-ss-400x453.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:453;}s:4:\"tags\";a:4:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";i:3;s:12:\"thanksgiving\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/11/thanksgiving-offcanvas-ss.jpg\";}}s:9:\"item-3458\";a:10:{s:2:\"ID\";i:3458;s:10:\"post_title\";s:26:\"Cyber Week Off Canvas 3458\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:72:\"https://avada.studio/wp-content/uploads/2022/10/cyber-week-sale-bags.png\";a:1:{s:8:\"image_id\";s:9:\"3460|full\";}s:72:\"https://avada.studio/wp-content/uploads/2022/10/cyber-week-separator.png\";a:1:{s:8:\"image_id\";s:9:\"3461|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:74:\"https://avada.studio/?awb_off_canvas=cyber-week&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/10/cyber-week-offcanvas-ss-400x511.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:511;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/10/cyber-week-offcanvas-ss.jpg\";}}s:9:\"item-3449\";a:10:{s:2:\"ID\";i:3449;s:10:\"post_title\";s:28:\"Black Friday Off Canvas 3449\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:76:\"https://avada.studio/?awb_off_canvas=black-friday&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2022/10/black-friday-sale-promo-2022-400x580.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:580;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/10/black-friday-sale-promo-2022.jpg\";}}s:9:\"item-3378\";a:10:{s:2:\"ID\";i:3378;s:10:\"post_title\";s:25:\"Halloween Off Canvas 3378\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2022/10/top-halloween-graphic.png\";a:1:{s:8:\"image_id\";s:9:\"3379|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:73:\"https://avada.studio/?awb_off_canvas=halloween&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/10/halloween-off-canvas-sale-400x602.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:602;}s:4:\"tags\";a:4:{i:0;s:9:\"halloween\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/10/halloween-off-canvas-sale.jpg\";}}s:9:\"item-3154\";a:10:{s:2:\"ID\";i:3154;s:10:\"post_title\";s:24:\"Donation Off Canvas 3154\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:59:\"https://avada.studio/wp-content/uploads/2022/08/charity.jpg\";a:1:{s:8:\"image_id\";s:9:\"3155|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:72:\"https://avada.studio/?awb_off_canvas=donation&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2022/08/donation-400x471.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:471;}s:4:\"tags\";a:1:{i:0;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:60:\"https://avada.studio/wp-content/uploads/2022/08/donation.jpg\";}}s:9:\"item-3151\";a:10:{s:2:\"ID\";i:3151;s:10:\"post_title\";s:25:\"Pet Promo Off Canvas 3151\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2022/08/happy-dog-party-event.png\";a:1:{s:8:\"image_id\";s:9:\"3152|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:73:\"https://avada.studio/?awb_off_canvas=pet-promo&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/08/pet-promo-banner-party-400x226.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:226;}s:4:\"tags\";a:1:{i:0;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/08/pet-promo-banner-party-800x452.jpg\";}}s:9:\"item-3104\";a:10:{s:2:\"ID\";i:3104;s:10:\"post_title\";s:31:\"Bottom Bar Menu Off Canvas 3104\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:1:{s:22:\"off-canvas-mm-services\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:79:\"https://avada.studio/?awb_off_canvas=bottom-bar-menu&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/08/bottom-bar-menu-ss-400x27.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:27;}s:4:\"tags\";a:2:{i:0;s:4:\"menu\";i:1;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/08/bottom-bar-menu-ss-800x54.jpg\";}}s:9:\"item-3100\";a:10:{s:2:\"ID\";i:3100;s:10:\"post_title\";s:24:\"Discount Off Canvas 3100\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:67:\"https://avada.studio/?awb_off_canvas=new&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/08/discount-ss-400x275.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:275;}s:4:\"tags\";a:3:{i:0;s:8:\"discount\";i:1;s:5:\"popup\";i:2;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/08/discount-ss-800x551.jpg\";}}s:9:\"item-3073\";a:10:{s:2:\"ID\";i:3073;s:10:\"post_title\";s:39:\"Floating Social Buttons Off Canvas 3073\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:87:\"https://avada.studio/?awb_off_canvas=floating-social-buttons&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/08/floating-social-buttons-ss.jpg\";s:5:\"width\";i:279;s:6:\"height\";i:662;}s:4:\"tags\";a:4:{i:0;s:8:\"floating\";i:1;s:7:\"overlap\";i:2;s:11:\"sliding-bar\";i:3;s:14:\"social-sharing\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/08/floating-social-buttons-ss.jpg\";}}s:9:\"item-2709\";a:10:{s:2:\"ID\";i:2709;s:10:\"post_title\";s:31:\"Pizzeria Review Off Canvas 2709\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2022/06/443.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2022/06/442.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2710;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:78:\"https://avada.studio/?awb_off_canvas=new-off-canvas&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/06/pizzeria-offcanvas-3-400x524.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:524;}s:4:\"tags\";a:2:{i:0;s:5:\"popup\";i:1;s:6:\"review\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/06/pizzeria-offcanvas-3.jpg\";}}s:9:\"item-2705\";a:10:{s:2:\"ID\";i:2705;s:10:\"post_title\";s:22:\"Coupon Off Canvas 2705\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2022/06/top-shapes-coupon.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/?awb_off_canvas=coupon&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/06/coupon-popup-400x319.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:319;}s:4:\"tags\";a:3:{i:0;s:8:\"discount\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2022/06/coupon-popup.jpg\";}}s:9:\"item-2620\";a:10:{s:2:\"ID\";i:2620;s:10:\"post_title\";s:20:\"Menu Off Canvas 2620\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:63:\"https://avada.studio/wp-content/uploads/2022/05/avada-light.svg\";a:1:{s:8:\"image_id\";s:9:\"2631|full\";}}s:5:\"menus\";a:1:{s:15:\"menu-off-canvas\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:68:\"https://avada.studio/?awb_off_canvas=menu&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:56:\"https://avada.studio/wp-content/uploads/2022/05/2620.jpg\";s:5:\"width\";i:362;s:6:\"height\";i:639;}s:4:\"tags\";a:2:{i:0;s:4:\"menu\";i:1;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:56:\"https://avada.studio/wp-content/uploads/2022/05/2620.jpg\";}}s:9:\"item-2633\";a:10:{s:2:\"ID\";i:2633;s:10:\"post_title\";s:27:\"Sliding Bar Off Canvas 2633\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:7:{s:64:\"https://avada.studio/wp-content/uploads/2022/05/logostudio-1.png\";a:1:{s:8:\"image_id\";s:9:\"2644|full\";}s:65:\"https://avada.studio/wp-content/uploads/2022/05/gallery-img-1.jpg\";a:1:{s:8:\"image_id\";s:4:\"2637\";}s:65:\"https://avada.studio/wp-content/uploads/2022/05/gallery-img-2.jpg\";a:1:{s:8:\"image_id\";s:4:\"2638\";}s:65:\"https://avada.studio/wp-content/uploads/2022/05/gallery-img-3.jpg\";a:1:{s:8:\"image_id\";s:4:\"2639\";}s:64:\"https://avada.studio/wp-content/uploads/2022/05/galery-img-4.jpg\";a:1:{s:8:\"image_id\";s:4:\"2636\";}s:65:\"https://avada.studio/wp-content/uploads/2022/05/gallery-img-5.jpg\";a:1:{s:8:\"image_id\";s:4:\"2640\";}s:65:\"https://avada.studio/wp-content/uploads/2022/05/gallery-img-6.jpg\";a:1:{s:8:\"image_id\";s:4:\"2635\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:75:\"https://avada.studio/?awb_off_canvas=sliding-bar&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:56:\"https://avada.studio/wp-content/uploads/2022/05/2633.png\";s:5:\"width\";i:389;s:6:\"height\";i:890;}s:4:\"tags\";a:3:{i:0;s:5:\"about\";i:1;s:7:\"overlap\";i:2;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:56:\"https://avada.studio/wp-content/uploads/2022/05/2633.png\";}}s:9:\"item-2616\";a:10:{s:2:\"ID\";i:2616;s:10:\"post_title\";s:28:\"Download App Off Canvas 2616\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:76:\"https://avada.studio/?awb_off_canvas=download-app&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/05/promo-app-banner-400x84.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:84;}s:4:\"tags\";a:3:{i:0;s:8:\"discount\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/05/promo-app-banner-800x168.jpg\";}}s:9:\"item-2537\";a:10:{s:2:\"ID\";i:2537;s:10:\"post_title\";s:40:\"Shop Archives Off Canvas Off Canvas 2537\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/04/435.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:88:\"https://avada.studio/?awb_off_canvas=shop-archives-off-canvas&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/04/off-canvas-cart-400x229.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:229;}s:4:\"tags\";a:2:{i:0;s:4:\"cart\";i:1;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/04/off-canvas-cart.jpg\";}}s:9:\"item-2503\";a:10:{s:2:\"ID\";i:2503;s:10:\"post_title\";s:32:\"Full Screen Menu Off Canvas 2503\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:3:{s:27:\"off-canvas-full-screen-main\";b:1;s:31:\"off-canvas-full-screen-whatwedo\";b:1;s:31:\"off-canvas-full-screen-whoweare\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:80:\"https://avada.studio/?awb_off_canvas=full-screen-menu&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/04/full-screen-flyout-menu-400x236.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:236;}s:4:\"tags\";a:4:{i:0;s:6:\"flyout\";i:1;s:4:\"menu\";i:2;s:7:\"overlap\";i:3;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/04/full-screen-flyout-menu-800x472.jpg\";}}s:9:\"item-2363\";a:10:{s:2:\"ID\";i:2363;s:10:\"post_title\";s:31:\"Mega Menu Style Off Canvas 2363\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:7:{s:73:\"https://avada.studio/wp-content/uploads/2022/03/full-screen-menu-logo.png\";a:1:{s:8:\"image_id\";s:9:\"2483|full\";}s:84:\"https://avada.studio/wp-content/uploads/2022/03/laptop-side-image-e1648218022454.jpg\";a:1:{s:8:\"image_id\";s:9:\"2365|full\";}s:68:\"https://avada.studio/wp-content/uploads/2022/03/main-links-image.jpg\";a:1:{s:8:\"image_id\";s:9:\"2366|full\";}s:66:\"https://avada.studio/wp-content/uploads/2022/03/services-image.jpg\";a:1:{s:8:\"image_id\";s:9:\"2367|full\";}s:65:\"https://avada.studio/wp-content/uploads/2022/03/contact-image.jpg\";a:1:{s:8:\"image_id\";s:9:\"2374|full\";}s:67:\"https://avada.studio/wp-content/uploads/2022/03/partner-logo-01.png\";a:1:{s:8:\"image_id\";s:9:\"2484|full\";}s:67:\"https://avada.studio/wp-content/uploads/2022/03/partner-logo-02.png\";a:1:{s:8:\"image_id\";s:9:\"2485|full\";}}s:5:\"menus\";a:3:{s:18:\"off-canvas-mm-main\";b:1;s:22:\"off-canvas-mm-services\";b:1;s:20:\"off-canvas-mm-social\";b:1;}s:5:\"forms\";a:1:{i:2394;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:79:\"https://avada.studio/?awb_off_canvas=mega-menu-style&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/03/off-canvas-flyout-menu-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;}s:4:\"tags\";a:4:{i:0;s:6:\"flyout\";i:1;s:4:\"menu\";i:2;s:7:\"overlap\";i:3;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/03/off-canvas-flyout-menu-800x568.jpg\";}}s:9:\"item-2135\";a:10:{s:2:\"ID\";i:2135;s:10:\"post_title\";s:25:\"Valentine Off Canvas 2135\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:74:\"https://avada.studio/wp-content/uploads/2022/01/valentine-pattern-sale.png\";b:1;s:73:\"https://avada.studio/wp-content/uploads/2022/01/valentine-heart-promo.png\";a:1:{s:8:\"image_id\";s:9:\"2146|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:84:\"https://avada.studio/?awb_off_canvas=newsletter-vintage-2&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/01/Screenshot_58-400x227.png\";s:5:\"width\";i:400;s:6:\"height\";i:227;}s:4:\"tags\";a:3:{i:0;s:5:\"popup\";i:1;s:9:\"promotion\";i:2;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/01/Screenshot_58-800x453.png\";}}s:9:\"item-1992\";a:10:{s:2:\"ID\";i:1992;s:10:\"post_title\";s:24:\"Business Off Canvas 1992\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-1.png\";a:1:{s:8:\"image_id\";s:9:\"1329|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/179.jpg\";a:1:{s:8:\"image_id\";s:9:\"1317|full\";}}s:5:\"menus\";a:1:{s:25:\"footer-pages-menu-01-main\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:76:\"https://avada.studio/?awb_off_canvas=off-canvas-7&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/12/business-off-canvas-02.jpg\";s:5:\"width\";i:334;s:6:\"height\";i:894;}s:4:\"tags\";a:3:{i:0;s:4:\"menu\";i:1;s:4:\"push\";i:2;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/12/business-off-canvas-02.jpg\";}}s:9:\"item-1978\";a:10:{s:2:\"ID\";i:1978;s:10:\"post_title\";s:24:\"Cookbook Off Canvas 1978\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/12/366.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:2079;s:4:\"true\";}}s:3:\"url\";s:82:\"https://avada.studio/?awb_off_canvas=cookbok-newsletter&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/12/newsletter-cookbook-2-400x176.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:176;}s:4:\"tags\";a:2:{i:0;s:5:\"popup\";i:1;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/12/newsletter-cookbook-2-800x353.jpg\";}}s:9:\"item-1976\";a:10:{s:2:\"ID\";i:1976;s:10:\"post_title\";s:23:\"Contact Off Canvas 1976\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/12/364.jpg\";a:1:{s:8:\"image_id\";s:9:\"2197|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:83:\"https://avada.studio/?awb_off_canvas=sliding-bar-contact&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/11/contact-sliding-bar-400x813.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:813;}s:4:\"tags\";a:3:{i:0;s:7:\"contact\";i:1;s:7:\"overlap\";i:2;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/11/contact-sliding-bar.jpg\";}}s:9:\"item-1962\";a:10:{s:2:\"ID\";i:1962;s:10:\"post_title\";s:26:\"Newsletter Off Canvas 1962\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/352.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:2081;s:4:\"true\";}}s:3:\"url\";s:80:\"https://avada.studio/?awb_off_canvas=newsletter-sport&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/11/newsletter-sport-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;}s:4:\"tags\";a:2:{i:0;s:5:\"popup\";i:1;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/11/newsletter-sport-800x390.jpg\";}}s:9:\"item-1985\";a:10:{s:2:\"ID\";i:1985;s:10:\"post_title\";s:20:\"Menu Off Canvas 1985\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/12/370.png\";a:1:{s:8:\"image_id\";s:9:\"2195|full\";}s:71:\"https://avada.studio/wp-content/uploads/2021/08/logo-abstract-shape.png\";a:1:{s:8:\"image_id\";s:9:\"1184|full\";}}s:5:\"menus\";a:2:{s:25:\"footer-pages-menu-01-main\";b:1;s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:76:\"https://avada.studio/?awb_off_canvas=off-canvas-6&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/12/menu-off-canvas-400x296.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:296;}s:4:\"tags\";a:3:{i:0;s:6:\"flyout\";i:1;s:4:\"menu\";i:2;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/12/menu-off-canvas-800x592.jpg\";}}s:9:\"item-1974\";a:10:{s:2:\"ID\";i:1974;s:10:\"post_title\";s:27:\"Sliding Bar Off Canvas 1974\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/238.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2077;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:80:\"https://avada.studio/?awb_off_canvas=sliding-bar-dark&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2021/11/newsletter-sliding-bar-dark-400x779.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:779;}s:4:\"tags\";a:3:{i:0;s:4:\"push\";i:1;s:11:\"sliding-bar\";i:2;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/11/newsletter-sliding-bar-dark.jpg\";}}s:9:\"item-2001\";a:10:{s:2:\"ID\";i:2001;s:10:\"post_title\";s:20:\"Game Off Canvas 2001\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/12/369.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:78:\"https://avada.studio/?awb_off_canvas=off-canvas-5-2&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/12/game-off-canvas-400x419.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:419;}s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2021/12/game-off-canvas.jpg\";}}s:9:\"item-2065\";a:10:{s:2:\"ID\";i:2065;s:10:\"post_title\";s:26:\"Gift Guide Off Canvas 2065\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:72:\"https://avada.studio/wp-content/uploads/2021/12/gifts-guide-colorful.png\";a:1:{s:8:\"image_id\";s:9:\"2204|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:74:\"https://avada.studio/?awb_off_canvas=gift-guide&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/11/gift-guide-holiday-popup-400x419.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:419;}s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:5:\"popup\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/11/gift-guide-holiday-popup.jpg\";}}s:9:\"item-2064\";a:10:{s:2:\"ID\";i:2064;s:10:\"post_title\";s:30:\"Christmas Sale Off Canvas 2064\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:80:\"https://avada.studio/wp-content/uploads/2021/12/christmas-sala-off-canvas-bg.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:78:\"https://avada.studio/?awb_off_canvas=christmas-sale&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/11/christmas-sale-popup-400x304.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:304;}s:4:\"tags\";a:4:{i:0;s:9:\"christmas\";i:1;s:5:\"popup\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/11/christmas-sale-popup-800x608.jpg\";}}s:9:\"item-1970\";a:10:{s:2:\"ID\";i:1970;s:10:\"post_title\";s:26:\"Newsletter Off Canvas 1970\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/278.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:2072;s:4:\"true\";}}s:3:\"url\";s:82:\"https://avada.studio/?awb_off_canvas=newsletter-vintage&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/11/newsletter-vintage-400x234.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:234;}s:4:\"tags\";a:2:{i:0;s:5:\"popup\";i:1;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/11/newsletter-vintage-800x468.jpg\";}}s:9:\"item-1983\";a:10:{s:2:\"ID\";i:1983;s:10:\"post_title\";s:22:\"Casual Off Canvas 1983\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:54:\"https://avada.studio/wp-content/uploads/2021/09/11.jpg\";a:1:{s:8:\"image_id\";s:9:\"1040|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2076;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:76:\"https://avada.studio/?awb_off_canvas=off-canvas-5&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/12/casual-off-canvas-400x398.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:398;}s:4:\"tags\";a:2:{i:0;s:5:\"popup\";i:1;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/12/casual-off-canvas.jpg\";}}s:9:\"item-1997\";a:10:{s:2:\"ID\";i:1997;s:10:\"post_title\";s:26:\"Bottom Bar Off Canvas 1997\";s:9:\"post_type\";s:14:\"awb_off_canvas\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:76:\"https://avada.studio/?awb_off_canvas=off-canvas-8&awb-studio-off-canvas=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/12/off-canvas-bottom-bar-400x68.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:68;}s:4:\"tags\";a:2:{i:0;s:12:\"notification\";i:1;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/12/off-canvas-bottom-bar-800x136.jpg\";}}}s:7:\"content\";a:40:{s:9:\"item-6166\";a:11:{s:2:\"ID\";i:6166;s:10:\"post_title\";s:32:\"Single Post Content Content 6166\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:4789;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:85:\"https://avada.studio/fusion_tb_section/single-post-content-2/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2026/03/single-post-content-full-page-400x773.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:773;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2026/03/single-post-content-full-page-800x1546.jpg\";}s:7:\"_fusion\";a:32:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:3:\"yes\";s:16:\"color1_overwrite\";s:7:\"#fafaf8\";s:16:\"color2_overwrite\";s:7:\"#e5e5e0\";s:16:\"color3_overwrite\";s:7:\"#ddddd7\";s:16:\"color4_overwrite\";s:7:\"#d4480a\";s:16:\"color5_overwrite\";s:7:\"#2563eb\";s:16:\"color6_overwrite\";s:7:\"#8a8a85\";s:16:\"color7_overwrite\";s:7:\"#5c5c57\";s:16:\"color8_overwrite\";s:7:\"#1a1a18\";s:7:\"h1_size\";s:4:\"64px\";s:7:\"h2_size\";s:4:\"56px\";s:7:\"h3_size\";s:4:\"40px\";s:7:\"h4_size\";s:4:\"32px\";s:7:\"h5_size\";s:4:\"18px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Source Serif 4\";s:9:\"font-size\";s:4:\"48px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:4:\"1.15\";s:14:\"letter-spacing\";s:8:\"-0.025em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Source Serif 4\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.5\";s:9:\"font-size\";s:4:\"24px\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:9:\"font-size\";s:4:\"14px\";s:14:\"text-transform\";s:0:\"\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Google Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:6:\"0.01em\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Source Serif 4\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Google Sans\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"1.45\";s:14:\"letter-spacing\";s:6:\"0.05em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"6167\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5869\";a:11:{s:2:\"ID\";i:5869;s:10:\"post_title\";s:17:\"Cart Content 5869\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/cart-4/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2025/07/cart-ss-04-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;}s:4:\"tags\";a:2:{i:0;s:4:\"cart\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2025/07/cart-ss-04-800x799.jpg\";}s:7:\"_fusion\";a:23:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#e8a553\";s:16:\"color5_overwrite\";s:7:\"#896bc6\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h4_size\";s:4:\"22px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5868\";a:11:{s:2:\"ID\";i:5868;s:10:\"post_title\";s:17:\"Cart Content 5868\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2023/03/thank-you-hero.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/cart-3/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2025/07/cart-ss-03-400x543.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:543;}s:4:\"tags\";a:2:{i:0;s:4:\"cart\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:62:\"https://avada.studio/wp-content/uploads/2025/07/cart-ss-03.jpg\";}s:7:\"_fusion\";a:23:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#55b8e0\";s:16:\"color5_overwrite\";s:7:\"#d15249\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h4_size\";s:4:\"22px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5866\";a:11:{s:2:\"ID\";i:5866;s:10:\"post_title\";s:17:\"Cart Content 5866\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/cart-2/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2025/07/cart-ss-02-400x368.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:368;}s:4:\"tags\";a:2:{i:0;s:4:\"cart\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:62:\"https://avada.studio/wp-content/uploads/2025/07/cart-ss-02.jpg\";}s:7:\"_fusion\";a:24:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#5dba9c\";s:16:\"color5_overwrite\";s:7:\"#478e73\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#161616\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"44px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:28:\"dynamic_content_preview_type\";s:4:\"page\";s:12:\"preview_page\";s:3:\"100\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5298\";a:11:{s:2:\"ID\";i:5298;s:10:\"post_title\";s:17:\"Cart Content 5298\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:75:\"https://avada.studio/wp-content/uploads/2024/06/festival-programs-bg-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5250|full\";}}}s:3:\"url\";s:68:\"https://avada.studio/fusion_tb_section/cart/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2024/06/cart-page-ss1-400x572.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:572;}s:4:\"tags\";a:2:{i:0;s:4:\"cart\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2024/06/cart-page-ss1-800x1143.jpg\";}s:7:\"_fusion\";a:23:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eef3e9\";s:16:\"color3_overwrite\";s:7:\"#cbdcba\";s:16:\"color4_overwrite\";s:7:\"#a9be94\";s:16:\"color5_overwrite\";s:7:\"#6093aa\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#161616\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"44px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.4\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5295\";a:11:{s:2:\"ID\";i:5295;s:10:\"post_title\";s:22:\"Thank You Content 5295\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2024/06/shop-header-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5259|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:75:\"https://avada.studio/fusion_tb_section/thank-you-3/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2024/06/thank-you-page-ss2-400x399.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:399;}s:4:\"tags\";a:2:{i:0;s:9:\"thank-you\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2024/06/thank-you-page-ss2.jpg\";}s:7:\"_fusion\";a:26:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eef3e9\";s:16:\"color3_overwrite\";s:7:\"#cbdcba\";s:16:\"color4_overwrite\";s:7:\"#a9be94\";s:16:\"color5_overwrite\";s:7:\"#6093aa\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#161616\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"44px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.4\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5290\";a:11:{s:2:\"ID\";i:5290;s:10:\"post_title\";s:20:\"Product Content 5290\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:73:\"https://avada.studio/fusion_tb_section/product-3/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/06/product-single-page-ss1-400x951.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:951;}s:4:\"tags\";a:2:{i:0;s:14:\"single-product\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2024/06/product-single-page-ss1-800x1901.jpg\";}s:7:\"_fusion\";a:30:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f1f1f1\";s:16:\"color3_overwrite\";s:7:\"#d9d9d9\";s:16:\"color4_overwrite\";s:7:\"#ff6770\";s:16:\"color5_overwrite\";s:7:\"#5594a6\";s:16:\"color6_overwrite\";s:7:\"#367384\";s:16:\"color7_overwrite\";s:7:\"#474747\";s:16:\"color8_overwrite\";s:7:\"#282828\";s:7:\"h3_size\";s:4:\"40px\";s:7:\"h4_size\";s:4:\"32px\";s:7:\"h5_size\";s:5:\"25px \";s:7:\"h6_size\";s:4:\"18px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Bricolage Grotesque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"52px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Bricolage Grotesque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Bricolage Grotesque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Bricolage Grotesque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Bricolage Grotesque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:28:\"dynamic_content_preview_type\";s:7:\"product\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";a:1:{i:0;s:4:\"5283\";}s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4777\";a:11:{s:2:\"ID\";i:4777;s:10:\"post_title\";s:32:\"Single Post Content Content 4777\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2023/11/blog-6.jpg\";s:4:\"true\";}s:10:\"post_cards\";a:1:{i:4789;s:4:\"true\";}}s:3:\"url\";s:83:\"https://avada.studio/fusion_tb_section/single-post-content/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/11/single-ss-400x1680.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1680;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/11/single-ss-800x3361.jpg\";}s:7:\"_fusion\";a:24:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color3_overwrite\";s:7:\"#daefe5\";s:16:\"color5_overwrite\";s:7:\"#118e34\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"48px\";s:7:\"h3_size\";s:4:\"35px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Bricolage Grotesque\";s:9:\"font-size\";s:4:\"67px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.5\";s:9:\"font-size\";s:4:\"21px\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:1:{s:9:\"font-size\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"19px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Bricolage Grotesque\";s:9:\"font-size\";s:4:\"18px\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"4780\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-4767\";a:11:{s:2:\"ID\";i:4767;s:10:\"post_title\";s:21:\"Archives Content 4767\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/archives-4/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2023/11/archives-ss-400x467.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:467;}s:4:\"tags\";a:1:{i:0;s:8:\"archives\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2023/11/archives-ss-800x934.jpg\";}s:7:\"_fusion\";a:21:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color5_overwrite\";s:7:\"#e5361b\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h2_size\";s:4:\"45px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"18px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Crimson Pro\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:1:\"0\";s:9:\"font-size\";s:4:\"60px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:8:\"archives\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4140\";a:11:{s:2:\"ID\";i:4140;s:10:\"post_title\";s:17:\"Post Content 4140\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:79:\"https://avada.studio/wp-content/uploads/2023/06/crypto-blog-featured-image1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4137|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2993;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/post-6/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/06/post-content-ss-1-400x1531.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1531;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/06/post-content-ss-1-800x3063.jpg\";}s:7:\"_fusion\";a:30:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#ff9d42\";s:16:\"color5_overwrite\";s:7:\"#5085ed\";s:16:\"color6_overwrite\";s:7:\"#6b6b6b\";s:16:\"color7_overwrite\";s:7:\"#4c4c4c\";s:16:\"color8_overwrite\";s:7:\"#141414\";s:7:\"h2_size\";s:4:\"39px\";s:7:\"h3_size\";s:4:\"30px\";s:7:\"h4_size\";s:4:\"23px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"51px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"23px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"4136\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4128\";a:11:{s:2:\"ID\";i:4128;s:10:\"post_title\";s:21:\"Archives Content 4128\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:72:\"https://avada.studio/wp-content/uploads/2023/05/art-craft-header-bg3.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:4127;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/archives-3/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2023/05/art-craft-product-archives-1-400x375.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:375;}s:4:\"tags\";a:1:{i:0;s:8:\"archives\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2023/05/art-craft-product-archives-1-800x749.jpg\";}s:7:\"_fusion\";a:26:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#fee9e2\";s:16:\"color3_overwrite\";s:7:\"#ffcaba\";s:16:\"color4_overwrite\";s:7:\"#ff9f7c\";s:16:\"color5_overwrite\";s:7:\"#468adc\";s:16:\"color6_overwrite\";s:7:\"#6b6b6b\";s:16:\"color7_overwrite\";s:7:\"#3f3f3f\";s:16:\"color8_overwrite\";s:7:\"#141414\";s:7:\"h4_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:8:\"archives\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:7:\"product\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3978\";a:11:{s:2:\"ID\";i:3978;s:10:\"post_title\";s:22:\"Thank You Content 3978\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2023/03/thank-you-hero.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:73:\"https://avada.studio/fusion_tb_section/thank-you/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2023/03/thankyou-ss-400x619.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:619;}s:4:\"tags\";a:2:{i:0;s:9:\"thank-you\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/03/thankyou-ss-800x1239.jpg\";}s:7:\"_fusion\";a:25:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f9f6f2\";s:16:\"color4_overwrite\";s:7:\"#17c672\";s:16:\"color5_overwrite\";s:7:\"#0e915f\";s:7:\"h1_size\";s:4:\"70px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Gloock\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Gloock\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"20px\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3985\";a:11:{s:2:\"ID\";i:3985;s:10:\"post_title\";s:24:\"Thank You 2 Content 3985\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2023/03/thank-you-img-4.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:75:\"https://avada.studio/fusion_tb_section/thank-you-2/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/03/thank-you-2-ss-2-400x430.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:430;}s:4:\"tags\";a:2:{i:0;s:9:\"thank-you\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/03/thank-you-2-ss-2-800x860.jpg\";}s:7:\"_fusion\";a:26:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:5:\"120px\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#fbf7ec\";s:16:\"color3_overwrite\";s:7:\"#e8e8e8\";s:16:\"color4_overwrite\";s:7:\"#9cbce2\";s:16:\"color5_overwrite\";s:7:\"#0a8472\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"45px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3866\";a:11:{s:2:\"ID\";i:3866;s:10:\"post_title\";s:17:\"Post Content 3866\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:5:\"forms\";a:1:{i:3867;s:4:\"true\";}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/post-5/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2023/01/travel-post-content-ss-1-400x1276.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1276;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/01/travel-post-content-ss-1.jpg\";}s:7:\"_fusion\";a:18:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"3845\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#dbdbdb\";s:19:\"exclude_form_studio\";s:2:\"no\";s:16:\"color4_overwrite\";s:7:\"#c5a3f3\";s:16:\"color5_overwrite\";s:7:\"#ff000e\";s:16:\"color6_overwrite\";s:7:\"#7550a8\";s:16:\"color7_overwrite\";s:7:\"#513479\";s:16:\"color8_overwrite\";s:7:\"#261242\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"56px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.6\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";}s:7:\"h4_size\";s:4:\"26px\";s:7:\"h3_size\";s:4:\"37px\";}}s:9:\"item-3608\";a:11:{s:2:\"ID\";i:3608;s:10:\"post_title\";s:17:\"Post Content 3608\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2072;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/post-4/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/11/single-post-table-of-content-400x1484.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1484;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/11/single-post-table-of-content-800x2968.jpg\";}s:7:\"_fusion\";a:28:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efeeed\";s:16:\"color3_overwrite\";s:7:\"#d2ebeb\";s:16:\"color4_overwrite\";s:7:\"#4dff94\";s:16:\"color5_overwrite\";s:7:\"#4350c1\";s:16:\"color6_overwrite\";s:7:\"#4d6385\";s:16:\"color7_overwrite\";s:7:\"#2a7e99\";s:16:\"color8_overwrite\";s:7:\"#202b37\";s:7:\"h2_size\";s:4:\"48px\";s:7:\"h3_size\";s:4:\"32px\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Tiro Bangla\";s:9:\"font-size\";s:4:\"64px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:3:\"0px\";s:11:\"line-height\";s:5:\"1.2em\";}s:21:\"typography2_overwrite\";a:8:{s:9:\"font-size\";s:4:\"24px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:14:\"letter-spacing\";s:6:\"0.03em\";s:11:\"line-height\";s:5:\"1.4em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:14:\"letter-spacing\";s:6:\"0.02em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:14:\"letter-spacing\";s:7:\"0.016em\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:6:\"1.72em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:3:\"1px\";s:11:\"line-height\";s:5:\"1.5em\";s:9:\"font-size\";s:4:\"12px\";s:14:\"text-transform\";s:9:\"uppercase\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:12:\"preview_post\";a:1:{i:0;s:4:\"3609\";}}}s:9:\"item-2971\";a:11:{s:2:\"ID\";i:2971;s:10:\"post_title\";s:21:\"Archives Content 2971\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/archives-2/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/07/archives-ss-400x445.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:445;}s:4:\"tags\";a:1:{i:0;s:8:\"archives\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/07/archives-ss-800x891.jpg\";}s:7:\"_fusion\";a:27:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#e8a325\";s:16:\"color5_overwrite\";s:7:\"#0481e8\";s:16:\"color7_overwrite\";s:7:\"#0b3866\";s:16:\"color8_overwrite\";s:7:\"#001b42\";s:16:\"color6_overwrite\";s:7:\"#2661b5\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:28:\"dynamic_content_preview_type\";s:8:\"archives\";s:7:\"h3_size\";s:4:\"32px\";s:7:\"h6_size\";s:4:\"16px\";}}s:9:\"item-2955\";a:11:{s:2:\"ID\";i:2955;s:10:\"post_title\";s:21:\"Archives Content 2955\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:72:\"https://avada.studio/fusion_tb_section/archives/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/07/archives-2-400x461.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:461;}s:4:\"tags\";a:1:{i:0;s:8:\"archives\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/07/archives-2-800x923.jpg\";}s:7:\"_fusion\";a:29:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#d7f3f4\";s:16:\"color3_overwrite\";s:7:\"#f4f4f4\";s:16:\"color4_overwrite\";s:7:\"#9ad1cf\";s:16:\"color5_overwrite\";s:7:\"#13a092\";s:16:\"color6_overwrite\";s:7:\"#476c8e\";s:16:\"color7_overwrite\";s:7:\"#2e3138\";s:16:\"color8_overwrite\";s:7:\"#00685e\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h3_size\";s:4:\"35px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Gulzar\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:9:\"400italic\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:6:\"italic\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:8:\"archives\";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:15:\"avada_portfolio\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:16:\"template_sidebar\";s:0:\"\";s:18:\"template_sidebar_2\";s:0:\"\";s:14:\"sidebar_sticky\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2879\";a:11:{s:2:\"ID\";i:2879;s:10:\"post_title\";s:16:\"404 Content 2879\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:60:\"https://avada.studio/wp-content/uploads/2022/07/404-3-bg.png\";s:4:\"true\";s:63:\"https://avada.studio/wp-content/uploads/2022/07/404-graphic.png\";a:1:{s:8:\"image_id\";s:9:\"2883|full\";}}s:5:\"menus\";a:1:{s:20:\"business-header-menu\";s:4:\"true\";}}s:3:\"url\";s:69:\"https://avada.studio/fusion_tb_section/404-2/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/07/404-content-400x237.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:237;}s:4:\"tags\";a:1:{i:0;s:6:\"four04\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/07/404-content-800x473.jpg\";}s:7:\"_fusion\";a:16:{s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"56px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:16:\"color4_overwrite\";s:7:\"#ffb459\";s:16:\"color5_overwrite\";s:7:\"#ff5858\";s:16:\"color6_overwrite\";s:7:\"#bf4242\";s:16:\"color7_overwrite\";s:7:\"#7a2525\";s:16:\"color8_overwrite\";s:7:\"#350505\";s:7:\"h4_size\";s:4:\"32px\";}}s:9:\"item-2864\";a:11:{s:2:\"ID\";i:2864;s:10:\"post_title\";s:22:\"Portfolio Content 2864\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/03/409.jpg\";s:4:\"true\";}s:10:\"post_cards\";a:1:{i:2865;s:4:\"true\";}}s:3:\"url\";s:73:\"https://avada.studio/fusion_tb_section/portfolio/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/07/portfolio-single-2-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;}s:4:\"tags\";a:1:{i:0;s:16:\"single-portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2022/07/portfolio-single-2-800x1024.jpg\";}s:7:\"_fusion\";a:22:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color4_overwrite\";s:7:\"#a0b5e8\";s:16:\"color5_overwrite\";s:7:\"#7b78cc\";s:16:\"color7_overwrite\";s:7:\"#0b1326\";s:16:\"color8_overwrite\";s:7:\"#060616\";s:7:\"h1_size\";s:4:\"80px\";s:7:\"h3_size\";s:4:\"30px\";s:7:\"h4_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:7:{s:9:\"font-size\";s:4:\"80px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Staatliches\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Noto Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Noto Serif\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:15:\"avada_portfolio\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:4:\"2452\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-2858\";a:11:{s:2:\"ID\";i:2858;s:10:\"post_title\";s:21:\"Archives Content 2858\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:71:\"https://avada.studio/fusion_tb_section/archive/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/07/archive-travel-cat-posts-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;}s:4:\"tags\";a:1:{i:0;s:8:\"archives\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/07/archive-travel-cat-posts-800x1032.jpg\";}s:7:\"_fusion\";a:26:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f6f9\";s:16:\"color3_overwrite\";s:7:\"#dedfe2\";s:16:\"color4_overwrite\";s:7:\"#f16e44\";s:16:\"color5_overwrite\";s:7:\"#056ea9\";s:16:\"color6_overwrite\";s:7:\"#444d50\";s:16:\"color7_overwrite\";s:7:\"#182328\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:7:\"h3_size\";s:4:\"36px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"IBM Plex Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:6:\"1.12em\";s:14:\"letter-spacing\";s:8:\"-0.016em\";}s:21:\"typography2_overwrite\";a:8:{s:14:\"letter-spacing\";s:8:\"-0.015em\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"line-height\";s:3:\"1.3\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";}s:21:\"typography3_overwrite\";a:8:{s:14:\"letter-spacing\";s:7:\"-0.01em\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"line-height\";s:3:\"1.5\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography4_overwrite\";a:8:{s:14:\"letter-spacing\";s:7:\"-0.01em\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"line-height\";s:3:\"1.6\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";}s:21:\"typography5_overwrite\";a:8:{s:14:\"letter-spacing\";s:7:\"-0.01em\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"line-height\";s:3:\"1.5\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";}s:28:\"dynamic_content_preview_type\";s:8:\"archives\";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:16:\"element_category\";}}s:9:\"item-2822\";a:11:{s:2:\"ID\";i:2822;s:10:\"post_title\";s:17:\"Post Content 2822\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:65:\"https://avada.studio/wp-content/uploads/2022/06/newsletter-bg.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:2590;s:4:\"true\";}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/post-3/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2022/06/single-post-content-400x667.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:667;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/06/single-post-content-800x1334.jpg\";}s:7:\"_fusion\";a:28:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:12:\"preview_post\";a:1:{i:0;s:4:\"2823\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color5_overwrite\";s:7:\"#dd4b4b\";s:16:\"color4_overwrite\";s:7:\"#dba746\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h1_size\";s:4:\"67px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:7:\"h4_size\";s:4:\"30px\";}}s:9:\"item-2809\";a:11:{s:2:\"ID\";i:2809;s:10:\"post_title\";s:20:\"Product Content 2809\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:73:\"https://avada.studio/fusion_tb_section/product-2/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/06/single-product-care-content-400x611.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:611;}s:4:\"tags\";a:2:{i:0;s:14:\"single-product\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2022/06/single-product-care-content-800x1222.jpg\";}s:7:\"_fusion\";a:26:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#faf8f4\";s:16:\"color3_overwrite\";s:7:\"#e7e4df\";s:16:\"color4_overwrite\";s:7:\"#fd750a\";s:16:\"color5_overwrite\";s:7:\"#501718\";s:16:\"color6_overwrite\";s:7:\"#484141\";s:16:\"color7_overwrite\";s:7:\"#302929\";s:16:\"color8_overwrite\";s:7:\"#130909\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:7:\"-0.02em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:6:\"1.24em\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:28:\"dynamic_content_preview_type\";s:7:\"product\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";a:1:{i:0;s:4:\"2811\";}s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-2596\";a:11:{s:2:\"ID\";i:2596;s:10:\"post_title\";s:20:\"Product Content 2596\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2022/04/tagline-discount-bg.jpg\";s:4:\"true\";}}s:3:\"url\";s:71:\"https://avada.studio/fusion_tb_section/product/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/04/single-product-preview-400x348.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:348;}s:4:\"tags\";a:2:{i:0;s:14:\"single-product\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/04/single-product-preview-800x696.jpg\";}s:7:\"_fusion\";a:26:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#f5ad40\";s:16:\"color5_overwrite\";s:7:\"#9464e0\";s:16:\"color6_overwrite\";s:7:\"#5500e1\";s:16:\"color7_overwrite\";s:7:\"#3a00a8\";s:16:\"color8_overwrite\";s:7:\"#160023\";s:7:\"h1_size\";s:4:\"56px\";s:7:\"h2_size\";s:4:\"40px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"56px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.030em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:28:\"dynamic_content_preview_type\";s:7:\"product\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";a:1:{i:0;s:4:\"2598\";}s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-2583\";a:11:{s:2:\"ID\";i:2583;s:10:\"post_title\";s:17:\"Post Content 2583\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:63:\"https://avada.studio/wp-content/uploads/2022/04/post-author.jpg\";a:1:{s:8:\"image_id\";s:9:\"2588|full\";}s:70:\"https://avada.studio/wp-content/uploads/2022/04/newsletter-bg-post.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:2590;s:4:\"true\";}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/post-2/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/07/post-ss-technology-400x622.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:622;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2022/07/post-ss-technology-800x1243.jpg\";}s:7:\"_fusion\";a:29:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#f98a5e\";s:16:\"color5_overwrite\";s:7:\"#557ce0\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#383838\";s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:7:\"h1_size\";s:4:\"44px\";s:7:\"h3_size\";s:4:\"30px\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"44px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"2584\";}s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-2563\";a:11:{s:2:\"ID\";i:2563;s:10:\"post_title\";s:19:\"Search Content 2563\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:68:\"https://avada.studio/wp-content/uploads/2022/04/search-laptop-bg.jpg\";b:1;s:67:\"https://avada.studio/wp-content/uploads/2022/04/search-lines-bg.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:2577;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:78:\"https://avada.studio/fusion_tb_section/search/?awb-studio-content=true&s=avada\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/04/search-3-content-400x484.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:484;}s:4:\"tags\";a:1:{i:0;s:6:\"search\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/04/search-3-content-800x968.jpg\";}s:7:\"_fusion\";a:31:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f8f2fe\";s:16:\"color3_overwrite\";s:7:\"#e2d3ff\";s:16:\"color4_overwrite\";s:7:\"#dd8ff7\";s:16:\"color5_overwrite\";s:7:\"#a25bff\";s:16:\"color6_overwrite\";s:7:\"#6e00ff\";s:16:\"color7_overwrite\";s:7:\"#46009e\";s:16:\"color8_overwrite\";s:7:\"#18002d\";s:7:\"h1_size\";s:4:\"64px\";s:7:\"h4_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:14:\"letter-spacing\";s:8:\"-0.025em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.025em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:16:\"template_sidebar\";s:0:\"\";s:18:\"template_sidebar_2\";s:0:\"\";s:14:\"sidebar_sticky\";s:7:\"default\";}}s:9:\"item-2553\";a:11:{s:2:\"ID\";i:2553;s:10:\"post_title\";s:19:\"Search Content 2553\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:67:\"https://avada.studio/wp-content/uploads/2022/04/search-bg-image.png\";s:4:\"true\";s:67:\"https://avada.studio/wp-content/uploads/2022/04/search02-image2.jpg\";a:1:{s:8:\"image_id\";s:9:\"2558|full\";}}s:10:\"post_cards\";a:1:{i:2556;s:4:\"true\";}}s:3:\"url\";s:81:\"https://avada.studio/fusion_tb_section/search-02/?awb-studio-content=true&s=avada\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/04/search-02-screenshot-400x507.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:507;}s:4:\"tags\";a:1:{i:0;s:6:\"search\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/04/search-02-screenshot-800x1015.jpg\";}s:7:\"_fusion\";a:15:{s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:7:\"h1_size\";s:4:\"60px\";s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color5_overwrite\";s:7:\"#018da5\";s:16:\"color7_overwrite\";s:7:\"#11434c\";s:16:\"color8_overwrite\";s:7:\"#002126\";s:16:\"color6_overwrite\";s:7:\"#01778c\";s:16:\"color4_overwrite\";s:7:\"#efa802\";s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:7:\"h4_size\";s:4:\"26px\";}}s:9:\"item-2542\";a:11:{s:2:\"ID\";i:2542;s:10:\"post_title\";s:19:\"Search Content 2542\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2022/04/search-01-header-bg.jpg\";s:4:\"true\";}s:10:\"post_cards\";a:1:{i:2544;s:4:\"true\";}}s:3:\"url\";s:81:\"https://avada.studio/fusion_tb_section/search-01/?awb-studio-content=true&s=avada\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/04/search-01-screenshot-400x530.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:530;}s:4:\"tags\";a:1:{i:0;s:6:\"search\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/04/search-01-screenshot-800x1060.jpg\";}s:7:\"_fusion\";a:15:{s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color8_overwrite\";s:7:\"#010733\";s:16:\"color7_overwrite\";s:7:\"#2a416f\";s:7:\"h1_size\";s:4:\"72px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Hind\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Hind\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";}s:7:\"h4_size\";s:4:\"30px\";s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Hind\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Hind\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Hind\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:16:\"color6_overwrite\";s:7:\"#3f6ab5\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color5_overwrite\";s:7:\"#508be5\";s:16:\"color4_overwrite\";s:7:\"#f9a057\";}}s:9:\"item-2492\";a:11:{s:2:\"ID\";i:2492;s:10:\"post_title\";s:16:\"404 Content 2492\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2022/04/404-03-graphic.png\";a:1:{s:8:\"image_id\";s:9:\"2493|full\";}}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/404-03/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/04/screenshot-404-3-400x247.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:247;}s:4:\"tags\";a:1:{i:0;s:6:\"four04\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/04/screenshot-404-3-800x494.jpg\";}s:7:\"_fusion\";a:27:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#dbf9f2\";s:16:\"color3_overwrite\";s:7:\"#31f3ca\";s:16:\"color4_overwrite\";s:7:\"#25ceaa\";s:16:\"color5_overwrite\";s:7:\"#576eba\";s:16:\"color6_overwrite\";s:7:\"#485b9a\";s:16:\"color7_overwrite\";s:7:\"#39497b\";s:16:\"color8_overwrite\";s:7:\"#1f2741\";s:7:\"h1_size\";s:5:\"110px\";s:7:\"h3_size\";s:4:\"60px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:5:\"110px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:9:\"font-size\";s:4:\"20px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-2336\";a:11:{s:2:\"ID\";i:2336;s:10:\"post_title\";s:16:\"404 Content 2336\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2022/03/404-02-graphic1.png\";a:1:{s:8:\"image_id\";s:9:\"2353|full\";}}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/404-02/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/03/screenshot-404-2-400x194.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:194;}s:4:\"tags\";a:1:{i:0;s:6:\"four04\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/03/screenshot-404-2-800x388.jpg\";}s:7:\"_fusion\";a:31:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#fa9f00\";s:16:\"color5_overwrite\";s:7:\"#6677ff\";s:16:\"color6_overwrite\";s:7:\"#3e54d1\";s:16:\"color7_overwrite\";s:7:\"#23439c\";s:16:\"color8_overwrite\";s:7:\"#0a1154\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:1:\"1\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:14:\"letter-spacing\";s:3:\"0em\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:7:\"h1_size\";s:4:\"72px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"38px\";s:7:\"h4_size\";s:4:\"26px\";s:7:\"h5_size\";s:4:\"20px\";s:7:\"h6_size\";s:4:\"16px\";}}s:9:\"item-2306\";a:11:{s:2:\"ID\";i:2306;s:10:\"post_title\";s:16:\"404 Content 2306\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2022/03/404-01-graphic.png\";a:1:{s:8:\"image_id\";s:9:\"2350|full\";}}}s:3:\"url\";s:70:\"https://avada.studio/fusion_tb_section/404-01/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/03/screenshot-404-1-400x475.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:475;}s:4:\"tags\";a:1:{i:0;s:6:\"four04\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/03/screenshot-404-1-800x950.jpg\";}s:7:\"_fusion\";a:28:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f5f5f5\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#bce8f1\";s:16:\"color5_overwrite\";s:7:\"#ff435e\";s:16:\"color6_overwrite\";s:7:\"#5f5782\";s:16:\"color7_overwrite\";s:7:\"#353a59\";s:16:\"color8_overwrite\";s:7:\"#2b233f\";s:7:\"h1_size\";s:4:\"50px\";s:7:\"h4_size\";s:4:\"30px\";s:7:\"h5_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"-0.03em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Nunito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-1690\";a:11:{s:2:\"ID\";i:1690;s:10:\"post_title\";s:17:\"Post Content 1690\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:91:\"https://avada.theme-fusion.com/psychology/wp-content/uploads/sites/149/2020/10/banner-9.jpg\";s:4:\"true\";}}s:3:\"url\";s:68:\"https://avada.studio/fusion_tb_section/post/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/10/content-10-02-400x349.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:349;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/10/content-10-02-800x699.jpg\";}s:7:\"_fusion\";a:23:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"466\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#002f42\";s:7:\"h1_size\";s:4:\"72px\";s:7:\"h5_size\";s:4:\"20px\";s:7:\"h4_size\";s:4:\"24px\";}}s:8:\"item-952\";a:11:{s:2:\"ID\";i:952;s:10:\"post_title\";s:20:\"Archives Content 952\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-08/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/content-08-400x394.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:394;}s:4:\"tags\";a:1:{i:0;s:8:\"archives\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/content-08-800x788.jpg\";}s:7:\"_fusion\";a:27:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:8:\"archives\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Space Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Space Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Open Sans\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:4:\"1..7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Open Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#191919\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d6d6d6\";s:16:\"color5_overwrite\";s:7:\"#ef3c1a\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color4_overwrite\";s:7:\"#efa81a\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h5_size\";s:4:\"20px\";}}s:8:\"item-948\";a:11:{s:2:\"ID\";i:948;s:10:\"post_title\";s:15:\"404 Content 948\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/373.png\";a:1:{s:8:\"image_id\";s:9:\"2224|full\";}}}s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-06/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/content-06-400x422.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:422;}s:4:\"tags\";a:1:{i:0;s:6:\"four04\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/content-06-800x845.jpg\";}s:7:\"_fusion\";a:27:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:5:\"150px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"35px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#030742\";s:16:\"color7_overwrite\";s:7:\"#2b2e7c\";s:16:\"color4_overwrite\";s:7:\"#d48ffa\";s:16:\"color5_overwrite\";s:7:\"#666aef\";s:16:\"color6_overwrite\";s:7:\"#6048d6\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:7:\"h1_size\";s:5:\"150px\";s:7:\"h3_size\";s:4:\"35px\";s:7:\"h4_size\";s:4:\"24px\";}}s:8:\"item-945\";a:11:{s:2:\"ID\";i:945;s:10:\"post_title\";s:18:\"Search Content 945\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/127.jpg\";s:4:\"true\";}s:10:\"post_cards\";a:1:{i:796;s:4:\"true\";}}s:3:\"url\";s:82:\"https://avada.studio/fusion_tb_section/content-09/?awb-studio-content=true&s=avada\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/search-results-layout-content-400x480.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:480;}s:4:\"tags\";a:1:{i:0;s:6:\"search\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/search-results-layout-content-800x960.jpg\";}s:7:\"_fusion\";a:20:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:6:\"search\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Oxygen\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Oxygen\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"1px\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:7:\"h1_size\";s:4:\"70px\";}}s:8:\"item-932\";a:11:{s:2:\"ID\";i:932;s:10:\"post_title\";s:16:\"Post Content 932\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:1491;b:1;}s:10:\"post_cards\";a:1:{i:795;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-05/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/09/content-05-02-400x971.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:971;}s:4:\"tags\";a:1:{i:0;s:11:\"single-post\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/09/content-05-02-800x1941.jpg\";}s:7:\"_fusion\";a:33:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eaeaea\";s:16:\"color3_overwrite\";s:7:\"#d3d3d3\";s:16:\"color4_overwrite\";s:7:\"#4dc6a4\";s:16:\"color5_overwrite\";s:7:\"#557aa8\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:7:\"h2_size\";s:4:\"48px\";s:7:\"h3_size\";s:4:\"36px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"0px\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"606\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:16:\"template_sidebar\";s:0:\"\";s:18:\"template_sidebar_2\";s:0:\"\";s:14:\"sidebar_sticky\";s:7:\"default\";}}s:8:\"item-909\";a:11:{s:2:\"ID\";i:909;s:10:\"post_title\";s:21:\"Portfolio Content 909\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/127.jpg\";a:1:{s:8:\"image_id\";s:8:\"913|full\";}}}s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-03/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/content-03-400x550.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:550;}s:4:\"tags\";a:1:{i:0;s:16:\"single-portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/content-03-800x1100.jpg\";}s:7:\"_fusion\";a:27:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:15:\"avada_portfolio\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:3:\"910\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Koh Santepheap\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"96px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Koh Santepheap\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#0c0c0c\";s:16:\"color4_overwrite\";s:7:\"#7595ff\";s:16:\"color5_overwrite\";s:7:\"#f45a33\";s:16:\"color3_overwrite\";s:7:\"#cccccc\";s:16:\"color7_overwrite\";s:7:\"#3d3d3d\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:7:\"h1_size\";s:4:\"96px\";s:7:\"h5_size\";s:4:\"20px\";}}s:8:\"item-898\";a:11:{s:2:\"ID\";i:898;s:10:\"post_title\";s:21:\"Portfolio Content 898\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:10:\"post_cards\";a:1:{i:697;s:4:\"true\";}}s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-07/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:92:\"https://avada.studio/wp-content/uploads/2021/09/abstract-portfolio-content-basic-400x680.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:680;}s:4:\"tags\";a:1:{i:0;s:16:\"single-portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2021/09/abstract-portfolio-content-basic-800x1360.jpg\";}s:7:\"_fusion\";a:28:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:15:\"avada_portfolio\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:3:\"896\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Libre Baskerville\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"2px\";}s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color5_overwrite\";s:7:\"#e56d54\";s:16:\"color7_overwrite\";s:7:\"#3d3d3d\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color4_overwrite\";s:7:\"#00d3b0\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h3_size\";s:4:\"38px\";s:7:\"h4_size\";s:4:\"24px\";}}s:8:\"item-891\";a:11:{s:2:\"ID\";i:891;s:10:\"post_title\";s:19:\"Product Content 891\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-02/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/content-02-400x330.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:330;}s:4:\"tags\";a:2:{i:0;s:14:\"single-product\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/content-02-800x659.jpg\";}s:7:\"_fusion\";a:27:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:7:\"product\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:3:\"890\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#12162d\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color7_overwrite\";s:7:\"#243b7f\";s:16:\"color4_overwrite\";s:7:\"#efa81a\";s:16:\"color5_overwrite\";s:7:\"#ef3c1a\";s:16:\"color6_overwrite\";s:7:\"#4f59e2\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h4_size\";s:4:\"24px\";}}s:8:\"item-876\";a:11:{s:2:\"ID\";i:876;s:10:\"post_title\";s:19:\"Product Content 876\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-01/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2021/09/elegant-product-postcard-03-400x767.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:767;}s:4:\"tags\";a:2:{i:0;s:14:\"single-product\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/09/elegant-product-postcard-03-800x1534.jpg\";}s:7:\"_fusion\";a:28:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:7:\"product\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:3:\"874\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"DM Serif Display\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:9:\"uppercase\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:16:\"color4_overwrite\";s:7:\"#e2a258\";s:16:\"color5_overwrite\";s:7:\"#5046e4\";s:16:\"color2_overwrite\";s:7:\"#f4f4f4\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color3_overwrite\";s:7:\"#d6d6d6\";s:7:\"h1_size\";s:4:\"70px\";s:7:\"h4_size\";s:4:\"24px\";s:7:\"h3_size\";s:4:\"32px\";}}s:8:\"item-858\";a:11:{s:2:\"ID\";i:858;s:10:\"post_title\";s:19:\"Product Content 858\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:94:\"https://avada.theme-fusion.com/retail/wp-content/uploads/sites/113/2021/02/banner-2-scaled.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:864;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:74:\"https://avada.studio/fusion_tb_section/content-04/?awb-studio-content=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/09/content-04-02-400x461.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:461;}s:4:\"tags\";a:2:{i:0;s:14:\"single-product\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/09/content-04-02-800x922.jpg\";}s:7:\"_fusion\";a:28:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#faf6f5\";s:16:\"color3_overwrite\";s:7:\"#eadede\";s:16:\"color4_overwrite\";s:7:\"#51cc63\";s:16:\"color5_overwrite\";s:7:\"#a046af\";s:16:\"color6_overwrite\";s:7:\"#606882\";s:16:\"color7_overwrite\";s:7:\"#424f62\";s:16:\"color8_overwrite\";s:7:\"#10284a\";s:7:\"h2_size\";s:4:\"48px\";s:7:\"h4_size\";s:4:\"30px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Fira Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:7:\"product\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";a:1:{i:0;s:3:\"856\";}s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:17:\"content_bg_repeat\";s:7:\"default\";s:18:\"preview_off_canvas\";s:0:\"\";}}}s:8:\"elements\";a:82:{s:9:\"item-6160\";a:10:{s:2:\"ID\";i:6160;s:10:\"post_title\";s:38:\"Promotional Nested Column Element 6160\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:63:\"https://avada.studio/wp-content/uploads/2026/03/column-bg-1.png\";a:1:{s:19:\"background_image_id\";s:9:\"6161|full\";}s:65:\"https://avada.studio/wp-content/uploads/2026/03/watch-deal-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6163|full\";}}}s:3:\"url\";s:62:\"https://avada.studio/fusion_element/promotional-nested-column/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2026/03/nested-column-ss1-400x221.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:221;}s:4:\"tags\";a:1:{i:0;s:14:\"nested-columns\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2026/03/nested-column-ss1-800x442.jpg\";}}s:9:\"item-5909\";a:10:{s:2:\"ID\";i:5909;s:10:\"post_title\";s:22:\"Text Path Element 5909\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:48:\"https://avada.studio/fusion_element/text-path-5/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2025/09/textpath-5-ss1-400x396.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:396;}s:4:\"tags\";a:1:{i:0;s:9:\"text-path\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2025/09/textpath-5-ss1.jpg\";}}s:9:\"item-5905\";a:10:{s:2:\"ID\";i:5905;s:10:\"post_title\";s:22:\"Text Path Element 5905\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:48:\"https://avada.studio/fusion_element/text-path-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2025/09/textpath-2-ss-400x310.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:310;}s:4:\"tags\";a:1:{i:0;s:9:\"text-path\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:65:\"https://avada.studio/wp-content/uploads/2025/09/textpath-2-ss.jpg\";}}s:9:\"item-5900\";a:10:{s:2:\"ID\";i:5900;s:10:\"post_title\";s:22:\"Text Path Element 5900\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_element/text-path/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2025/09/textpath-ss1-400x401.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:401;}s:4:\"tags\";a:1:{i:0;s:9:\"text-path\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2025/09/textpath-ss1.jpg\";}}s:9:\"item-5896\";a:10:{s:2:\"ID\";i:5896;s:10:\"post_title\";s:18:\"Title Element 5896\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:44:\"https://avada.studio/fusion_element/title-5/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss5-400x82.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:82;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss5-800x165.jpg\";}}s:9:\"item-5893\";a:10:{s:2:\"ID\";i:5893;s:10:\"post_title\";s:18:\"Title Element 5893\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:44:\"https://avada.studio/fusion_element/title-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss4-400x147.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:147;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss4-800x294.jpg\";}}s:9:\"item-5890\";a:10:{s:2:\"ID\";i:5890;s:10:\"post_title\";s:18:\"Title Element 5890\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:44:\"https://avada.studio/fusion_element/title-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss3-1-400x92.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:92;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss3-1-800x184.jpg\";}}s:9:\"item-5888\";a:10:{s:2:\"ID\";i:5888;s:10:\"post_title\";s:18:\"Title Element 5888\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:44:\"https://avada.studio/fusion_element/title-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss2-400x146.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:146;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss2-800x292.jpg\";}}s:9:\"item-5886\";a:10:{s:2:\"ID\";i:5886;s:10:\"post_title\";s:18:\"Title Element 5886\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:42:\"https://avada.studio/fusion_element/title/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss1-400x89.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:89;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/09/title-element-ss1-800x178.jpg\";}}s:9:\"item-5824\";a:10:{s:2:\"ID\";i:5824;s:10:\"post_title\";s:30:\"Post Card Marquee Element 5824\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:54:\"https://avada.studio/fusion_element/post-card-marquee/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2025/04/post-card-marquee-ss1-400x166.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:166;}s:4:\"tags\";a:1:{i:0;s:10:\"post-cards\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2025/04/post-card-marquee-ss1-800x332.jpg\";}}s:9:\"item-5817\";a:10:{s:2:\"ID\";i:5817;s:10:\"post_title\";s:27:\"Contact Button Element 5817\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:51:\"https://avada.studio/fusion_element/contact-button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2025/04/button-ss-1-400x183.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:183;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2025/04/button-ss-1.jpg\";}}s:9:\"item-5798\";a:10:{s:2:\"ID\";i:5798;s:10:\"post_title\";s:35:\"Fashion Image Carousel Element 5798\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:7:{s:63:\"https://avada.studio/wp-content/uploads/2025/04/fashion-006.jpg\";a:1:{s:8:\"image_id\";s:4:\"5811\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/fashion-002.jpg\";a:1:{s:8:\"image_id\";s:4:\"5813\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/fashion-003.jpg\";a:1:{s:8:\"image_id\";s:4:\"5814\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/fashion-004.jpg\";a:1:{s:8:\"image_id\";s:4:\"5809\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/fashion-007.jpg\";a:1:{s:8:\"image_id\";s:4:\"5815\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/fashion-005.jpg\";a:1:{s:8:\"image_id\";s:4:\"5810\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/fashion-001.jpg\";a:1:{s:8:\"image_id\";s:4:\"5812\";}}}s:3:\"url\";s:59:\"https://avada.studio/fusion_element/fashion-image-carousel/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2025/04/image-carousel-ss03-400x287.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:287;}s:4:\"tags\";a:1:{i:0;s:14:\"image-carousel\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2025/04/image-carousel-ss03-800x573.jpg\";}}s:9:\"item-5790\";a:10:{s:2:\"ID\";i:5790;s:10:\"post_title\";s:36:\"WildLife Image Carousel Element 5790\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:7:{s:63:\"https://avada.studio/wp-content/uploads/2025/04/wildlife-03.jpg\";a:1:{s:8:\"image_id\";s:4:\"5793\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/wildlife-07.jpg\";a:1:{s:8:\"image_id\";s:9:\"5819|full\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/wildlife-04.jpg\";a:1:{s:8:\"image_id\";s:4:\"5794\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/wildlife-05.jpg\";a:1:{s:8:\"image_id\";s:4:\"5795\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/wildlife-06.jpg\";a:1:{s:8:\"image_id\";s:9:\"5818|full\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/wildlife-02.jpg\";a:1:{s:8:\"image_id\";s:4:\"5792\";}s:63:\"https://avada.studio/wp-content/uploads/2025/04/wildlife-01.jpg\";a:1:{s:8:\"image_id\";s:4:\"5791\";}}}s:3:\"url\";s:60:\"https://avada.studio/fusion_element/wildlife-image-carousel/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2025/04/image-carousel-coverflow-ss2-400x187.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:187;}s:4:\"tags\";a:1:{i:0;s:14:\"image-carousel\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2025/04/image-carousel-coverflow-ss2-800x374.jpg\";}}s:9:\"item-5687\";a:10:{s:2:\"ID\";i:5687;s:10:\"post_title\";s:19:\"Toggle Element 5687\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/toggle-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2025/02/toggle-element-ss1-400x242.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:242;}s:4:\"tags\";a:1:{i:0;s:7:\"toggles\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2025/02/toggle-element-ss1-800x485.jpg\";}}s:9:\"item-5408\";a:10:{s:2:\"ID\";i:5408;s:10:\"post_title\";s:30:\"Table Of Contents Element 5408\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:56:\"https://avada.studio/fusion_element/table-of-contents-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2024/09/table-of-contents-01-400x378.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:378;}s:4:\"tags\";a:1:{i:0;s:17:\"table-of-contents\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2024/09/table-of-contents-01.jpg\";}}s:9:\"item-5383\";a:10:{s:2:\"ID\";i:5383;s:10:\"post_title\";s:25:\"Circles Info Element 5383\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:65:\"https://avada.studio/wp-content/uploads/2024/09/circle-info-3.jpg\";s:4:\"true\";s:65:\"https://avada.studio/wp-content/uploads/2024/09/circle-info-5.jpg\";s:4:\"true\";s:65:\"https://avada.studio/wp-content/uploads/2024/09/circle-info-4.jpg\";s:4:\"true\";s:65:\"https://avada.studio/wp-content/uploads/2024/09/circle-info-1.jpg\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/circles-info/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2024/09/circle-info-ss01-400x383.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:383;}s:4:\"tags\";a:1:{i:0;s:12:\"circles-info\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2024/09/circle-info-ss01.jpg\";}}s:9:\"item-5359\";a:10:{s:2:\"ID\";i:5359;s:10:\"post_title\";s:27:\"Image Hotspots Element 5359\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:76:\"https://avada.studio/wp-content/uploads/2024/09/electric-bike-features-4.jpg\";a:1:{s:8:\"image_id\";s:9:\"5364|full\";}}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/image-hotspots-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/09/image-hotspot-ss2-400x236.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:236;}s:4:\"tags\";a:1:{i:0;s:14:\"image-hotspots\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/09/image-hotspot-ss2-800x473.jpg\";}}s:9:\"item-4958\";a:10:{s:2:\"ID\";i:4958;s:10:\"post_title\";s:21:\"Business Element 4958\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:47:\"https://avada.studio/fusion_element/business-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2024/02/business-content-box-eqhigh-4-400x133.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:133;}s:4:\"tags\";a:1:{i:0;s:13:\"content-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2024/02/business-content-box-eqhigh-4-800x266.jpg\";}}s:9:\"item-4757\";a:10:{s:2:\"ID\";i:4757;s:10:\"post_title\";s:25:\"Testimonials Element 4757\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:58:\"https://avada.studio/wp-content/uploads/2023/11/avatar.jpg\";a:1:{s:8:\"image_id\";s:9:\"4758|full\";}s:60:\"https://avada.studio/wp-content/uploads/2023/11/avatar-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4759|full\";}}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/testimonials-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/11/testimonial-ss-400x92.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:92;}s:4:\"tags\";a:1:{i:0;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/11/testimonial-ss-800x183.jpg\";}}s:9:\"item-4743\";a:10:{s:2:\"ID\";i:4743;s:10:\"post_title\";s:25:\"Testimonials Element 4743\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:58:\"https://avada.studio/wp-content/uploads/2023/11/user-5.jpg\";a:1:{s:8:\"image_id\";s:9:\"4750|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/11/user-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4748|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/11/user-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"4749|full\";}}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/testimonials-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/11/testimonials-ss-1-400x204.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:204;}s:4:\"tags\";a:1:{i:0;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/11/testimonials-ss-1-800x408.jpg\";}}s:9:\"item-4739\";a:10:{s:2:\"ID\";i:4739;s:10:\"post_title\";s:26:\"Marquee Title Element 4739\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/marquee-title/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/11/marquee-title-ss-2-400x131.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:131;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/11/marquee-title-ss-2-800x263.jpg\";}}s:9:\"item-4183\";a:10:{s:2:\"ID\";i:4183;s:10:\"post_title\";s:26:\"Content Boxes Element 4183\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/content-boxes/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/06/content-box-ss-400x111.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:111;}s:4:\"tags\";a:1:{i:0;s:13:\"content-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/06/content-box-ss-800x222.jpg\";}}s:9:\"item-4157\";a:10:{s:2:\"ID\";i:4157;s:10:\"post_title\";s:26:\"Outline Title Element 4157\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/outline-title/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/06/outline-ss-400x126.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:126;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:62:\"https://avada.studio/wp-content/uploads/2023/06/outline-ss.jpg\";}}s:9:\"item-4112\";a:10:{s:2:\"ID\";i:4112;s:10:\"post_title\";s:26:\"Vertical Menu Element 4112\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"menus\";a:1:{s:20:\"business-header-menu\";s:4:\"true\";}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/vertical-menu/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/05/vertical-menu-ss-1-400x294.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:294;}s:4:\"tags\";a:1:{i:0;s:4:\"menu\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/05/vertical-menu-ss-1-800x587.jpg\";}}s:9:\"item-4104\";a:10:{s:2:\"ID\";i:4104;s:10:\"post_title\";s:33:\"Features Content Box Element 4104\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:57:\"https://avada.studio/fusion_element/features-content-box/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2023/05/features-content-boxes-ss-400x161.png\";s:5:\"width\";i:400;s:6:\"height\";i:161;}s:4:\"tags\";a:1:{i:0;s:13:\"content-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2023/05/features-content-boxes-ss-800x322.png\";}}s:9:\"item-4093\";a:10:{s:2:\"ID\";i:4093;s:10:\"post_title\";s:36:\"Testimonials Flip Boxes Element 4093\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:59:\"https://avada.studio/wp-content/uploads/2023/05/user-04.jpg\";s:4:\"true\";s:66:\"https://avada.studio/wp-content/uploads/2023/05/flipboxes-bg-3.png\";s:4:\"true\";s:59:\"https://avada.studio/wp-content/uploads/2023/05/user-02.jpg\";s:4:\"true\";s:59:\"https://avada.studio/wp-content/uploads/2023/05/user-03.jpg\";s:4:\"true\";}}s:3:\"url\";s:60:\"https://avada.studio/fusion_element/testimonials-flip-boxes/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2023/05/testimonials-flip-boxes-ss-400x164.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:164;}s:4:\"tags\";a:2:{i:0;s:10:\"flip-boxes\";i:1;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2023/05/testimonials-flip-boxes-ss-800x328.jpg\";}}s:9:\"item-4054\";a:10:{s:2:\"ID\";i:4054;s:10:\"post_title\";s:24:\"Polygon Map Element 4054\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/area-map/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/04/Screenshot_651-400x212.png\";s:5:\"width\";i:400;s:6:\"height\";i:212;}s:4:\"tags\";a:1:{i:0;s:13:\"openstreetmap\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/04/Screenshot_651-800x425.png\";}}s:9:\"item-3966\";a:10:{s:2:\"ID\";i:3966;s:10:\"post_title\";s:25:\"Image Scroll Element 3966\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:74:\"https://avada.studio/wp-content/uploads/2023/03/image-scrolling-scaled.jpg\";a:1:{s:8:\"image_id\";s:9:\"3977|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/image-scroll/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2023/03/image-scrolling-ss-2-400x435.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:435;}s:4:\"tags\";a:1:{i:0;s:5:\"image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/03/image-scrolling-ss-2.jpg\";}}s:9:\"item-3962\";a:10:{s:2:\"ID\";i:3962;s:10:\"post_title\";s:26:\"Image Magnify Element 3962\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2023/02/info-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"3875|full\";}}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/image-magnify/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/03/image-magnify-ss-400x453.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:453;}s:4:\"tags\";a:1:{i:0;s:5:\"image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/03/image-magnify-ss.jpg\";}}s:9:\"item-3968\";a:10:{s:2:\"ID\";i:3968;s:10:\"post_title\";s:26:\"OpenStreetMap Element 3968\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/openstreetmap/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2023/03/osm-ss-400x159.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:159;}s:4:\"tags\";a:1:{i:0;s:13:\"openstreetmap\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2023/03/osm-ss-800x318.jpg\";}}s:9:\"item-3917\";a:10:{s:2:\"ID\";i:3917;s:10:\"post_title\";s:30:\"Table Of Contents Element 3917\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:54:\"https://avada.studio/fusion_element/table-of-contents/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/02/table-of-contents-400x331.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:331;}s:4:\"tags\";a:1:{i:0;s:17:\"table-of-contents\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2023/02/table-of-contents.jpg\";}}s:9:\"item-3903\";a:10:{s:2:\"ID\";i:3903;s:10:\"post_title\";s:25:\"Progress Bar Element 3903\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:51:\"https://avada.studio/fusion_element/progress-bar-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/02/progress-bar-ss-400x90.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:90;}s:4:\"tags\";a:1:{i:0;s:12:\"progress-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2023/02/progress-bar-ss.jpg\";}}s:9:\"item-3889\";a:10:{s:2:\"ID\";i:3889;s:10:\"post_title\";s:19:\"Button Element 3889\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/button-5/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/02/link-button-400x53.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:53;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2023/02/link-button-800x107.jpg\";}}s:9:\"item-3775\";a:10:{s:2:\"ID\";i:3775;s:10:\"post_title\";s:19:\"Button Element 3775\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/button-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/12/button-ss-1.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:155;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/12/button-ss-1.jpg\";}}s:9:\"item-3568\";a:10:{s:2:\"ID\";i:3568;s:10:\"post_title\";s:24:\"Video Games Element 3568\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:10:\"post_cards\";a:1:{i:3589;s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/video-games/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/10/video-games-ss-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;}s:4:\"tags\";a:1:{i:0;s:10:\"post-cards\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/10/video-games-ss-800x401.jpg\";}}s:9:\"item-3560\";a:10:{s:2:\"ID\";i:3560;s:10:\"post_title\";s:21:\"Features Element 3560\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:47:\"https://avada.studio/fusion_element/features-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/10/feature-ss-400x401.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:401;}s:4:\"tags\";a:1:{i:0;s:12:\"circles-info\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:62:\"https://avada.studio/wp-content/uploads/2022/10/feature-ss.jpg\";}}s:9:\"item-3766\";a:10:{s:2:\"ID\";i:3766;s:10:\"post_title\";s:19:\"Button Element 3766\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/button-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2022/12/button-ss.jpg\";s:5:\"width\";i:365;s:6:\"height\";i:170;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2022/12/button-ss.jpg\";}}s:9:\"item-3757\";a:10:{s:2:\"ID\";i:3757;s:10:\"post_title\";s:19:\"Button Element 3757\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:43:\"https://avada.studio/fusion_element/button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/12/button-hover-animation-og-400x72.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:72;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/12/button-hover-animation-og-800x144.jpg\";}}s:9:\"item-3613\";a:10:{s:2:\"ID\";i:3613;s:10:\"post_title\";s:31:\"Numbered Checklist Element 3613\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:55:\"https://avada.studio/fusion_element/numbered-checklist/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/11/checklist-ss-400x146.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:146;}s:4:\"tags\";a:1:{i:0;s:9:\"checklist\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/11/checklist-ss-800x292.jpg\";}}s:9:\"item-3764\";a:10:{s:2:\"ID\";i:3764;s:10:\"post_title\";s:19:\"Button Element 3764\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/button-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/12/Screenshot_467-400x153.png\";s:5:\"width\";i:400;s:6:\"height\";i:153;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/12/Screenshot_467.png\";}}s:9:\"item-3751\";a:10:{s:2:\"ID\";i:3751;s:10:\"post_title\";s:17:\"Menu Element 3751\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"menus\";a:1:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";}}s:3:\"url\";s:41:\"https://avada.studio/fusion_element/menu/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/12/menu-light-red-rounded-400x72.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:72;}s:4:\"tags\";a:1:{i:0;s:4:\"menu\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/12/menu-light-red-rounded-800x144.jpg\";}}s:9:\"item-3735\";a:10:{s:2:\"ID\";i:3735;s:10:\"post_title\";s:32:\"Team Image Carousel Element 3735\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:6:{s:66:\"https://avada.studio/wp-content/uploads/2022/12/team-member-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"3743|full\";}s:66:\"https://avada.studio/wp-content/uploads/2022/12/team-member-04.jpg\";a:1:{s:8:\"image_id\";s:9:\"3746|full\";}s:66:\"https://avada.studio/wp-content/uploads/2022/12/team-member-02.jpg\";a:1:{s:8:\"image_id\";s:9:\"3744|full\";}s:66:\"https://avada.studio/wp-content/uploads/2023/06/team-member-07.jpg\";a:1:{s:8:\"image_id\";s:9:\"4302|full\";}s:66:\"https://avada.studio/wp-content/uploads/2022/12/team-member-05.jpg\";a:1:{s:8:\"image_id\";s:9:\"3747|full\";}s:66:\"https://avada.studio/wp-content/uploads/2022/12/team-member-06.jpg\";a:1:{s:8:\"image_id\";s:9:\"3742|full\";}}}s:3:\"url\";s:56:\"https://avada.studio/fusion_element/team-image-carousel/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/12/team-image-carousel-ss-2-400x154.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:154;}s:4:\"tags\";a:1:{i:0;s:14:\"image-carousel\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/12/team-image-carousel-ss-2-800x307.jpg\";}}s:9:\"item-3427\";a:10:{s:2:\"ID\";i:3427;s:10:\"post_title\";s:34:\"Marketing Content Box Element 3427\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:58:\"https://avada.studio/fusion_element/marketing-content-box/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/10/marketing-content-box-ss-400x117.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:117;}s:4:\"tags\";a:1:{i:0;s:13:\"content-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/10/marketing-content-box-ss-800x234.jpg\";}}s:9:\"item-3375\";a:10:{s:2:\"ID\";i:3375;s:10:\"post_title\";s:33:\"Services Content Box Element 3375\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:57:\"https://avada.studio/fusion_element/services-content-box/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/10/services-contentbox-ss-400x118.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:118;}s:4:\"tags\";a:1:{i:0;s:13:\"content-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/10/services-contentbox-ss-800x235.jpg\";}}s:9:\"item-3360\";a:10:{s:2:\"ID\";i:3360;s:10:\"post_title\";s:20:\"Gallery Element 3360\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/476.jpg\";a:1:{s:8:\"image_id\";s:9:\"2985|full\";}s:62:\"https://avada.studio/wp-content/uploads/2022/10/metal-work.jpg\";a:1:{s:8:\"image_id\";s:9:\"3361|full\";}s:68:\"https://avada.studio/wp-content/uploads/2022/10/general-painting.jpg\";a:1:{s:8:\"image_id\";s:9:\"3362|full\";}}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/gallery-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/10/gallery-400x119.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:119;}s:4:\"tags\";a:1:{i:0;s:7:\"gallery\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/10/gallery-800x238.jpg\";}}s:9:\"item-3357\";a:10:{s:2:\"ID\";i:3357;s:10:\"post_title\";s:36:\"Services Image Carousel Element 3357\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/276.jpg\";a:1:{s:8:\"image_id\";s:4:\"1567\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/277.jpg\";a:1:{s:8:\"image_id\";s:4:\"1568\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/278.jpg\";a:1:{s:8:\"image_id\";s:4:\"1569\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/279.jpg\";a:1:{s:8:\"image_id\";s:4:\"1570\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:60:\"https://avada.studio/fusion_element/services-image-carousel/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2022/10/services-marketing-image-carousel-400x115.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:115;}s:4:\"tags\";a:1:{i:0;s:14:\"image-carousel\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2022/10/services-marketing-image-carousel-800x229.jpg\";}}s:9:\"item-3342\";a:10:{s:2:\"ID\";i:3342;s:10:\"post_title\";s:25:\"Progress Bar Element 3342\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_element/progress-bar/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/09/progressbar-ss-400x49.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:49;}s:4:\"tags\";a:1:{i:0;s:12:\"progress-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/09/progressbar-ss-800x99.jpg\";}}s:9:\"item-3338\";a:10:{s:2:\"ID\";i:3338;s:10:\"post_title\";s:22:\"Checklist Element 3338\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_element/checklist/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/09/checklist-400x124.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:124;}s:4:\"tags\";a:1:{i:0;s:9:\"checklist\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/09/checklist-800x248.jpg\";}}s:9:\"item-3286\";a:10:{s:2:\"ID\";i:3286;s:10:\"post_title\";s:26:\"Vertical Tabs Element 3286\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/vertical-tabs/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/09/vertical-tabs-ss-400x278.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:278;}s:4:\"tags\";a:1:{i:0;s:4:\"tabs\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/09/vertical-tabs-ss-800x557.jpg\";}}s:9:\"item-2988\";a:10:{s:2:\"ID\";i:2988;s:10:\"post_title\";s:20:\"Gallery Element 2988\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:8:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/351.jpg\";a:1:{s:8:\"image_id\";s:4:\"1882\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/362.jpg\";a:1:{s:8:\"image_id\";s:4:\"1902\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/360.jpg\";a:1:{s:8:\"image_id\";s:4:\"1900\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/358.jpg\";a:1:{s:8:\"image_id\";s:4:\"1893\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/359.jpg\";a:1:{s:8:\"image_id\";s:4:\"1892\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/347.jpg\";a:1:{s:8:\"image_id\";s:4:\"1878\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/349.jpg\";a:1:{s:8:\"image_id\";s:4:\"1880\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/350.jpg\";a:1:{s:8:\"image_id\";s:4:\"1881\";}}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/gallery-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/07/gallery-400x143.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:143;}s:4:\"tags\";a:1:{i:0;s:7:\"gallery\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/07/gallery-800x286.jpg\";}}s:9:\"item-2984\";a:10:{s:2:\"ID\";i:2984;s:10:\"post_title\";s:29:\"Before and After Element 2984\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/475.jpg\";a:1:{s:15:\"before_image_id\";s:9:\"2986|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/07/476.jpg\";a:1:{s:14:\"after_image_id\";s:9:\"2985|full\";}}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/before-and-after/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/07/before-after-400x337.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:337;}s:4:\"tags\";a:1:{i:0;s:18:\"image-before-after\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/07/before-after-800x674.jpg\";}}s:9:\"item-2972\";a:10:{s:2:\"ID\";i:2972;s:10:\"post_title\";s:17:\"Tabs Element 2972\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:41:\"https://avada.studio/fusion_element/tabs/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2022/07/tabs-400x186.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:186;}s:4:\"tags\";a:1:{i:0;s:4:\"tabs\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2022/07/tabs-800x372.jpg\";}}s:9:\"item-2117\";a:10:{s:2:\"ID\";i:2117;s:10:\"post_title\";s:25:\"Social Links Element 2117\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_element/social-links/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2021/12/social-2-400x136.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:136;}s:4:\"tags\";a:1:{i:0;s:12:\"social-links\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:60:\"https://avada.studio/wp-content/uploads/2021/12/social-2.jpg\";}}s:9:\"item-2121\";a:10:{s:2:\"ID\";i:2121;s:10:\"post_title\";s:19:\"Toggle Element 2121\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:43:\"https://avada.studio/fusion_element/toggle/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2021/12/toggles-400x170.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:170;}s:4:\"tags\";a:1:{i:0;s:7:\"toggles\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2021/12/toggles-800x341.jpg\";}}s:9:\"item-2110\";a:10:{s:2:\"ID\";i:2110;s:10:\"post_title\";s:22:\"Tag Cloud Element 2110\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_element/tag-cloud/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2021/12/tag-400x147.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:147;}s:4:\"tags\";a:1:{i:0;s:9:\"tag-cloud\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2021/12/tag-800x293.jpg\";}}s:9:\"item-1847\";a:10:{s:2:\"ID\";i:1847;s:10:\"post_title\";s:33:\"Cyber Week Countdown Element 1847\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:65:\"https://avada.studio/wp-content/uploads/2021/11/background-26.png\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_element/cyber-week-countdown/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/10/cyberweek-countdown-01-400x83.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:83;}s:4:\"tags\";a:1:{i:0;s:9:\"countdown\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/10/cyberweek-countdown-01-800x166.jpg\";}}s:9:\"item-1840\";a:10:{s:2:\"ID\";i:1840;s:10:\"post_title\";s:35:\"Countdown Black Friday Element 1840\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:65:\"https://avada.studio/wp-content/uploads/2021/11/background-20.png\";s:4:\"true\";}}s:3:\"url\";s:59:\"https://avada.studio/fusion_element/countdown-black-friday/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/10/blackfriday-countdown-01-400x112.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:112;}s:4:\"tags\";a:1:{i:0;s:9:\"countdown\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/10/blackfriday-countdown-01-800x223.jpg\";}}s:9:\"item-1710\";a:10:{s:2:\"ID\";i:1710;s:10:\"post_title\";s:30:\"Vertical Timeline Element 1710\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:59:\"https://avada.studio/fusion_element/timeline-content-boxes/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2021/10/timeline-content-boxes-vertical-400x252.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:252;}s:4:\"tags\";a:1:{i:0;s:13:\"content-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2021/10/timeline-content-boxes-vertical-800x504.jpg\";}}s:9:\"item-1709\";a:10:{s:2:\"ID\";i:1709;s:10:\"post_title\";s:31:\"Features Checklist Element 1709\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:54:\"https://avada.studio/fusion_element/checklist-element/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2021/10/checklist-element-orange-features-400x151.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:151;}s:4:\"tags\";a:1:{i:0;s:9:\"checklist\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2021/10/checklist-element-orange-features-800x302.jpg\";}}s:9:\"item-1660\";a:10:{s:2:\"ID\";i:1660;s:10:\"post_title\";s:31:\"Colorful 3D Button Element 1660\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:55:\"https://avada.studio/fusion_element/colorful-3d-button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/10/3d-button-yellow-shape-400x72.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:72;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/10/3d-button-yellow-shape-800x144.jpg\";}}s:9:\"item-1658\";a:10:{s:2:\"ID\";i:1658;s:10:\"post_title\";s:30:\"Large Text Button Element 1658\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:54:\"https://avada.studio/fusion_element/large-text-button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/10/request-text-only-button-400x92.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:92;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/10/request-text-only-button-800x183.jpg\";}}s:9:\"item-1657\";a:10:{s:2:\"ID\";i:1657;s:10:\"post_title\";s:25:\"Social Icons Element 1657\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:55:\"https://avada.studio/fusion_element/social-icons-clean/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/10/yellow-social-icons-clean-400x72.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:72;}s:4:\"tags\";a:1:{i:0;s:12:\"social-links\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/10/yellow-social-icons-clean-800x144.jpg\";}}s:9:\"item-1655\";a:10:{s:2:\"ID\";i:1655;s:10:\"post_title\";s:28:\"Dummy Paragraph Element 1655\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:52:\"https://avada.studio/fusion_element/dummy-paragraph/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/10/text-inline-columns-body-400x144.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:144;}s:4:\"tags\";a:1:{i:0;s:10:\"text-block\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/10/text-inline-columns-body-800x287.jpg\";}}s:9:\"item-1654\";a:10:{s:2:\"ID\";i:1654;s:10:\"post_title\";s:37:\"Decorator Image Carousel Element 1654\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/237.jpg\";a:1:{s:8:\"image_id\";s:4:\"1470\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/238.jpg\";a:1:{s:8:\"image_id\";s:4:\"1471\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/239.jpg\";a:1:{s:8:\"image_id\";s:4:\"1472\";}}}s:3:\"url\";s:54:\"https://avada.studio/fusion_element/decorator-gallery/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2021/10/basic-purple-counter-with-icons-1-400x162.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:162;}s:4:\"tags\";a:1:{i:0;s:14:\"image-carousel\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2021/10/basic-purple-counter-with-icons-1-800x323.jpg\";}}s:9:\"item-1653\";a:10:{s:2:\"ID\";i:1653;s:10:\"post_title\";s:29:\"Menu Boxed Items Element 1653\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/menu-boxed-items/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/10/menu-boxed-dark-blue-400x72.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:72;}s:4:\"tags\";a:1:{i:0;s:4:\"menu\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/10/menu-boxed-dark-blue-800x144.jpg\";}}s:9:\"item-1647\";a:10:{s:2:\"ID\";i:1647;s:10:\"post_title\";s:29:\"Title Underlined Element 1647\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:53:\"https://avada.studio/fusion_element/title-underlined/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/10/title-underlined-orange-400x157.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:157;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/10/title-underlined-orange-800x314.jpg\";}}s:9:\"item-1646\";a:10:{s:2:\"ID\";i:1646;s:10:\"post_title\";s:31:\"Square Shop Button Element 1646\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:55:\"https://avada.studio/fusion_element/square-shop-button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/10/shop-now-square-blue-400x74.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:74;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/10/shop-now-square-blue-800x147.jpg\";}}s:9:\"item-1319\";a:10:{s:2:\"ID\";i:1319;s:10:\"post_title\";s:22:\"3D Button Element 1319\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_element/3d-button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/09/3d-button-shape-400x67.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:67;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/3d-button-shape-800x134.jpg\";}}s:9:\"item-1262\";a:10:{s:2:\"ID\";i:1262;s:10:\"post_title\";s:28:\"Circular Button Element 1262\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:52:\"https://avada.studio/fusion_element/circular-button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/09/circular-button-400x53.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:53;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/circular-button-800x107.jpg\";}}s:8:\"item-962\";a:10:{s:2:\"ID\";i:962;s:10:\"post_title\";s:26:\"Nested Columns Element 962\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:53:\"https://avada.studio/wp-content/uploads/2021/08/5.jpg\";s:4:\"true\";}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/nested-columns/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/09/nested-cols-card-green-400x216.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:216;}s:4:\"tags\";a:1:{i:0;s:14:\"nested-columns\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/09/nested-cols-card-green-800x432.jpg\";}}s:8:\"item-953\";a:10:{s:2:\"ID\";i:953;s:10:\"post_title\";s:26:\"Title Gradient Element 953\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:51:\"https://avada.studio/fusion_element/title-gradient/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/09/title-gradient-400x154.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:154;}s:4:\"tags\";a:1:{i:0;s:5:\"title\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/09/title-gradient-800x307.jpg\";}}s:8:\"item-938\";a:10:{s:2:\"ID\";i:938;s:10:\"post_title\";s:26:\"Social Sharing Element 938\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:51:\"https://avada.studio/fusion_element/social-sharing/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/social-sharing-blue-basic-400x83.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:83;}s:4:\"tags\";a:1:{i:0;s:14:\"social-sharing\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/social-sharing-blue-basic-800x166.jpg\";}}s:8:\"item-920\";a:10:{s:2:\"ID\";i:920;s:10:\"post_title\";s:23:\"News Ticker Element 920\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:48:\"https://avada.studio/fusion_element/news-ticker/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/09/news-ticker-blue-posts-400x67.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:67;}s:4:\"tags\";a:1:{i:0;s:11:\"news-ticker\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/09/news-ticker-blue-posts-800x134.jpg\";}}s:8:\"item-919\";a:10:{s:2:\"ID\";i:919;s:10:\"post_title\";s:26:\"Image Hotspots Element 919\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2021/09/desk-setup-hotspots.jpg\";a:1:{s:8:\"image_id\";s:9:\"1706|full\";}}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/image-hotspots/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/image-hostspots-desk-setup-400x242.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:242;}s:4:\"tags\";a:1:{i:0;s:14:\"image-hotspots\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/image-hostspots-desk-setup-800x484.jpg\";}}s:8:\"item-916\";a:10:{s:2:\"ID\";i:916;s:10:\"post_title\";s:32:\"Image Before / After Element 916\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:79:\"https://avada.studio/wp-content/uploads/2021/09/image-before-gray-element-1.jpg\";a:1:{s:15:\"before_image_id\";s:9:\"1705|full\";}s:82:\"https://avada.studio/wp-content/uploads/2021/09/image-after-colorful-element-1.jpg\";a:1:{s:14:\"after_image_id\";s:9:\"1704|full\";}}}s:3:\"url\";s:55:\"https://avada.studio/fusion_element/image-before-after/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/house-remodeling-img-b-a-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;}s:4:\"tags\";a:1:{i:0;s:18:\"image-before-after\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/house-remodeling-img-b-a-800x487.jpg\";}}s:8:\"item-915\";a:10:{s:2:\"ID\";i:915;s:10:\"post_title\";s:19:\"Gallery Element 915\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:74:\"https://avada.studio/wp-content/uploads/2021/09/clean-blog-post-card-2.jpg\";a:1:{s:8:\"image_id\";s:3:\"726\";}s:76:\"https://avada.studio/wp-content/uploads/2021/09/organic-blog-post-card-1.jpg\";a:1:{s:8:\"image_id\";s:3:\"767\";}s:76:\"https://avada.studio/wp-content/uploads/2021/09/organic-blog-post-card-2.jpg\";a:1:{s:8:\"image_id\";s:3:\"768\";}s:73:\"https://avada.studio/wp-content/uploads/2021/09/dark-blog-post-card-1.jpg\";a:1:{s:8:\"image_id\";s:3:\"762\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/gallery/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/gallery-01-400x223.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:223;}s:4:\"tags\";a:1:{i:0;s:7:\"gallery\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2021/09/gallery-01-800x446.jpg\";}}s:8:\"item-914\";a:10:{s:2:\"ID\";i:914;s:10:\"post_title\";s:25:\"Counter Boxes Element 914\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/counter-boxes/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2021/09/basic-purple-counter-with-icons-400x90.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:90;}s:4:\"tags\";a:1:{i:0;s:13:\"counter-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2021/09/basic-purple-counter-with-icons-800x180.jpg\";}}s:8:\"item-853\";a:10:{s:2:\"ID\";i:853;s:10:\"post_title\";s:26:\"Countdown Sale Element 853\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_element/countdown/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/09/countdown-sale-400x100.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:100;}s:4:\"tags\";a:1:{i:0;s:9:\"countdown\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/09/countdown-sale-800x201.jpg\";}}s:8:\"item-852\";a:10:{s:2:\"ID\";i:852;s:10:\"post_title\";s:31:\"Minimal Content Box Element 852\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:48:\"https://avada.studio/fusion_element/content-box/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/minimal-content-box-400x108.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:108;}s:4:\"tags\";a:1:{i:0;s:13:\"content-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/minimal-content-box-800x217.jpg\";}}s:8:\"item-849\";a:10:{s:2:\"ID\";i:849;s:10:\"post_title\";s:27:\"Gradient Button Element 849\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:52:\"https://avada.studio/fusion_element/gradient-button/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/gradient-button-01-400x60.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:60;}s:4:\"tags\";a:1:{i:0;s:6:\"button\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/09/gradient-button-01-800x121.jpg\";}}s:8:\"item-847\";a:10:{s:2:\"ID\";i:847;s:10:\"post_title\";s:36:\"What\'s New Alert Element Element 847\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:48:\"https://avada.studio/fusion_element/new-element/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/alert-green-success-element-400x59.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:59;}s:4:\"tags\";a:1:{i:0;s:5:\"alert\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2021/09/alert-green-success-element-800x119.jpg\";}}s:8:\"item-683\";a:10:{s:2:\"ID\";i:683;s:10:\"post_title\";s:29:\"Agency Flip Boxes Element 683\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2021/09/bg-flip-600x350.jpg\";s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/flipbox-1/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/09/Screenshot-at-Sep-07-10-19-57-400x93.png\";s:5:\"width\";i:400;s:6:\"height\";i:93;}s:4:\"tags\";a:1:{i:0;s:10:\"flip-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/Screenshot-at-Sep-07-10-19-57-800x186.png\";}}}s:6:\"footer\";a:27:{s:9:\"item-6136\";a:11:{s:2:\"ID\";i:6136;s:10:\"post_title\";s:23:\"Real Estate Footer 6136\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:6:{s:72:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-cta-bg-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6137|full\";}s:76:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-footer-logo1.png\";a:1:{s:8:\"image_id\";s:9:\"6138|full\";}s:66:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-11.jpg\";a:1:{s:8:\"image_id\";s:4:\"6154\";}s:66:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-12.jpg\";a:1:{s:8:\"image_id\";s:4:\"6155\";}s:66:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-13.jpg\";a:1:{s:8:\"image_id\";s:4:\"6156\";}s:66:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-14.jpg\";a:1:{s:8:\"image_id\";s:4:\"6153\";}}s:5:\"menus\";a:3:{s:15:\"real-estate-one\";s:4:\"true\";s:15:\"real-estate-two\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:51:\"https://avada.studio/fusion_tb_section/real-estate/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-footer-ss2-400x191.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:191;}s:4:\"tags\";a:4:{i:0;s:8:\"business\";i:1;s:3:\"cta\";i:2;s:10:\"full-width\";i:3;s:11:\"real-estate\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2026/03/real-estate-footer-ss2-800x382.jpg\";}s:7:\"_fusion\";a:22:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#ddb76a\";s:16:\"color5_overwrite\";s:7:\"#db5e28\";s:16:\"color6_overwrite\";s:7:\"#7e6b46\";s:16:\"color7_overwrite\";s:7:\"#554638\";s:16:\"color8_overwrite\";s:7:\"#0c0804\";s:7:\"h3_size\";s:4:\"30px\";s:7:\"h5_size\";s:4:\"18px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5977\";a:11:{s:2:\"ID\";i:5977;s:10:\"post_title\";s:23:\"Fall Themed Footer 5977\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:3:{s:76:\"https://avada.studio/wp-content/uploads/2025/10/floral-background-01-min.png\";s:4:\"true\";s:71:\"https://avada.studio/wp-content/uploads/2025/10/fall-footer-image01.png\";a:1:{s:19:\"background_image_id\";s:9:\"5980|full\";}s:70:\"https://avada.studio/wp-content/uploads/2025/10/fall-footer-logo01.png\";a:1:{s:8:\"image_id\";s:9:\"5981|full\";}}s:5:\"menus\";a:3:{s:23:\"header-blocks-ecommerce\";s:4:\"true\";s:31:\"mega-menu-ecommerce-accessories\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}s:5:\"forms\";a:1:{i:5979;s:4:\"true\";}}s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/fall-themed-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2025/10/fall-autumn-footer-ss01-400x177.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:177;}s:4:\"tags\";a:7:{i:0;s:8:\"2-column\";i:1;s:8:\"4-column\";i:2;s:6:\"autumn\";i:3;s:4:\"fall\";i:4;s:10:\"full-width\";i:5;s:4:\"shop\";i:6;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2025/10/fall-autumn-footer-ss01-800x353.jpg\";}s:7:\"_fusion\";a:22:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#ffa43e\";s:16:\"color5_overwrite\";s:7:\"#fc4f00\";s:16:\"color6_overwrite\";s:7:\"#685b87\";s:16:\"color7_overwrite\";s:7:\"#433661\";s:16:\"color8_overwrite\";s:7:\"#181324\";s:7:\"h3_size\";s:4:\"40px\";s:7:\"h5_size\";s:4:\"22px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"200\";s:11:\"font-weight\";s:3:\"200\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"200\";s:11:\"font-weight\";s:3:\"200\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5655\";a:11:{s:2:\"ID\";i:5655;s:10:\"post_title\";s:30:\"Personal Portfolio Footer 5655\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:58:\"https://avada.studio/fusion_tb_section/personal-portfolio/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2025/02/personal-portfolio-footer-ss-1-400x182.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:182;}s:4:\"tags\";a:4:{i:0;s:6:\"agency\";i:1;s:12:\"contact-info\";i:2;s:8:\"personal\";i:3;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2025/02/personal-portfolio-footer-ss-1-800x364.jpg\";}s:7:\"_fusion\";a:20:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#d29bff\";s:16:\"color5_overwrite\";s:7:\"#6b6dff\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"80px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.025em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.4\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5648\";a:11:{s:2:\"ID\";i:5648;s:10:\"post_title\";s:17:\"Clean Footer 5648\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:72:\"https://avada.studio/wp-content/uploads/2025/02/studio-footer-logo-4.png\";a:1:{s:8:\"image_id\";s:9:\"5652|full\";}}s:5:\"menus\";a:2:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";s:30:\"footer-pages-menu-03-solutions\";s:4:\"true\";}s:5:\"forms\";a:1:{i:5653;s:4:\"true\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/clean-footer-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/02/clean-footer-ss1-400x209.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:209;}s:4:\"tags\";a:5:{i:0;s:8:\"2-column\";i:1;s:8:\"4-column\";i:2;s:6:\"agency\";i:3;s:8:\"business\";i:4;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/02/clean-footer-ss1-800x418.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#e9f4ff\";s:16:\"color3_overwrite\";s:7:\"#c9deff\";s:16:\"color4_overwrite\";s:7:\"#7abeff\";s:16:\"color5_overwrite\";s:7:\"#2292ff\";s:16:\"color6_overwrite\";s:7:\"#666666\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h6_size\";s:4:\"15px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5076\";a:11:{s:2:\"ID\";i:5076;s:10:\"post_title\";s:20:\"Business Footer 5076\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2023/06/logo-footer-02.png\";a:1:{s:8:\"image_id\";s:9:\"4181|full\";}}s:5:\"menus\";a:3:{s:30:\"footer-pages-menu-03-solutions\";s:4:\"true\";s:25:\"footer-pages-menu-01-main\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";}s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}}s:3:\"url\";s:50:\"https://avada.studio/fusion_tb_section/business-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2024/03/footer-map-3-400x317.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:317;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:12:\"contact-info\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2024/03/footer-map-3-800x633.jpg\";}s:7:\"_fusion\";a:22:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f1f1f1\";s:16:\"color3_overwrite\";s:7:\"#dbdbdb\";s:16:\"color4_overwrite\";s:7:\"#54c7b3\";s:16:\"color5_overwrite\";s:7:\"#ee4343\";s:16:\"color6_overwrite\";s:7:\"#646e7b\";s:16:\"color7_overwrite\";s:7:\"#3f4752\";s:16:\"color8_overwrite\";s:7:\"#191d22\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"20px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Sora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-4179\";a:11:{s:2:\"ID\";i:4179;s:10:\"post_title\";s:26:\"Center Aligned Footer 4179\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2023/06/logo-footer-02.png\";a:1:{s:8:\"image_id\";s:9:\"4181|full\";}}s:5:\"menus\";a:1:{s:19:\"header-multipurpose\";s:4:\"true\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/center-aligned/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/footer-center-01-400x153.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:153;}s:4:\"tags\";a:2:{i:0;s:8:\"1-column\";i:1;s:8:\"centered\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/footer-center-01-800x306.jpg\";}s:7:\"_fusion\";a:20:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eff6ee\";s:16:\"color3_overwrite\";s:7:\"#d4dbd5\";s:16:\"color4_overwrite\";s:7:\"#ef9ea2\";s:16:\"color5_overwrite\";s:7:\"#7c8196\";s:16:\"color6_overwrite\";s:7:\"#676c7d\";s:16:\"color7_overwrite\";s:7:\"#292b32\";s:16:\"color8_overwrite\";s:7:\"#191a1e\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.6\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3831\";a:11:{s:2:\"ID\";i:3831;s:10:\"post_title\";s:23:\"Simple Shop Footer 3831\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:2:{s:67:\"https://avada.studio/wp-content/uploads/2023/01/studio-logo-001.png\";a:1:{s:8:\"image_id\";s:9:\"6206|full\";}s:62:\"https://avada.studio/wp-content/uploads/2023/01/shop-image.jpg\";a:1:{s:8:\"image_id\";s:9:\"3832|full\";}}s:5:\"menus\";a:3:{s:24:\"mega-menu-ecommerce-shop\";s:4:\"true\";s:31:\"mega-menu-ecommerce-accessories\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}s:5:\"forms\";a:1:{i:3833;s:4:\"true\";}}s:3:\"url\";s:51:\"https://avada.studio/fusion_tb_section/simple-shop/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/01/simple-shop-footer-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;}s:4:\"tags\";a:1:{i:0;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/01/simple-shop-footer-800x503.jpg\";}s:7:\"_fusion\";a:16:{s:19:\"exclude_form_studio\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color8_overwrite\";s:7:\"#13140f\";s:16:\"color5_overwrite\";s:7:\"#739271\";s:16:\"color4_overwrite\";s:7:\"#f08d79\";s:16:\"color3_overwrite\";s:7:\"#dbcdc0\";s:16:\"color2_overwrite\";s:7:\"#f7ebe8\";s:16:\"color7_overwrite\";s:7:\"#374836\";s:16:\"color6_overwrite\";s:7:\"#516c4f\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"36px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"line-height\";s:3:\"1.1\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography4_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography5_overwrite\";a:6:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";}s:7:\"h2_size\";s:4:\"30px\";s:7:\"h5_size\";s:4:\"20px\";}}s:9:\"item-3801\";a:11:{s:2:\"ID\";i:3801;s:10:\"post_title\";s:19:\"Fitness Footer 3801\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:7:{s:61:\"https://avada.studio/wp-content/uploads/2023/01/gallery-7.jpg\";a:1:{s:8:\"image_id\";s:9:\"3830|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/01/gallery-6-1.jpg\";a:1:{s:8:\"image_id\";s:4:\"3825\";}s:61:\"https://avada.studio/wp-content/uploads/2023/01/gallery-8.jpg\";a:1:{s:8:\"image_id\";s:9:\"3829|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/01/gallery-3-1.jpg\";a:1:{s:8:\"image_id\";s:4:\"3822\";}s:63:\"https://avada.studio/wp-content/uploads/2023/01/gallery-2-1.jpg\";a:1:{s:8:\"image_id\";s:4:\"3821\";}s:63:\"https://avada.studio/wp-content/uploads/2023/01/gallery-1-1.jpg\";a:1:{s:8:\"image_id\";s:4:\"3820\";}s:61:\"https://avada.studio/wp-content/uploads/2023/01/footer-bg.png\";b:1;}s:5:\"menus\";a:1:{s:5:\"pages\";b:1;}s:5:\"forms\";a:1:{i:3812;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_tb_section/fitness/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/01/fitness-ss-400x253.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:253;}s:4:\"tags\";a:3:{i:0;s:8:\"3-column\";i:1;s:4:\"form\";i:2;s:10:\"full-width\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/01/fitness-ss-800x505.jpg\";}s:7:\"_fusion\";a:26:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f0eee5\";s:16:\"color3_overwrite\";s:7:\"#dfddd2\";s:16:\"color4_overwrite\";s:7:\"#c9bd99\";s:16:\"color5_overwrite\";s:7:\"#13acc4\";s:16:\"color6_overwrite\";s:7:\"#1e6b59\";s:16:\"color7_overwrite\";s:7:\"#42254f\";s:16:\"color8_overwrite\";s:7:\"#091b18\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Gentium Book Plus\";s:9:\"font-size\";s:4:\"67px\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Roboto Flex\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Roboto Flex\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3725\";a:11:{s:2:\"ID\";i:3725;s:10:\"post_title\";s:18:\"Agency Footer 3725\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:3:{s:67:\"https://avada.studio/wp-content/uploads/2022/12/studio-logo-002.png\";a:1:{s:8:\"image_id\";s:9:\"6207|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/06/topology.jpg\";s:4:\"true\";s:61:\"https://avada.studio/wp-content/uploads/2022/12/workplace.png\";a:1:{s:8:\"image_id\";s:9:\"3726|full\";}}s:5:\"menus\";a:2:{s:19:\"min-business-footer\";s:4:\"true\";s:30:\"footer-pages-menu-03-solutions\";s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_tb_section/agency-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/12/agency-footer-ss-1-400x192.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:192;}s:4:\"tags\";a:2:{i:0;s:8:\"3-column\";i:1;s:6:\"agency\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/12/agency-footer-ss-1-800x384.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eeeef3\";s:16:\"color3_overwrite\";s:7:\"#d9d9e3\";s:16:\"color4_overwrite\";s:7:\"#a3a8c7\";s:16:\"color5_overwrite\";s:7:\"#df3a7b\";s:16:\"color6_overwrite\";s:7:\"#53577c\";s:16:\"color7_overwrite\";s:7:\"#3e425c\";s:16:\"color8_overwrite\";s:7:\"#1a1d36\";s:7:\"h5_size\";s:5:\"22px \";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:14:\"letter-spacing\";s:7:\"-0.05em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.4\";}s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";}s:21:\"typography4_overwrite\";a:6:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";}s:21:\"typography5_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Inria Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3721\";a:11:{s:2:\"ID\";i:3721;s:10:\"post_title\";s:17:\"Basic Footer 3721\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2021/08/logo-basic-studio.png\";a:1:{s:8:\"image_id\";s:9:\"1259|full\";}}s:5:\"menus\";a:2:{s:19:\"header-multipurpose\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}s:5:\"forms\";a:1:{i:119;s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_tb_section/basic/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/11/square-rounded-basic-footer-400x129.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:129;}s:4:\"tags\";a:1:{i:0;s:6:\"agency\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/11/square-rounded-basic-footer-800x258.jpg\";}s:7:\"_fusion\";a:22:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f3f4ed\";s:7:\"h4_size\";s:4:\"32px\";s:16:\"color3_overwrite\";s:7:\"#baefe6\";s:16:\"color8_overwrite\";s:7:\"#214251\";s:16:\"color5_overwrite\";s:7:\"#0c9e94\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:6:\"1.15em\";s:14:\"letter-spacing\";s:3:\"0px\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:6:\"1.15em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.3em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:16:\"color7_overwrite\";s:7:\"#005e68\";s:16:\"color6_overwrite\";s:7:\"#4a5154\";s:16:\"color4_overwrite\";s:7:\"#c99a7a\";s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:6:\"1.55em\";s:14:\"letter-spacing\";s:7:\"0.015em\";}}}s:9:\"item-3674\";a:11:{s:2:\"ID\";i:3674;s:10:\"post_title\";s:25:\"Agency Footer Footer 3674\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:2:{s:64:\"https://avada.studio/wp-content/uploads/2022/11/footer-image.jpg\";s:4:\"true\";s:67:\"https://avada.studio/wp-content/uploads/2022/11/studio-logo-003.png\";a:1:{s:8:\"image_id\";s:9:\"6208|full\";}}s:5:\"menus\";a:2:{s:24:\"header-blocks-right-menu\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}s:5:\"forms\";a:1:{i:3678;s:4:\"true\";}}s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/agency-footer/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/11/footer-ss-400x229.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:229;}s:4:\"tags\";a:2:{i:0;s:6:\"agency\";i:1;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/11/footer-ss-800x458.jpg\";}s:7:\"_fusion\";a:24:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#fcf4db\";s:16:\"color3_overwrite\";s:7:\"#fbdf98\";s:16:\"color4_overwrite\";s:7:\"#bab080\";s:16:\"color5_overwrite\";s:7:\"#0d6e59\";s:16:\"color6_overwrite\";s:7:\"#073d31\";s:16:\"color7_overwrite\";s:7:\"#031c17\";s:16:\"color8_overwrite\";s:7:\"#001214\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Montagu Slab\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Glory\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Glory\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";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\";}}s:9:\"item-3668\";a:11:{s:2:\"ID\";i:3668;s:10:\"post_title\";s:16:\"Shop Footer 3668\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-4.png\";a:1:{s:8:\"image_id\";s:9:\"1332|full\";}}s:5:\"menus\";a:3:{s:25:\"header-blocks-ecommerce-2\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_tb_section/shop-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/11/shop-promo-simple-footer-400x161.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:161;}s:4:\"tags\";a:2:{i:0;s:8:\"4-column\";i:1;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/11/shop-promo-simple-footer-800x323.jpg\";}s:7:\"_fusion\";a:22:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f8f7\";s:16:\"color3_overwrite\";s:7:\"#eae8e8\";s:16:\"color8_overwrite\";s:7:\"#2d2d2d\";s:16:\"color7_overwrite\";s:7:\"#2b313a\";s:16:\"color6_overwrite\";s:7:\"#525560\";s:16:\"color5_overwrite\";s:7:\"#1573d8\";s:16:\"color4_overwrite\";s:7:\"#d8512f\";s:7:\"h3_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:6:\"1.24em\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:14:\"text-transform\";s:9:\"uppercase\";s:9:\"font-size\";s:4:\"14px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:3:\"0px\";s:11:\"line-height\";s:5:\"1.3em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:14:\"letter-spacing\";s:3:\"1px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"line-height\";s:5:\"1.5em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:3:\"0px\";}}}s:9:\"item-3108\";a:11:{s:2:\"ID\";i:3108;s:10:\"post_title\";s:18:\"Agency Footer 3108\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2022/08/agency.png\";a:1:{s:8:\"image_id\";s:9:\"3109|full\";}}s:5:\"menus\";a:2:{s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_tb_section/agency/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/08/agency-footer-ss-400x310.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:310;}s:4:\"tags\";a:1:{i:0;s:6:\"agency\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/08/agency-footer-ss-800x620.jpg\";}s:7:\"_fusion\";a:26:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color5_overwrite\";s:7:\"#ff5935\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"48px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";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\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ed3e5\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}}s:9:\"item-3106\";a:11:{s:2:\"ID\";i:3106;s:10:\"post_title\";s:18:\"Simple Footer 3106\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_tb_section/simple/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/08/simple-pink-full-width-footer-400x147.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:147;}s:4:\"tags\";a:2:{i:0;s:4:\"form\";i:1;s:10:\"full-width\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/08/simple-pink-full-width-footer-800x295.jpg\";}s:7:\"_fusion\";a:22:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f8eaee\";s:16:\"color3_overwrite\";s:7:\"#ecdce1\";s:16:\"color4_overwrite\";s:7:\"#f2cb6c\";s:16:\"color5_overwrite\";s:7:\"#0c3934\";s:16:\"color6_overwrite\";s:7:\"#272727\";s:16:\"color7_overwrite\";s:7:\"#141414\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:6:\"1.64em\";s:14:\"letter-spacing\";s:7:\"0.012em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:6:\"1.72em\";s:14:\"letter-spacing\";s:7:\"0.012em\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:14:\"letter-spacing\";s:7:\"0.012em\";s:11:\"line-height\";s:5:\"1.5em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:5:\"1.5em\";s:14:\"letter-spacing\";s:3:\"0px\";s:14:\"text-transform\";s:0:\"\";}s:7:\"h3_size\";s:4:\"48px\";}}s:9:\"item-3085\";a:11:{s:2:\"ID\";i:3085;s:10:\"post_title\";s:28:\"Minimal Business Footer 3085\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2022/08/logo-minimal-footer-1.png\";a:1:{s:8:\"image_id\";s:9:\"3377|full\";}}s:5:\"menus\";a:1:{s:19:\"min-business-footer\";s:4:\"true\";}s:5:\"forms\";a:1:{i:3095;s:4:\"true\";}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/minimal-business/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/08/minimal-business-footer-400x188.png\";s:5:\"width\";i:400;s:6:\"height\";i:188;}s:4:\"tags\";a:3:{i:0;s:8:\"3-column\";i:1;s:8:\"business\";i:2;s:4:\"form\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/08/minimal-business-footer-800x375.png\";}s:7:\"_fusion\";a:22:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#f79927\";s:16:\"color5_overwrite\";s:7:\"#5070f0\";s:16:\"color6_overwrite\";s:7:\"#2e53e2\";s:16:\"color7_overwrite\";s:7:\"#1836ac\";s:16:\"color8_overwrite\";s:7:\"#09133f\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"28px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:3:\"0em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3077\";a:11:{s:2:\"ID\";i:3077;s:10:\"post_title\";s:24:\"Clean Footer Footer 3077\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:65:\"https://avada.studio/wp-content/uploads/2022/08/footer-logo-2.svg\";a:1:{s:8:\"image_id\";s:9:\"3081|full\";}}s:5:\"menus\";a:3:{s:30:\"footer-pages-menu-03-solutions\";s:4:\"true\";s:25:\"footer-pages-menu-05-info\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";}s:5:\"forms\";a:1:{i:3080;s:4:\"true\";}}s:3:\"url\";s:52:\"https://avada.studio/fusion_tb_section/clean-footer/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/08/footer-ss-2-400x194.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:194;}s:4:\"tags\";a:1:{i:0;s:14:\"nested-columns\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/08/footer-ss-2-800x388.jpg\";}s:7:\"_fusion\";a:18:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color3_overwrite\";s:7:\"#e1e4ea\";s:16:\"color5_overwrite\";s:7:\"#dd5a08\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:7:{s:9:\"font-size\";s:4:\"28px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.5\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Kantumruy Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3075\";a:11:{s:2:\"ID\";i:3075;s:10:\"post_title\";s:20:\"Big Menu Footer 3075\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:5:\"menus\";a:3:{s:22:\"off-canvas-mm-services\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_tb_section/big-menu/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/08/solutions-big-menu-footer-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;}s:4:\"tags\";a:1:{i:0;s:8:\"3-column\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/08/solutions-big-menu-footer-800x455.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9fbff\";s:16:\"color3_overwrite\";s:7:\"#fce49c\";s:16:\"color4_overwrite\";s:7:\"#04d37e\";s:16:\"color5_overwrite\";s:7:\"#016b7b\";s:16:\"color6_overwrite\";s:7:\"#728890\";s:16:\"color7_overwrite\";s:7:\"#014751\";s:16:\"color8_overwrite\";s:7:\"#0f2830\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:6:\"1.12em\";s:14:\"letter-spacing\";s:7:\"-0.02em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:6:\"1.36em\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.2em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:9:\"font-size\";s:4:\"19px\";s:11:\"line-height\";s:5:\"1.7em\";s:14:\"letter-spacing\";s:1:\"0\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:5:\"1.6em\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Albert Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-1522\";a:11:{s:2:\"ID\";i:1522;s:10:\"post_title\";s:24:\"Consultation Footer 1522\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:75:\"https://avada.studio/wp-content/uploads/2021/08/logo-overlap-white-blue.png\";a:1:{s:8:\"image_id\";s:9:\"1220|full\";}}s:5:\"menus\";a:1:{s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-10/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/neumorphism-style-footer-400x161.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:161;}s:4:\"tags\";a:3:{i:0;s:8:\"3-column\";i:1;s:12:\"contact-info\";i:2;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/neumorphism-style-footer-800x323.jpg\";}s:7:\"_fusion\";a:25:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#ff403d\";s:16:\"color2_overwrite\";s:7:\"#e9eef6\";s:16:\"color3_overwrite\";s:7:\"#d4d9e5\";s:16:\"color8_overwrite\";s:7:\"#050021\";s:16:\"color1_overwrite\";s:7:\"#fafafb\";s:16:\"color4_overwrite\";s:7:\"#ff8e68\";s:16:\"color7_overwrite\";s:7:\"#1a1f44\";s:16:\"color6_overwrite\";s:7:\"#2e46bd\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:9:\"font-size\";s:4:\"19px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:7:\"h4_size\";s:4:\"30px\";}}s:9:\"item-1518\";a:11:{s:2:\"ID\";i:1518;s:10:\"post_title\";s:26:\"Call To Action Footer 1518\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:79:\"https://avada.studio/wp-content/uploads/2021/09/cta-unlock-potential-footer.jpg\";s:4:\"true\";}s:5:\"menus\";a:1:{s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-09/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2021/09/green-light-dark-company-footer-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;}s:4:\"tags\";a:2:{i:0;s:8:\"2-column\";i:1;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2021/09/green-light-dark-company-footer-800x390.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color4_overwrite\";s:7:\"#4edfc2\";s:16:\"color6_overwrite\";s:7:\"#007c89\";s:16:\"color7_overwrite\";s:7:\"#2e2e3a\";s:16:\"color8_overwrite\";s:7:\"#301408\";s:16:\"color2_overwrite\";s:7:\"#def8f8\";s:16:\"color5_overwrite\";s:7:\"#db5d3d\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.045em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";s:3:\"1.7\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"32px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:7:\"h2_size\";s:4:\"72px\";}}s:9:\"item-1050\";a:11:{s:2:\"ID\";i:1050;s:10:\"post_title\";s:22:\"Full Width Footer 1050\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:5:\"menus\";a:5:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";s:30:\"footer-pages-menu-03-solutions\";s:4:\"true\";s:25:\"footer-pages-menu-05-info\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}s:5:\"forms\";a:1:{i:602;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-08/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/startup-full-width-footer-400x116.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:116;}s:4:\"tags\";a:3:{i:0;s:8:\"6-column\";i:1;s:10:\"full-width\";i:2;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/startup-full-width-footer-800x231.jpg\";}s:7:\"_fusion\";a:23:{s:14:\"special_effect\";s:4:\"none\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color4_overwrite\";s:7:\"#f37258\";s:16:\"color8_overwrite\";s:7:\"#191a1b\";s:16:\"color7_overwrite\";s:7:\"#262626\";s:16:\"color6_overwrite\";s:7:\"#c22000\";s:16:\"color5_overwrite\";s:7:\"#00a86b\";s:16:\"color3_overwrite\";s:7:\"#a9d6ca\";s:16:\"color2_overwrite\";s:7:\"#e2f3ee\";s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Barlow Condensed\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"1px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Mono\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Mono\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Barlow Condensed\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:7:\"h6_size\";s:4:\"16px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h4_size\";s:4:\"28px\";}}s:9:\"item-1049\";a:11:{s:2:\"ID\";i:1049;s:10:\"post_title\";s:19:\"Journal Footer 1049\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2021/09/studio-logo-004.png\";a:1:{s:8:\"image_id\";s:9:\"6209|full\";}}s:5:\"menus\";a:3:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-07/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2021/09/journal-clean-health-footer-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;}s:4:\"tags\";a:2:{i:0;s:8:\"4-column\";i:1;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2021/09/journal-clean-health-footer-800x448.jpg\";}s:7:\"_fusion\";a:23:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color2_overwrite\";s:7:\"#fbf9f6\";s:16:\"color6_overwrite\";s:7:\"#666369\";s:16:\"color7_overwrite\";s:7:\"#3d3c3e\";s:16:\"color8_overwrite\";s:7:\"#0f0f0f\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Marcellus\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"40px\";s:11:\"line-height\";s:4:\"50px\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"13px\";s:14:\"letter-spacing\";s:3:\"2px\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"32px\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Marcellus\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:4:\"26px\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"22px\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color4_overwrite\";s:7:\"#84b5d8\";s:16:\"color5_overwrite\";s:7:\"#bb812a\";s:16:\"color3_overwrite\";s:7:\"#cbd4d8\";}}s:9:\"item-1047\";a:11:{s:2:\"ID\";i:1047;s:10:\"post_title\";s:19:\"Flat 3D Footer 1047\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:5:\"menus\";a:1:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";}s:5:\"forms\";a:1:{i:303;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-06/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/flat-bold-3d-footer-400x113.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:113;}s:4:\"tags\";a:3:{i:0;s:8:\"1-column\";i:1;s:10:\"full-width\";i:2;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/flat-bold-3d-footer-800x226.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#ff00a1\";s:16:\"color8_overwrite\";s:7:\"#1f2024\";s:16:\"color7_overwrite\";s:7:\"#163892\";s:16:\"color2_overwrite\";s:7:\"#cdf2ff\";s:16:\"color6_overwrite\";s:7:\"#3269ff\";s:16:\"color4_overwrite\";s:7:\"#00dba1\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:8:\"-0.006em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:7:\"h1_size\";s:4:\"60px\";}}s:9:\"item-1046\";a:11:{s:2:\"ID\";i:1046;s:10:\"post_title\";s:17:\"Boxed Footer 1046\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:77:\"https://avada.studio/wp-content/uploads/2021/09/colorful-shapes-footer-bg.png\";s:4:\"true\";}s:5:\"menus\";a:3:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";s:30:\"footer-pages-menu-03-solutions\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";}s:5:\"forms\";a:1:{i:1048;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-05/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/organic-shapes-playful-footer-400x152.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:152;}s:4:\"tags\";a:2:{i:0;s:8:\"4-column\";i:1;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/organic-shapes-playful-footer-800x305.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#ff6124\";s:16:\"color4_overwrite\";s:7:\"#fed3a4\";s:16:\"color7_overwrite\";s:7:\"#17484b\";s:16:\"color8_overwrite\";s:7:\"#10284a\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:9:\"font-size\";s:4:\"36px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color2_overwrite\";s:7:\"#eff7fc\";s:16:\"color6_overwrite\";s:7:\"#287c80\";s:7:\"h5_size\";s:4:\"22px\";}}s:9:\"item-1038\";a:11:{s:2:\"ID\";i:1038;s:10:\"post_title\";s:22:\"Futuristic Footer 1038\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2021/08/logo-black-noir.png\";a:1:{s:8:\"image_id\";s:9:\"1194|full\";}}s:5:\"menus\";a:1:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";}s:5:\"forms\";a:1:{i:284;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-04/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/futuristic-blue-purple-footer-400x136.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:136;}s:4:\"tags\";a:2:{i:0;s:8:\"2-column\";i:1;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/futuristic-blue-purple-footer-800x273.jpg\";}s:7:\"_fusion\";a:18:{s:14:\"special_effect\";s:4:\"none\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color4_overwrite\";s:7:\"#42c9b2\";s:16:\"color5_overwrite\";s:7:\"#5364fd\";s:16:\"color3_overwrite\";s:7:\"#b1c3ff\";s:16:\"color8_overwrite\";s:7:\"#111131\";s:16:\"color7_overwrite\";s:7:\"#1e2355\";s:16:\"color2_overwrite\";s:7:\"#e8edff\";s:16:\"color6_overwrite\";s:7:\"#515170\";s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Bai Jamjuree\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:4:\"35px\";s:14:\"letter-spacing\";s:6:\"0.02em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Bai Jamjuree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:4:\"45px\";s:14:\"letter-spacing\";s:6:\"0.02em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Bai Jamjuree\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"28px\";s:14:\"letter-spacing\";s:6:\"0.01em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}}}s:9:\"item-1037\";a:11:{s:2:\"ID\";i:1037;s:10:\"post_title\";s:28:\"Large Title Form Footer 1037\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2021/09/studio-logo-008.png\";a:1:{s:8:\"image_id\";s:9:\"6213|full\";}}s:5:\"menus\";a:3:{s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:25:\"footer-pages-menu-05-info\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-03/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/gradient-title-dark-footer-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;}s:4:\"tags\";a:2:{i:0;s:8:\"4-column\";i:1;s:12:\"contact-info\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/gradient-title-dark-footer-800x390.jpg\";}s:7:\"_fusion\";a:13:{s:16:\"color4_overwrite\";s:7:\"#ac8af5\";s:16:\"color5_overwrite\";s:7:\"#ef3c1a\";s:16:\"color8_overwrite\";s:7:\"#12162d\";s:16:\"color7_overwrite\";s:7:\"#1e2345\";s:16:\"color6_overwrite\";s:7:\"#3e4b84\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color2_overwrite\";s:7:\"#eee8fd\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:6:\"0.01em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:7:\"h1_size\";s:4:\"60px\";}}s:9:\"item-1028\";a:11:{s:2:\"ID\";i:1028;s:10:\"post_title\";s:18:\"2 Rows Footer 1028\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-organic.png\";a:1:{s:8:\"image_id\";s:9:\"1269|full\";}}s:5:\"menus\";a:4:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:25:\"footer-pages-menu-05-info\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}s:5:\"forms\";a:1:{i:1035;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/dark-purple-elegant-footer-400x214.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:214;}s:4:\"tags\";a:3:{i:0;s:8:\"4-column\";i:1;s:12:\"contact-info\";i:2;s:12:\"subscription\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2021/09/dark-purple-elegant-footer-800x428.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#be2e62\";s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:16:\"color7_overwrite\";s:7:\"#241427\";s:16:\"color4_overwrite\";s:7:\"#57b2d6\";s:16:\"color3_overwrite\";s:7:\"#9cd2e7\";s:16:\"color2_overwrite\";s:7:\"#d6ecf5\";s:16:\"color6_overwrite\";s:7:\"#8c2249\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Fraunces\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:7:\"0.012em\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Fraunces\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:7:\"h5_size\";s:4:\"24px\";}}s:8:\"item-998\";a:11:{s:2:\"ID\";i:998;s:10:\"post_title\";s:17:\"Agency Footer 998\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2021/09/studio-logo-006.png\";a:1:{s:8:\"image_id\";s:9:\"6211|full\";}}s:5:\"menus\";a:3:{s:25:\"footer-pages-menu-01-main\";s:4:\"true\";s:28:\"footer-pages-menu-02-company\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/footer-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/09/business-gray-footer-400x161.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:161;}s:4:\"tags\";a:2:{i:0;s:8:\"3-column\";i:1;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/09/business-gray-footer-800x323.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"special_effect\";s:4:\"none\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#7c7f88\";s:16:\"color8_overwrite\";s:7:\"#001328\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color6_overwrite\";s:7:\"#0044e4\";s:16:\"color4_overwrite\";s:7:\"#e27a2b\";s:16:\"color2_overwrite\";s:7:\"#f6f6f9\";s:16:\"color7_overwrite\";s:7:\"#1e233a\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:9:\"font-size\";s:4:\"36px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.024em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:8:\"-0.016em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:6:\"0.04em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:7:\"h3_size\";s:4:\"36px\";}}}s:6:\"header\";a:45:{s:9:\"item-6129\";a:11:{s:2:\"ID\";i:6129;s:10:\"post_title\";s:19:\"Ai Tech Header 6129\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:5:{s:68:\"https://avada.studio/wp-content/uploads/2026/03/logo-ai-header-1.png\";a:1:{s:8:\"image_id\";s:9:\"6130|full\";}s:74:\"https://avada.studio/wp-content/uploads/2026/03/ai-tech-header-image-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"6131|full\";}s:70:\"https://avada.studio/wp-content/uploads/2026/03/digital-products-1.png\";a:1:{s:8:\"image_id\";s:9:\"6132|full\";}s:66:\"https://avada.studio/wp-content/uploads/2026/03/ai-chat-bots-1.png\";a:1:{s:8:\"image_id\";s:9:\"6134|full\";}s:70:\"https://avada.studio/wp-content/uploads/2026/03/machine-learning-1.png\";a:1:{s:8:\"image_id\";s:9:\"6133|full\";}}s:5:\"menus\";a:1:{s:19:\"header-multipurpose\";s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_tb_section/ai-tech/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2026/03/ai-tech-header-ss1-400x262.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:262;}s:4:\"tags\";a:3:{i:0;s:2:\"ai\";i:1;s:9:\"corporate\";i:2;s:4:\"tech\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2026/03/ai-tech-header-ss1-800x524.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#14bfc8\";s:16:\"color5_overwrite\";s:7:\"#f03a47\";s:16:\"color6_overwrite\";s:7:\"#735cdd\";s:16:\"color7_overwrite\";s:7:\"#4138b9\";s:16:\"color8_overwrite\";s:7:\"#0f0c3d\";s:7:\"h3_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jura\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:8:\"-0.045em\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jura\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.045em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jura\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:8:\"-0.045em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jura\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:11:\"line-height\";s:3:\"1.6\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jura\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5952\";a:11:{s:2:\"ID\";i:5952;s:10:\"post_title\";s:23:\"Fall Themed Header 5952\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:7:{s:72:\"https://avada.studio/wp-content/uploads/2025/10/autumn-header-logo01.png\";a:1:{s:8:\"image_id\";s:9:\"5955|full\";}s:75:\"https://avada.studio/wp-content/uploads/2025/10/fall-header-image01-min.jpg\";s:4:\"true\";s:75:\"https://avada.studio/wp-content/uploads/2025/10/autumn-leaves-left1-min.png\";a:1:{s:8:\"image_id\";s:9:\"5964|full\";}s:76:\"https://avada.studio/wp-content/uploads/2025/10/autumn-leaves-right1-min.png\";a:1:{s:8:\"image_id\";s:9:\"5965|full\";}s:56:\"https://avada.studio/wp-content/uploads/2025/10/leaf.png\";a:1:{s:8:\"image_id\";s:9:\"5966|full\";}s:58:\"https://avada.studio/wp-content/uploads/2025/10/leaf-2.png\";a:1:{s:8:\"image_id\";s:9:\"5967|full\";}s:58:\"https://avada.studio/wp-content/uploads/2025/10/leaf-1.png\";a:1:{s:8:\"image_id\";s:9:\"5968|full\";}}s:5:\"menus\";a:2:{s:23:\"header-blocks-ecommerce\";s:4:\"true\";s:25:\"header-blocks-menu-cart-2\";s:4:\"true\";}}s:3:\"url\";s:51:\"https://avada.studio/fusion_tb_section/fall-themed/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2025/10/fall-themed-header-megamenu-ss1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;}s:4:\"tags\";a:5:{i:0;s:6:\"autumn\";i:1;s:4:\"fall\";i:2;s:10:\"full-width\";i:3;s:10:\"mega-menus\";i:4;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2025/10/fall-themed-header-megamenu-ss1-800x520.jpg\";}s:7:\"_fusion\";a:23:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f5f3df\";s:16:\"color3_overwrite\";s:7:\"#8dddc9\";s:16:\"color4_overwrite\";s:7:\"#ffa43e\";s:16:\"color5_overwrite\";s:7:\"#fc4f00\";s:16:\"color6_overwrite\";s:7:\"#8e6134\";s:16:\"color7_overwrite\";s:7:\"#70370c\";s:16:\"color8_overwrite\";s:7:\"#1e0f00\";s:7:\"h3_size\";s:4:\"34px\";s:7:\"h4_size\";s:4:\"24px\";s:7:\"h6_size\";s:4:\"17px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"80px\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.025em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.030em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5193\";a:11:{s:2:\"ID\";i:5193;s:10:\"post_title\";s:20:\"Business Header 5193\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:72:\"https://avada.studio/wp-content/uploads/2024/05/studio-header-logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"5195|full\";}}s:5:\"menus\";a:1:{s:19:\"header-multipurpose\";s:4:\"true\";}s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}}s:3:\"url\";s:50:\"https://avada.studio/fusion_tb_section/business-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/05/business-header-ss-1-400x33.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:33;}s:4:\"tags\";a:3:{i:0;s:10:\"full-width\";i:1;s:6:\"simple\";i:2;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/05/business-header-ss-1-800x65.jpg\";}s:7:\"_fusion\";a:20:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f1f1f1\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#d8b458\";s:16:\"color5_overwrite\";s:7:\"#34a2ba\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#0f0f0f\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"66px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5090\";a:11:{s:2:\"ID\";i:5090;s:10:\"post_title\";s:32:\"Corporate Logo Boxed Header 5090\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:8:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2024/03/studio-logo-02.png\";a:1:{s:8:\"image_id\";s:9:\"5095|full\";}}s:5:\"menus\";a:1:{s:19:\"header-multipurpose\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}s:15:\"multiple_images\";a:1:{s:34:\"background_slider_images-5096,5097\";a:0:{}}}s:3:\"url\";s:60:\"https://avada.studio/fusion_tb_section/corporate-logo-boxed/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:98:\"https://avada.studio/wp-content/uploads/2024/03/boxed-logo-header-ss-01-e1709801000416-400x161.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:161;}s:4:\"tags\";a:2:{i:0;s:9:\"corporate\";i:1;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:98:\"https://avada.studio/wp-content/uploads/2024/03/boxed-logo-header-ss-01-e1709801000416-800x323.jpg\";}s:7:\"_fusion\";a:24:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:3:\"yes\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#ff915e\";s:16:\"color5_overwrite\";s:7:\"#d15c5b\";s:16:\"color6_overwrite\";s:7:\"#62645f\";s:16:\"color7_overwrite\";s:7:\"#3b3d37\";s:16:\"color8_overwrite\";s:7:\"#141710\";s:7:\"h3_size\";s:4:\"34px\";s:7:\"h5_size\";s:4:\"20px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"54px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.002em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.002em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:8:\"-0.002em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.002em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:8:\"-0.002em\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4839\";a:11:{s:2:\"ID\";i:4839;s:10:\"post_title\";s:24:\"RTL – Side Header 4839\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2023/11/logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"4840|full\";}}s:5:\"menus\";a:1:{s:20:\"urdu-menu-right-side\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_tb_section/rtl-side/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/11/rtl-side-header-ss001-400x275.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:275;}s:4:\"tags\";a:3:{i:0;s:11:\"full-height\";i:1;s:3:\"rtl\";i:2;s:11:\"side-header\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/11/rtl-side-header-ss001.jpg\";}s:7:\"_fusion\";a:27:{s:19:\"awb_header_bg_color\";s:17:\"var(--awb-color8)\";s:8:\"position\";s:5:\"right\";s:17:\"side_header_width\";s:3:\"325\";s:17:\"header_breakpoint\";s:6:\"medium\";s:24:\"header_custom_breakpoint\";s:4:\"1100\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#bfb5ca\";s:16:\"color5_overwrite\";s:7:\"#ed3535\";s:16:\"color6_overwrite\";s:7:\"#7f6b94\";s:16:\"color7_overwrite\";s:7:\"#553971\";s:16:\"color8_overwrite\";s:7:\"#170033\";s:7:\"h4_size\";s:4:\"30px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"28px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4814\";a:11:{s:2:\"ID\";i:4814;s:10:\"post_title\";s:15:\"RTL Header 4814\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:64:\"https://avada.studio/wp-content/uploads/2023/11/header-bg-01.jpg\";s:4:\"true\";s:71:\"https://avada.studio/wp-content/uploads/2023/11/urdu-header-logo-01.png\";a:1:{s:8:\"image_id\";s:9:\"6202|full\";}}s:5:\"menus\";a:1:{s:9:\"urdu-menu\";s:4:\"true\";}}s:3:\"url\";s:55:\"https://avada.studio/fusion_tb_section/rtl-side-header/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/11/rtl-header-01-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;}s:4:\"tags\";a:3:{i:0;s:9:\"corporate\";i:1;s:10:\"full-width\";i:2;s:3:\"rtl\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/11/rtl-header-01-800x241.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eaf1ff\";s:16:\"color3_overwrite\";s:7:\"#bce5ff\";s:16:\"color4_overwrite\";s:7:\"#41cbd3\";s:16:\"color5_overwrite\";s:7:\"#508ab7\";s:16:\"color6_overwrite\";s:7:\"#4f7c9a\";s:16:\"color7_overwrite\";s:7:\"#235b81\";s:16:\"color8_overwrite\";s:7:\"#000f35\";s:7:\"h4_size\";s:4:\"30px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Noto Nastaliq Urdu\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-4321\";a:11:{s:2:\"ID\";i:4321;s:10:\"post_title\";s:21:\"Corporate Header 4321\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:65:\"https://avada.studio/wp-content/uploads/2023/08/studio-logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"4324|full\";}}s:5:\"menus\";a:1:{s:14:\"corporate-menu\";s:4:\"true\";}s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/corporate/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/08/corporate-header-ss2-400x30.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:30;}s:4:\"tags\";a:3:{i:0;s:9:\"corporate\";i:1;s:10:\"full-width\";i:2;s:10:\"mega-menus\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/08/corporate-header-ss2-800x60.jpg\";}s:7:\"_fusion\";a:23:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#f28e37\";s:16:\"color5_overwrite\";s:7:\"#118a7e\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h4_size\";s:4:\"24px\";s:7:\"h5_size\";s:5:\"21px \";s:7:\"h6_size\";s:4:\"18px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Mukta\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Mukta\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Mukta\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Mukta\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Mukta\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-4267\";a:11:{s:2:\"ID\";i:4267;s:10:\"post_title\";s:16:\"Side Header 4267\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2023/06/form-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"4218|full\";}}s:5:\"menus\";a:3:{s:11:\"3-dots-menu\";s:4:\"true\";s:9:\"dashboard\";s:4:\"true\";s:6:\"editor\";s:4:\"true\";}}s:3:\"url\";s:44:\"https://avada.studio/fusion_tb_section/side/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/06/side-header-ss004-400x307.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:307;}s:4:\"tags\";a:2:{i:0;s:11:\"full-height\";i:1;s:11:\"side-header\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2023/06/side-header-ss004.jpg\";}s:7:\"_fusion\";a:26:{s:19:\"awb_header_bg_color\";s:17:\"var(--awb-color8)\";s:8:\"position\";s:4:\"left\";s:17:\"side_header_width\";s:3:\"350\";s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color5_overwrite\";s:7:\"#119e68\";s:16:\"color7_overwrite\";s:7:\"#2b2c3a\";s:16:\"color8_overwrite\";s:7:\"#101014\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"19px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:9:\"font-size\";s:4:\"67px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Wix Madefor Text\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Wix Madefor Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:9:\"uppercase\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Wix Madefor Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Wix Madefor Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Wix Madefor Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"528\";}s:12:\"preview_page\";s:3:\"444\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-4176\";a:11:{s:2:\"ID\";i:4176;s:10:\"post_title\";s:24:\"Multipurpose Header 4176\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2023/06/header-logo-01.png\";a:1:{s:8:\"image_id\";s:9:\"4177|full\";}}s:5:\"menus\";a:2:{s:29:\"header-blocks-menu-with-icons\";s:4:\"true\";s:19:\"header-multipurpose\";s:4:\"true\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/multipurpose-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/06/multipurpose-header-02-400x58.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:58;}s:4:\"tags\";a:3:{i:0;s:9:\"dual-menu\";i:1;s:6:\"simple\";i:2;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2023/06/multipurpose-header-02-800x116.jpg\";}s:7:\"_fusion\";a:20:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d6d6d6\";s:16:\"color4_overwrite\";s:7:\"#c7b61c\";s:16:\"color5_overwrite\";s:7:\"#5d82b9\";s:16:\"color6_overwrite\";s:7:\"#3d69ab\";s:16:\"color7_overwrite\";s:7:\"#284672\";s:16:\"color8_overwrite\";s:7:\"#0a111c\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.4\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.4\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3529\";a:11:{s:2:\"ID\";i:3529;s:10:\"post_title\";s:23:\"Sliding Bar Header 3529\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/10/506.svg\";a:1:{s:8:\"image_id\";s:9:\"3566|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:983;s:12:\"petsupplies-\";}s:12:\"off_canvases\";a:1:{i:3530;b:1;}}s:3:\"url\";s:51:\"https://avada.studio/fusion_tb_section/sliding-bar/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/10/sliding-bar-ss-400x43.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:43;}s:4:\"tags\";a:2:{i:0;s:6:\"simple\";i:1;s:11:\"sliding-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/10/sliding-bar-ss-800x86.jpg\";}s:7:\"_fusion\";a:18:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color5_overwrite\";s:7:\"#0e9382\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Tiro Tamil\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:12:\"off_canvases\";a:1:{i:0;s:4:\"3530\";}s:18:\"preview_off_canvas\";s:4:\"3530\";}}s:9:\"item-3269\";a:11:{s:2:\"ID\";i:3269;s:10:\"post_title\";s:18:\"Agency Header 3269\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:61:\"https://avada.studio/wp-content/uploads/2022/09/header-bg.jpg\";s:4:\"true\";s:63:\"https://avada.studio/wp-content/uploads/2022/09/header-logo.svg\";a:1:{s:8:\"image_id\";s:9:\"3272|full\";}}s:5:\"menus\";a:3:{s:5:\"pages\";s:4:\"true\";s:17:\"language-currency\";s:4:\"true\";s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_tb_section/agency-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/09/agency-header-ss-400x201.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:201;}s:4:\"tags\";a:3:{i:0;s:9:\"dual-menu\";i:1;s:11:\"full-height\";i:2;s:10:\"full-width\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/09/agency-header-ss-800x402.jpg\";}s:7:\"_fusion\";a:24:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9f9\";s:16:\"color3_overwrite\";s:7:\"#f4f4f4\";s:16:\"color4_overwrite\";s:7:\"#97e5b2\";s:16:\"color5_overwrite\";s:7:\"#1a8fd8\";s:16:\"color6_overwrite\";s:7:\"#414549\";s:16:\"color7_overwrite\";s:7:\"#222226\";s:16:\"color8_overwrite\";s:7:\"#131616\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Bona Nova\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.1\";s:9:\"font-size\";s:4:\"67px\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"League Spartan\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"League Spartan\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3252\";a:11:{s:2:\"ID\";i:3252;s:10:\"post_title\";s:16:\"Shop Header 3252\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:74:\"https://avada.studio/wp-content/uploads/2022/05/logo-studio-shop-black.png\";a:1:{s:8:\"image_id\";s:9:\"2664|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/173.jpg\";a:1:{s:8:\"image_id\";s:9:\"1285|full\";}}s:5:\"menus\";a:3:{s:25:\"header-blocks-ecommerce-2\";b:1;s:23:\"header-blocks-menu-cart\";b:1;s:30:\"header-blocks-flyout-ecommerce\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:977;s:14:\"icon-furniture\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/shop-furniture/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/09/shop-navbar-bottom-400x259.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:259;}s:4:\"tags\";a:4:{i:0;s:11:\"full-height\";i:1;s:10:\"full-width\";i:2;s:6:\"search\";i:3;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/09/shop-navbar-bottom-800x517.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f1f2ec\";s:16:\"color3_overwrite\";s:7:\"#e5e7dc\";s:16:\"color4_overwrite\";s:7:\"#bdc8b2\";s:16:\"color5_overwrite\";s:7:\"#99887e\";s:16:\"color6_overwrite\";s:7:\"#7e807c\";s:16:\"color7_overwrite\";s:7:\"#373a33\";s:16:\"color8_overwrite\";s:7:\"#010002\";s:7:\"h2_size\";s:4:\"56px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Nanum Myeongjo\";s:11:\"font-backup\";s:15:\"Garamond, serif\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:6:\"1.12em\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Gantari\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"19px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Gantari\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:6:\"1.24em\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Gantari\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:9:{s:14:\"letter-spacing\";s:6:\"0.08em\";s:14:\"text-transform\";s:9:\"uppercase\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Gantari\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:5:\"1.6em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3202\";a:11:{s:2:\"ID\";i:3202;s:10:\"post_title\";s:24:\"Multipurpose Header 3202\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:65:\"https://avada.studio/wp-content/uploads/2022/08/header-logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"3203|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/08/multi-header-bg-1.jpg\";s:4:\"true\";}s:5:\"menus\";a:1:{s:19:\"header-multipurpose\";s:4:\"true\";}}s:3:\"url\";s:52:\"https://avada.studio/fusion_tb_section/multipurpose/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/08/multipurpose-header-400x43.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:43;}s:4:\"tags\";a:1:{i:0;s:10:\"full-width\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/08/multipurpose-header-800x86.jpg\";}s:7:\"_fusion\";a:20:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#dbdbdb\";s:16:\"color4_overwrite\";s:7:\"#e8a23a\";s:16:\"color5_overwrite\";s:7:\"#f44757\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#4b4b4b\";s:16:\"color8_overwrite\";s:7:\"#1c1c1c\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:6:\"0.01em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3187\";a:11:{s:2:\"ID\";i:3187;s:10:\"post_title\";s:19:\"Overlay Header 3187\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:4:{s:6:\"images\";a:2:{s:56:\"https://avada.studio/wp-content/uploads/2022/08/logo.svg\";a:1:{s:8:\"image_id\";s:9:\"3192|full\";}s:71:\"https://avada.studio/wp-content/uploads/2022/08/header-background-2.jpg\";s:4:\"true\";}s:5:\"menus\";a:1:{s:16:\"header-corporate\";s:4:\"true\";}s:5:\"icons\";a:1:{i:983;s:12:\"petsupplies-\";}s:12:\"off_canvases\";a:1:{i:3195;s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_tb_section/overlay/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/08/overlay-header-400x98.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:98;}s:4:\"tags\";a:1:{i:0;s:10:\"full-width\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/08/overlay-header-800x196.jpg\";}s:7:\"_fusion\";a:20:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color4_overwrite\";s:7:\"#b0a1ea\";s:16:\"color5_overwrite\";s:7:\"#04937b\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Roboto Serif\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Roboto Serif\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Roboto Serif\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:12:\"off_canvases\";a:1:{i:0;s:4:\"3195\";}s:18:\"preview_off_canvas\";s:4:\"3195\";}}s:9:\"item-3182\";a:11:{s:2:\"ID\";i:3182;s:10:\"post_title\";s:16:\"Shop Header 3182\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:73:\"https://avada.studio/wp-content/uploads/2022/05/logo-studio-organic-2.png\";a:1:{s:8:\"image_id\";s:9:\"2629|full\";}s:84:\"https://avada.studio/wp-content/uploads/2022/08/avada-header-shop-fashion-scaled.jpg\";s:4:\"true\";}s:5:\"menus\";a:2:{s:23:\"header-blocks-menu-cart\";s:4:\"true\";s:23:\"header-blocks-ecommerce\";s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_tb_section/shop-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2022/08/shop-header-vibrant-studio-400x263.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:263;}s:4:\"tags\";a:3:{i:0;s:8:\"centered\";i:1;s:6:\"search\";i:2;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2022/08/shop-header-vibrant-studio-800x525.jpg\";}s:7:\"_fusion\";a:23:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f5f4f7\";s:16:\"color3_overwrite\";s:7:\"#e3e3e5\";s:16:\"color4_overwrite\";s:7:\"#efc22f\";s:16:\"color5_overwrite\";s:7:\"#d8391a\";s:16:\"color6_overwrite\";s:7:\"#3e3e42\";s:16:\"color7_overwrite\";s:7:\"#1f2023\";s:16:\"color8_overwrite\";s:7:\"#0d0e0f\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:19:\"Petit Formal Script\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:5:\"124px\";s:14:\"letter-spacing\";s:4:\"-5px\";s:11:\"line-height\";s:3:\"1em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:5:\"1.1em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:3:\"1px\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:3:\"0px\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.5em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:7:\"h6_size\";s:4:\"24px\";s:7:\"h4_size\";s:4:\"24px\";s:7:\"h3_size\";s:4:\"34px\";}}s:9:\"item-2841\";a:11:{s:2:\"ID\";i:2841;s:10:\"post_title\";s:20:\"Business Header 2841\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:74:\"https://avada.studio/wp-content/uploads/2022/07/business-header-logo-2.png\";a:1:{s:8:\"image_id\";s:9:\"2854|full\";}}s:5:\"menus\";a:1:{s:20:\"business-header-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_tb_section/business/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/07/business-header-ss-400x43.png\";s:5:\"width\";i:400;s:6:\"height\";i:43;}s:4:\"tags\";a:2:{i:0;s:6:\"simple\";i:1;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/07/business-header-ss-800x86.png\";}s:7:\"_fusion\";a:22:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#ea7317\";s:16:\"color5_overwrite\";s:7:\"#2b9be0\";s:16:\"color6_overwrite\";s:7:\"#237bb1\";s:16:\"color7_overwrite\";s:7:\"#175a83\";s:16:\"color8_overwrite\";s:7:\"#133c55\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";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:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:1:\"0\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:0:\"\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2832\";a:11:{s:2:\"ID\";i:2832;s:10:\"post_title\";s:18:\"Simple Header 2832\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:76:\"https://avada.studio/wp-content/uploads/2022/06/logo-studio-simple-scale.png\";a:1:{s:8:\"image_id\";s:9:\"2838|full\";}}s:5:\"menus\";a:2:{s:23:\"header-blocks-solutions\";b:1;s:27:\"off-canvas-full-screen-main\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/simple-header/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/06/simple-header-logo-right-400x33.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:33;}s:4:\"tags\";a:1:{i:0;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/06/simple-header-logo-right-800x65.jpg\";}s:7:\"_fusion\";a:23:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#1cabed\";s:16:\"color5_overwrite\";s:7:\"#174fc6\";s:16:\"color6_overwrite\";s:7:\"#3b3c3f\";s:16:\"color7_overwrite\";s:7:\"#0f1011\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:6:\"1.12em\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:7:\"-0.02em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:14:\"letter-spacing\";s:6:\"0.01em\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.5em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2693\";a:11:{s:2:\"ID\";i:2693;s:10:\"post_title\";s:17:\"Store Header 2693\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:61:\"https://avada.studio/wp-content/uploads/2022/06/topbar-bg.jpg\";s:4:\"true\";s:69:\"https://avada.studio/wp-content/uploads/2022/06/store-header-logo.png\";a:1:{s:8:\"image_id\";s:9:\"2695|full\";}}s:5:\"menus\";a:2:{s:23:\"header-blocks-ecommerce\";s:4:\"true\";s:17:\"language-currency\";s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_tb_section/store/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2022/06/store-header-preview-400x68.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:68;}s:4:\"tags\";a:3:{i:0;s:6:\"search\";i:1;s:4:\"shop\";i:2;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/06/store-header-preview-800x136.jpg\";}s:7:\"_fusion\";a:26:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#3eacf1\";s:16:\"color5_overwrite\";s:7:\"#f1643e\";s:16:\"color6_overwrite\";s:7:\"#666666\";s:16:\"color7_overwrite\";s:7:\"#303030\";s:16:\"color8_overwrite\";s:7:\"#090909\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:1:\"1\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:1:\"1\";s:14:\"letter-spacing\";s:8:\"-0.012em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-2681\";a:11:{s:2:\"ID\";i:2681;s:10:\"post_title\";s:19:\"Jewelry Header 2681\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2022/06/440.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2022/06/441.svg\";a:1:{s:8:\"image_id\";s:9:\"2687|full\";}}s:5:\"menus\";a:3:{s:23:\"header-blocks-left-menu\";b:1;s:24:\"header-blocks-right-menu\";b:1;s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_tb_section/jewelry/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/06/jewelry-header-400x212.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:212;}s:4:\"tags\";a:4:{i:0;s:8:\"centered\";i:1;s:11:\"full-height\";i:2;s:10:\"full-width\";i:3;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/06/jewelry-header-800x424.jpg\";}s:7:\"_fusion\";a:26:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f3f3fd\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#9ab7b7\";s:16:\"color5_overwrite\";s:7:\"#a98e9a\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#2e3e37\";s:16:\"color8_overwrite\";s:7:\"#1c1c1c\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Mono\";s:9:\"font-size\";s:4:\"60px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Mono\";s:9:\"font-size\";s:4:\"17px\";s:14:\"letter-spacing\";s:3:\"1px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Mono\";s:9:\"font-size\";s:4:\"15px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"1px\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2663\";a:11:{s:2:\"ID\";i:2663;s:10:\"post_title\";s:16:\"Shop Header 2663\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:74:\"https://avada.studio/wp-content/uploads/2022/05/logo-studio-shop-black.png\";a:1:{s:8:\"image_id\";s:9:\"2664|full\";}}s:5:\"menus\";a:3:{s:25:\"header-blocks-ecommerce-2\";s:4:\"true\";s:23:\"header-blocks-menu-cart\";s:4:\"true\";s:25:\"header-blocks-ecommerce-3\";s:4:\"true\";}}s:3:\"url\";s:44:\"https://avada.studio/fusion_tb_section/shop/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/05/shop-header-two-menus-400x47.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:47;}s:4:\"tags\";a:1:{i:0;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/05/shop-header-two-menus-800x95.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f7f8fa\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#fb682b\";s:16:\"color5_overwrite\";s:7:\"#eb4b5a\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:115:\"-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\' ,sans-serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1em\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:115:\"-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\' ,sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:6:\"1.12em\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"line-height\";s:3:\"1em\";s:14:\"text-transform\";s:9:\"uppercase\";s:14:\"letter-spacing\";s:4:\" 0px\";}s:21:\"typography4_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:14:\"text-transform\";s:0:\"\";s:11:\"font-backup\";s:115:\"-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\' ,sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:6:\"1.62em\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:115:\"-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\' ,sans-serif\";}s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-1328\";a:11:{s:2:\"ID\";i:1328;s:10:\"post_title\";s:24:\"Default Shop Header 1328\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/09/logo-studio-default-5.png\";a:1:{s:8:\"image_id\";s:9:\"1339|full\";}}s:5:\"menus\";a:2:{s:23:\"header-blocks-menu-cart\";s:4:\"true\";s:23:\"header-blocks-ecommerce\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/default-header-04/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/09/default-header-06-400x73.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:73;}s:4:\"tags\";a:5:{i:0;s:8:\"centered\";i:1;s:7:\"default\";i:2;s:4:\"shop\";i:3;s:6:\"sticky\";i:4;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/default-header-06-800x146.jpg\";}s:7:\"_fusion\";a:23:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#ef3c1a\";s:16:\"color2_overwrite\";s:7:\"#fafafa\";s:16:\"color3_overwrite\";s:7:\"#f8dbd3\";s:16:\"color8_overwrite\";s:7:\"#080a1c\";s:16:\"color6_overwrite\";s:7:\"#777777\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color4_overwrite\";s:7:\"#edcf3b\";s:16:\"color7_overwrite\";s:7:\"#54413a\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:9:\"font-size\";s:4:\"17px\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Jost\";s:9:\"font-size\";s:4:\"12px\";s:14:\"text-transform\";s:9:\"uppercase\";s:14:\"letter-spacing\";s:3:\"1px\";}s:7:\"h6_size\";s:4:\"17px\";s:7:\"h3_size\";s:4:\"34px\";}}s:9:\"item-1326\";a:11:{s:2:\"ID\";i:1326;s:10:\"post_title\";s:26:\"Default Flyout Header 1326\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/09/logo-studio-default-6.png\";a:1:{s:8:\"image_id\";s:9:\"1358|full\";}}s:5:\"menus\";a:1:{s:41:\"header-blocks-flyout-menu-with-search-bar\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/default-header-07/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/09/default-header-07-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:3:{i:0;s:7:\"default\";i:1;s:6:\"flyout\";i:2;s:6:\"search\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/09/default-header-07-800x78.jpg\";}s:7:\"_fusion\";a:17:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color6_overwrite\";s:7:\"#270c5b\";s:16:\"color5_overwrite\";s:7:\"#7244d1\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f7f1\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Raleway\";s:9:\"font-size\";s:4:\"16px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:16:\"color4_overwrite\";s:7:\"#af92db\";s:16:\"color3_overwrite\";s:7:\"#d5d2db\";s:16:\"color7_overwrite\";s:7:\"#220042\";s:16:\"color8_overwrite\";s:7:\"#000000\";}}s:8:\"item-508\";a:11:{s:2:\"ID\";i:508;s:10:\"post_title\";s:27:\"Default Centered Header 508\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-7.png\";a:1:{s:8:\"image_id\";s:9:\"1357|full\";}}s:5:\"menus\";a:3:{s:23:\"header-blocks-left-menu\";s:4:\"true\";s:24:\"header-blocks-right-menu\";s:4:\"true\";s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/default-header-06/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/08/default-header-05-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:4:{i:0;s:8:\"centered\";i:1;s:7:\"default\";i:2;s:6:\"simple\";i:3;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/08/default-header-05-800x78.jpg\";}s:7:\"_fusion\";a:17:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#0277b6\";s:16:\"color4_overwrite\";s:7:\"#68c1c1\";s:16:\"color8_overwrite\";s:7:\"#0c162e\";s:16:\"color2_overwrite\";s:7:\"#eef5f8\";s:16:\"color3_overwrite\";s:7:\"#cdd0d6\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color6_overwrite\";s:7:\"#4d6a8e\";s:16:\"color7_overwrite\";s:7:\"#20233a\";s:21:\"typography3_overwrite\";a:5:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:4:\"17px\";}}}s:8:\"item-505\";a:11:{s:2:\"ID\";i:505;s:10:\"post_title\";s:25:\"Default Search Header 505\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-4.png\";a:1:{s:8:\"image_id\";s:9:\"1332|full\";}}s:5:\"menus\";a:2:{s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";s:25:\"footer-pages-menu-01-main\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/default-header-05/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/08/default-header-04-400x77.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:77;}s:4:\"tags\";a:4:{i:0;s:7:\"default\";i:1;s:6:\"search\";i:2;s:6:\"sticky\";i:3;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/default-header-04-800x154.jpg\";}s:7:\"_fusion\";a:19:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color8_overwrite\";s:7:\"#1b1d1e\";s:16:\"color2_overwrite\";s:7:\"#e8edf0\";s:16:\"color1_overwrite\";s:7:\"#fcfcfc\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#dd879e\";s:16:\"color5_overwrite\";s:7:\"#a8840d\";s:16:\"color6_overwrite\";s:7:\"#875f52\";s:16:\"color7_overwrite\";s:7:\"#4c3a37\";s:21:\"typography2_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography5_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:9:\"font-size\";s:4:\"12px\";}s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";}}}s:8:\"item-496\";a:11:{s:2:\"ID\";i:496;s:10:\"post_title\";s:26:\"Default Top Bar Header 496\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-3.png\";a:1:{s:8:\"image_id\";s:9:\"1331|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/default-header-03/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/08/default-header-03-400x50.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:50;}s:4:\"tags\";a:3:{i:0;s:7:\"default\";i:1;s:6:\"sticky\";i:2;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/default-header-03-800x100.jpg\";}s:7:\"_fusion\";a:18:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color8_overwrite\";s:7:\"#22201d\";s:16:\"color5_overwrite\";s:7:\"#e86247\";s:16:\"color6_overwrite\";s:7:\"#c34535\";s:21:\"typography3_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:9:\"font-size\";s:4:\"16px\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"20px\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f7efdc\";s:16:\"color3_overwrite\";s:7:\"#e2d4d0\";s:16:\"color4_overwrite\";s:7:\"#e5cd30\";s:16:\"color7_overwrite\";s:7:\"#3d3a36\";}}s:8:\"item-501\";a:11:{s:2:\"ID\";i:501;s:10:\"post_title\";s:26:\"Default Top Bar Header 501\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-2.png\";a:1:{s:8:\"image_id\";s:9:\"1330|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/default-header-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/08/default-header-02-400x51.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:51;}s:4:\"tags\";a:3:{i:0;s:7:\"default\";i:1;s:6:\"sticky\";i:2;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/default-header-02-800x103.jpg\";}s:7:\"_fusion\";a:20:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#319ac4\";s:16:\"color6_overwrite\";s:7:\"#0d6b8f\";s:16:\"color4_overwrite\";s:7:\"#7bf249\";s:16:\"color2_overwrite\";s:7:\"#f1f6f9\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color3_overwrite\";s:7:\"#ace0e0\";s:16:\"color7_overwrite\";s:7:\"#022d7c\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:21:\"typography3_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Be Vietnam Pro\";s:9:\"font-size\";s:4:\"16px\";}s:7:\"h6_size\";s:4:\"16px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h4_size\";s:4:\"28px\";}}s:8:\"item-500\";a:11:{s:2:\"ID\";i:500;s:10:\"post_title\";s:18:\"Default Header 500\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-default-1.png\";a:1:{s:8:\"image_id\";s:9:\"1329|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/default-header-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/08/default-header-01-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:3:{i:0;s:7:\"default\";i:1;s:6:\"simple\";i:2;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/08/default-header-01-800x78.jpg\";}s:7:\"_fusion\";a:17:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#736eef\";s:16:\"color8_overwrite\";s:7:\"#1a191c\";s:16:\"color6_overwrite\";s:7:\"#7362b2\";s:16:\"color7_overwrite\";s:7:\"#574068\";s:16:\"color4_overwrite\";s:7:\"#87ddb1\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color2_overwrite\";s:7:\"#eff0f2\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Poppins\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";}}}s:8:\"item-297\";a:11:{s:2:\"ID\";i:297;s:10:\"post_title\";s:26:\"Flyout Centered Header 297\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2021/08/logo-green-studio.png\";a:1:{s:8:\"image_id\";s:9:\"1182|full\";}}s:5:\"menus\";a:2:{s:25:\"header-blocks-flyout-menu\";s:4:\"true\";s:29:\"header-blocks-menu-icons-only\";s:4:\"true\";}}s:3:\"url\";s:63:\"https://avada.studio/fusion_tb_section/simple-flyout-header-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/08/flyout-header-green-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:6:{i:0;s:8:\"centered\";i:1;s:6:\"flyout\";i:2;s:6:\"search\";i:3;s:6:\"simple\";i:4;s:11:\"sliding-bar\";i:5;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/08/flyout-header-green-800x78.jpg\";}s:7:\"_fusion\";a:17:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color6_overwrite\";s:7:\"#007c89\";s:16:\"color7_overwrite\";s:7:\"#0d5045\";s:16:\"color8_overwrite\";s:7:\"#0b1e1c\";s:16:\"color5_overwrite\";s:7:\"#0098bf\";s:16:\"color4_overwrite\";s:7:\"#85dbac\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color2_overwrite\";s:7:\"#e8eae9\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:21:\"typography3_overwrite\";a:5:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Raleway\";s:9:\"font-size\";s:4:\"18px\";}}}s:8:\"item-296\";a:11:{s:2:\"ID\";i:296;s:10:\"post_title\";s:20:\"Menu Desc Header 296\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2021/08/logo-peach-header.png\";a:1:{s:8:\"image_id\";s:9:\"1177|full\";}}s:5:\"menus\";a:1:{s:35:\"header-blocks-menu-with-description\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:69:\"https://avada.studio/fusion_tb_section/header-menu-with-descriptions/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/08/header-menu-with-descriptions-400x34.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:34;}s:4:\"tags\";a:2:{i:0;s:10:\"full-width\";i:1;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/08/header-menu-with-descriptions-800x68.jpg\";}s:7:\"_fusion\";a:20:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#fdf4e5\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#e0a8dd\";s:16:\"color5_overwrite\";s:7:\"#3269ff\";s:16:\"color6_overwrite\";s:7:\"#cb2f67\";s:16:\"color7_overwrite\";s:7:\"#230078\";s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:21:\"typography2_overwrite\";a:6:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";}s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-295\";a:11:{s:2:\"ID\";i:295;s:10:\"post_title\";s:15:\"Side Header 295\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2021/08/logo-abstract-shape.png\";a:1:{s:8:\"image_id\";s:9:\"1184|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/side-header-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/08/side-header-dark-bt-gradient-400x268.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:268;}s:4:\"tags\";a:3:{i:0;s:11:\"full-height\";i:1;s:11:\"side-header\";i:2;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/08/side-header-dark-bt-gradient-800x536.jpg\";}s:7:\"_fusion\";a:22:{s:19:\"awb_header_bg_color\";s:17:\"var(--awb-color8)\";s:8:\"position\";s:4:\"left\";s:17:\"side_header_width\";s:3:\"320\";s:17:\"header_breakpoint\";s:6:\"medium\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#71b4fc\";s:16:\"color5_overwrite\";s:7:\"#007afc\";s:16:\"color6_overwrite\";s:7:\"#8832d2\";s:16:\"color7_overwrite\";s:7:\"#3a4754\";s:16:\"color8_overwrite\";s:7:\"#0e1012\";s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:4:\"25px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:8:\"item-294\";a:11:{s:2:\"ID\";i:294;s:10:\"post_title\";s:15:\"Side Header 294\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2021/08/logo-basic-shapes.png\";a:1:{s:8:\"image_id\";s:9:\"1186|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/side-header-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/08/side-header-light-flat-400x268.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:268;}s:4:\"tags\";a:3:{i:0;s:11:\"full-height\";i:1;s:11:\"side-header\";i:2;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/08/side-header-light-flat-800x536.jpg\";}s:7:\"_fusion\";a:21:{s:8:\"position\";s:4:\"left\";s:17:\"side_header_width\";s:3:\"320\";s:17:\"header_breakpoint\";s:6:\"medium\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color8_overwrite\";s:7:\"#040404\";s:16:\"color4_overwrite\";s:7:\"#fce357\";s:16:\"color3_overwrite\";s:7:\"#fff06d\";s:16:\"color2_overwrite\";s:7:\"#def8f8\";s:16:\"color5_overwrite\";s:7:\"#db5c4e\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color6_overwrite\";s:7:\"#af3f3f\";s:16:\"color7_overwrite\";s:7:\"#5b1a0c\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.8\";}s:19:\"awb_header_bg_color\";s:17:\"var(--awb-color1)\";}}s:8:\"item-230\";a:11:{s:2:\"ID\";i:230;s:10:\"post_title\";s:19:\"Floating Header 230\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:2:{s:69:\"https://avada.studio/wp-content/uploads/2021/08/logo-basic-studio.png\";a:1:{s:8:\"image_id\";s:9:\"1259|full\";}s:71:\"https://avada.studio/wp-content/uploads/2021/08/hero-person-smiling.jpg\";a:1:{s:8:\"image_id\";s:9:\"1264|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}s:5:\"forms\";a:1:{i:316;s:4:\"true\";}}s:3:\"url\";s:67:\"https://avada.studio/fusion_tb_section/hedaer-with-hero-content-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/08/Screenshot_129-400x294.png\";s:5:\"width\";i:400;s:6:\"height\";i:294;}s:4:\"tags\";a:2:{i:0;s:8:\"floating\";i:1;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/08/Screenshot_129-800x587.png\";}s:7:\"_fusion\";a:27:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f0f3f2\";s:16:\"color3_overwrite\";s:7:\"#cbd6d6\";s:16:\"color4_overwrite\";s:7:\"#4ac481\";s:16:\"color5_overwrite\";s:7:\"#02836c\";s:16:\"color6_overwrite\";s:7:\"#407075\";s:16:\"color7_overwrite\";s:7:\"#464c55\";s:16:\"color8_overwrite\";s:7:\"#1f2124\";s:7:\"h1_size\";s:4:\"70px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.1\";s:14:\"letter-spacing\";s:8:\"-0.032em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:7:\"h6_size\";s:4:\"16px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h3_size\";s:4:\"39px\";}}s:8:\"item-229\";a:11:{s:2:\"ID\";i:229;s:10:\"post_title\";s:17:\"Simple Header 229\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-lines.png\";a:1:{s:8:\"image_id\";s:9:\"1268|full\";}}s:5:\"menus\";a:2:{s:18:\"header-blocks-menu\";s:4:\"true\";s:20:\"business-header-menu\";s:4:\"true\";}}s:3:\"url\";s:59:\"https://avada.studio/fusion_tb_section/header-two-menus-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/08/header-two-rows-menu-400x53.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:53;}s:4:\"tags\";a:2:{i:0;s:6:\"sticky\";i:1;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/08/header-two-rows-menu-800x107.jpg\";}s:7:\"_fusion\";a:19:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:25:\"template_sidebar_position\";s:5:\"right\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:22:\"preview_fusion_element\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color4_overwrite\";s:7:\"#c3e84c\";s:16:\"color5_overwrite\";s:7:\"#4b6ce3\";s:16:\"color6_overwrite\";s:7:\"#5046e4\";s:16:\"color8_overwrite\";s:7:\"#101827\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#e1e8fd\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"24px\";}}}s:8:\"item-228\";a:11:{s:2:\"ID\";i:228;s:10:\"post_title\";s:15:\"Shop Header 228\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2021/08/logo-black-noir.png\";a:1:{s:8:\"image_id\";s:9:\"1194|full\";}}s:5:\"menus\";a:2:{s:23:\"header-blocks-menu-cart\";s:4:\"true\";s:23:\"header-blocks-ecommerce\";s:4:\"true\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/shop-header-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/08/header-ecommerce-dark-400x63.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:63;}s:4:\"tags\";a:4:{i:0;s:6:\"search\";i:1;s:4:\"shop\";i:2;s:6:\"sticky\";i:3;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/08/header-ecommerce-dark-800x126.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color7_overwrite\";s:7:\"#010361\";s:16:\"color5_overwrite\";s:7:\"#007c89\";s:16:\"color6_overwrite\";s:7:\"#3d63ea\";s:16:\"color4_overwrite\";s:7:\"#28d8cd\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#eace3d\";s:16:\"color8_overwrite\";s:7:\"#0f0e11\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";}s:21:\"typography5_overwrite\";a:9:{s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:4:\"20px\";s:14:\"letter-spacing\";s:0:\"\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Rubik\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:9:\"font-size\";s:4:\"15px\";}s:7:\"h6_size\";s:4:\"17px\";s:7:\"h3_size\";s:4:\"34px\";}}s:8:\"item-227\";a:11:{s:2:\"ID\";i:227;s:10:\"post_title\";s:21:\"Full Width Header 227\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2021/08/overlay-logo-studio.png\";a:1:{s:8:\"image_id\";s:9:\"1206|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/simple-header-03/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/08/simple-black-header-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:3:{i:0;s:8:\"centered\";i:1;s:10:\"full-width\";i:2;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/08/simple-black-header-800x78.jpg\";}s:7:\"_fusion\";a:17:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color8_overwrite\";s:7:\"#262626\";s:16:\"color7_overwrite\";s:7:\"#545454\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:14:\"letter-spacing\";s:8:\"-0.006em\";s:9:\"font-size\";s:4:\"19px\";}s:16:\"color6_overwrite\";s:7:\"#606c9e\";s:16:\"color5_overwrite\";s:7:\"#1a7edb\";s:16:\"color4_overwrite\";s:7:\"#a1c679\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";}}s:8:\"item-226\";a:11:{s:2:\"ID\";i:226;s:10:\"post_title\";s:22:\"Gradient Bg Header 226\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:70:\"https://avada.studio/wp-content/uploads/2021/08/logo-rounded-shape.png\";a:1:{s:8:\"image_id\";s:9:\"1217|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:58:\"https://avada.studio/fusion_tb_section/gradient-header-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/header-gradient-bg-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:3:{i:0;s:10:\"full-width\";i:1;s:6:\"search\";i:2;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/header-gradient-bg-800x78.jpg\";}s:7:\"_fusion\";a:19:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2e8e8\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#9393f2\";s:16:\"color5_overwrite\";s:7:\"#ba7c39\";s:16:\"color6_overwrite\";s:7:\"#4840bb\";s:16:\"color7_overwrite\";s:7:\"#232323\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:14:\"text-transform\";s:9:\"uppercase\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-225\";a:11:{s:2:\"ID\";i:225;s:10:\"post_title\";s:21:\"Boxed Menu Header 225\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:75:\"https://avada.studio/wp-content/uploads/2021/08/logo-overlap-white-blue.png\";a:1:{s:8:\"image_id\";s:9:\"1220|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:60:\"https://avada.studio/fusion_tb_section/header-boxed-menu-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/header-blue-pastel-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:1:{i:0;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/header-blue-pastel-800x78.jpg\";}s:7:\"_fusion\";a:20:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#dcecf3\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#67e0ad\";s:16:\"color5_overwrite\";s:7:\"#0081b8\";s:16:\"color6_overwrite\";s:7:\"#3269ff\";s:16:\"color7_overwrite\";s:7:\"#1c2e36\";s:16:\"color8_overwrite\";s:7:\"#10284a\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography4_overwrite\";a:5:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:9:\"font-size\";s:4:\"15px\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-224\";a:11:{s:2:\"ID\";i:224;s:10:\"post_title\";s:17:\"Flyout Header 224\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2021/08/logo-text-only.png\";a:1:{s:8:\"image_id\";s:9:\"1222|full\";}}s:5:\"menus\";a:1:{s:25:\"header-blocks-flyout-menu\";s:4:\"true\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/organic-header-03/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/header-yellow-bg-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:3:{i:0;s:6:\"flyout\";i:1;s:10:\"full-width\";i:2;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/header-yellow-bg-800x78.jpg\";}s:7:\"_fusion\";a:18:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Arimo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"24px\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color7_overwrite\";s:7:\"#1c2f7c\";s:16:\"color8_overwrite\";s:7:\"#10284a\";s:16:\"color2_overwrite\";s:7:\"#fcefbd\";s:16:\"color3_overwrite\";s:7:\"#ffe54b\";s:16:\"color5_overwrite\";s:7:\"#3269ff\";s:16:\"color6_overwrite\";s:7:\"#6476d1\";s:16:\"color4_overwrite\";s:7:\"#f0cc00\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:21:\"typography4_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Arimo\";s:9:\"font-size\";s:4:\"14px\";}}}s:8:\"item-223\";a:11:{s:2:\"ID\";i:223;s:10:\"post_title\";s:21:\"Boxed Menu Header 223\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:81:\"https://avada.studio/wp-content/uploads/2021/08/logo-organic-dark-blue-studio.png\";a:1:{s:8:\"image_id\";s:9:\"1684|full\";}s:96:\"https://avadastudiodev.wpengine.com/wp-content/uploads/2021/08/logo-organic-dark-blue-studio.png\";a:1:{s:8:\"image_id\";s:9:\"1684|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:60:\"https://avada.studio/fusion_tb_section/header-boxed-menu-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/08/organic-dark-blue-header-400x34.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:34;}s:4:\"tags\";a:4:{i:0;s:8:\"floating\";i:1;s:10:\"full-width\";i:2;s:6:\"simple\";i:3;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/08/organic-dark-blue-header-800x68.jpg\";}s:7:\"_fusion\";a:16:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:16:\"color2_overwrite\";s:7:\"#f6f6eb\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#b8a9d8\";s:16:\"color5_overwrite\";s:7:\"#3269ff\";s:16:\"color6_overwrite\";s:7:\"#295be3\";s:16:\"color7_overwrite\";s:7:\"#4c4c4c\";s:16:\"color8_overwrite\";s:7:\"#10284a\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:9:\"font-size\";s:4:\"18px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}}}s:8:\"item-222\";a:11:{s:2:\"ID\";i:222;s:10:\"post_title\";s:15:\"Shop Header 222\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:68:\"https://avada.studio/wp-content/uploads/2021/08/logo-ecommerce-1.png\";a:1:{s:8:\"image_id\";s:9:\"1253|full\";}}s:5:\"menus\";a:2:{s:23:\"header-blocks-menu-cart\";b:1;s:23:\"header-blocks-ecommerce\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/shop-header-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/08/header-store-elegant-400x55.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:55;}s:4:\"tags\";a:5:{i:0;s:8:\"centered\";i:1;s:10:\"full-width\";i:2;s:6:\"search\";i:3;s:4:\"shop\";i:4;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/08/header-store-elegant-800x110.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f1ebe6\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#c97a6a\";s:16:\"color5_overwrite\";s:7:\"#3269ff\";s:16:\"color6_overwrite\";s:7:\"#825e70\";s:16:\"color7_overwrite\";s:7:\"#335072\";s:16:\"color8_overwrite\";s:7:\"#09263f\";s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:6:\"0.03em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Karla\";s:9:\"font-size\";s:4:\"16px\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:7:\"h6_size\";s:4:\"17px\";s:7:\"h3_size\";s:4:\"34px\";}}s:8:\"item-221\";a:11:{s:2:\"ID\";i:221;s:10:\"post_title\";s:17:\"Simple Header 221\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-condensed.png\";a:1:{s:8:\"image_id\";s:9:\"1290|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/simple-header-04/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/header-simple-menu-400x39.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:39;}s:4:\"tags\";a:2:{i:0;s:6:\"simple\";i:1;s:6:\"sticky\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/header-simple-menu-800x78.jpg\";}s:7:\"_fusion\";a:19:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eaeaf9\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#f49790\";s:16:\"color5_overwrite\";s:7:\"#ef3c1a\";s:16:\"color6_overwrite\";s:7:\"#566bbc\";s:16:\"color7_overwrite\";s:7:\"#374177\";s:16:\"color8_overwrite\";s:7:\"#09263f\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-220\";a:11:{s:2:\"ID\";i:220;s:10:\"post_title\";s:18:\"Sign Up Header 220\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2021/08/logo-studio-organic.png\";a:1:{s:8:\"image_id\";s:9:\"1269|full\";}}s:5:\"menus\";a:2:{s:26:\"footer-pages-menu-04-legal\";b:1;s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:1:{i:119;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:63:\"https://avada.studio/fusion_tb_section/header-with-cta-form-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/08/header-top-bar-red-velvet-400x50.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:50;}s:4:\"tags\";a:2:{i:0;s:6:\"signup\";i:1;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/08/header-top-bar-red-velvet-800x100.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2eff0\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#b28fea\";s:16:\"color5_overwrite\";s:7:\"#ff575a\";s:16:\"color6_overwrite\";s:7:\"#ef3c1a\";s:16:\"color7_overwrite\";s:7:\"#7f366d\";s:16:\"color8_overwrite\";s:7:\"#450a28\";s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography4_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"12px\";s:14:\"text-transform\";s:9:\"uppercase\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-218\";a:11:{s:2:\"ID\";i:218;s:10:\"post_title\";s:25:\"Menu With Icon Header 218\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/150.png\";a:1:{s:8:\"image_id\";s:9:\"1191|full\";}}s:5:\"menus\";a:1:{s:29:\"header-blocks-menu-with-icons\";s:4:\"true\";}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/simple-header-05/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2021/08/header-15-400x53.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:53;}s:4:\"tags\";a:3:{i:0;s:6:\"simple\";i:1;s:6:\"sticky\";i:2;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/08/header-15-800x107.jpg\";}s:7:\"_fusion\";a:18:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color7_overwrite\";s:7:\"#0010de\";s:16:\"color8_overwrite\";s:7:\"#0300c6\";s:16:\"color5_overwrite\";s:7:\"#007c89\";s:16:\"color4_overwrite\";s:7:\"#8c98db\";s:16:\"color6_overwrite\";s:7:\"#63607c\";s:16:\"color2_overwrite\";s:7:\"#def8f8\";s:16:\"color3_overwrite\";s:7:\"#c0d0d6\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:21:\"typography3_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:21:\"Atkinson Hyperlegible\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography4_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:21:\"Atkinson Hyperlegible\";s:9:\"font-size\";s:4:\"16px\";}}}s:8:\"item-217\";a:11:{s:2:\"ID\";i:217;s:10:\"post_title\";s:24:\"Centered Menu Header 217\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/148.png\";a:1:{s:8:\"image_id\";s:9:\"1180|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:63:\"https://avada.studio/fusion_tb_section/header-menu-centered-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2021/08/header-16-400x41.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:41;}s:4:\"tags\";a:3:{i:0;s:8:\"centered\";i:1;s:10:\"full-width\";i:2;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2021/08/header-16-800x82.jpg\";}s:7:\"_fusion\";a:19:{s:17:\"header_breakpoint\";s:5:\"small\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f4\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#7baa9a\";s:16:\"color5_overwrite\";s:7:\"#3e8ef6\";s:16:\"color6_overwrite\";s:7:\"#007c89\";s:16:\"color7_overwrite\";s:7:\"#1f2e3d\";s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Merriweather\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-135\";a:11:{s:2:\"ID\";i:135;s:10:\"post_title\";s:17:\"Simple Header 135\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/146.png\";a:1:{s:8:\"image_id\";s:9:\"1175|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/simple-header-06/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/08/header-17-02-400x53.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:53;}s:4:\"tags\";a:2:{i:0;s:6:\"simple\";i:1;s:7:\"top-bar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/header-17-02-800x106.jpg\";}s:7:\"_fusion\";a:21:{s:17:\"header_breakpoint\";s:5:\"small\";s:21:\"studio_replace_params\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:16:\"color5_overwrite\";s:7:\"#db6f47\";s:16:\"color4_overwrite\";s:7:\"#e5a590\";s:16:\"color6_overwrite\";s:7:\"#007c89\";s:16:\"color7_overwrite\";s:7:\"#512d29\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color2_overwrite\";s:7:\"#def8f8\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Azeret Mono\";s:9:\"font-size\";s:4:\"17px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:9:\"font-size\";s:4:\"15px\";}s:7:\"h6_size\";s:4:\"16px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h4_size\";s:4:\"28px\";}}}s:10:\"mega_menus\";a:20:{s:9:\"item-6118\";a:10:{s:2:\"ID\";i:6118;s:10:\"post_title\";s:28:\"Shop Products Mega Menu 6118\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:70:\"https://avada.studio/wp-content/uploads/2024/06/clothes-category-2.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5279|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:2:{i:5215;b:1;i:6119;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:52:\"https://avada.studio/fusion_element/shop-products-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2026/03/full-width-shop-megamenu-ss1-400x96.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:96;}s:4:\"tags\";a:4:{i:0;s:8:\"products\";i:1;s:4:\"sale\";i:2;s:4:\"shop\";i:3;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2026/03/full-width-shop-megamenu-ss1-800x191.jpg\";}}s:9:\"item-6113\";a:10:{s:2:\"ID\";i:6113;s:10:\"post_title\";s:29:\"Food & Recipes Mega Menu 6113\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:68:\"https://avada.studio/wp-content/uploads/2026/02/cheese-burger-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6115|full\";}s:70:\"https://avada.studio/wp-content/uploads/2026/02/most-voted-food-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6114|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/food-recipes/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2026/02/food-recipe-mm-ss1-400x223.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:223;}s:4:\"tags\";a:3:{i:0;s:10:\"categories\";i:1;s:4:\"food\";i:2;s:6:\"recipe\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2026/02/food-recipe-mm-ss1.jpg\";}}s:9:\"item-5969\";a:10:{s:2:\"ID\";i:5969;s:10:\"post_title\";s:26:\"Fall Themed Mega Menu 5969\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:69:\"https://avada.studio/wp-content/uploads/2025/10/autumn-trends-bg1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5971|full\";}s:70:\"https://avada.studio/wp-content/uploads/2025/10/fall-fragrance-bg1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5970|full\";}}s:5:\"menus\";a:2:{s:24:\"mega-menu-ecommerce-shop\";s:4:\"true\";s:31:\"mega-menu-ecommerce-accessories\";s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/fall-themed/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2025/10/fall-mm-ss-2-400x145.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:145;}s:4:\"tags\";a:4:{i:0;s:6:\"autumn\";i:1;s:9:\"ecommerce\";i:2;s:4:\"fall\";i:3;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2025/10/fall-mm-ss-2-800x290.jpg\";}}s:9:\"item-5423\";a:10:{s:2:\"ID\";i:5423;s:10:\"post_title\";s:29:\"Halloween Sale Mega Menu 5423\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:74:\"https://avada.studio/wp-content/uploads/2024/09/halloween-must-haves-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5432|full\";}s:76:\"https://avada.studio/wp-content/uploads/2024/09/halloween-animatronics-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5434|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:5430;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/halloween-sale/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2024/09/halloween-sales-mm-1-400x183.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:183;}s:4:\"tags\";a:4:{i:0;s:9:\"ecommerce\";i:1;s:9:\"halloween\";i:2;s:8:\"products\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2024/09/halloween-sales-mm-1-800x365.jpg\";}}s:9:\"item-5218\";a:10:{s:2:\"ID\";i:5218;s:10:\"post_title\";s:22:\"Banners Mega Menu 5218\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:66:\"https://avada.studio/wp-content/uploads/2024/05/mm-banner-bg-3.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5219|full\";}s:66:\"https://avada.studio/wp-content/uploads/2024/05/mm-banner-bg-2.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5212|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/banners/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2024/05/banners-mm-ss-1-400x101.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:101;}s:4:\"tags\";a:4:{i:0;s:8:\"discount\";i:1;s:9:\"ecommerce\";i:2;s:4:\"sale\";i:3;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2024/05/banners-mm-ss-1-800x202.jpg\";}}s:9:\"item-5210\";a:10:{s:2:\"ID\";i:5210;s:10:\"post_title\";s:22:\"Product Mega Menu 5210\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_element/product-5/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2024/05/products-mm-ss-2-400x216.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:216;}s:4:\"tags\";a:3:{i:0;s:9:\"ecommerce\";i:1;s:4:\"sale\";i:2;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2024/05/products-mm-ss-2.jpg\";}}s:9:\"item-4862\";a:10:{s:2:\"ID\";i:4862;s:10:\"post_title\";s:23:\"Features Mega Menu 4862\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:6:{s:61:\"https://avada.studio/wp-content/uploads/2023/11/feature-8.svg\";a:1:{s:8:\"image_id\";s:9:\"4874|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/11/feature-6.svg\";a:1:{s:8:\"image_id\";s:9:\"4872|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/11/feature-7.svg\";a:1:{s:8:\"image_id\";s:9:\"4873|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/11/feature-5.svg\";a:1:{s:8:\"image_id\";s:9:\"4871|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/11/feature-3.svg\";a:1:{s:8:\"image_id\";s:9:\"4869|full\";}s:56:\"https://avada.studio/wp-content/uploads/2023/11/bg-3.svg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/features-5/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2023/11/mega-2-ss-400x212.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:212;}s:4:\"tags\";a:1:{i:0;s:8:\"features\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2023/11/mega-2-ss-800x423.jpg\";}}s:9:\"item-4838\";a:10:{s:2:\"ID\";i:4838;s:10:\"post_title\";s:24:\"Corporate Mega Menu 4838\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:48:\"https://avada.studio/fusion_element/corporate-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2023/11/mega-ss-400x233.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:233;}s:4:\"tags\";a:1:{i:0;s:9:\"corporate\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2023/11/mega-ss-800x466.jpg\";}}s:9:\"item-4582\";a:10:{s:2:\"ID\";i:4582;s:10:\"post_title\";s:28:\"General Sales Mega Menu 4582\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:6:{s:67:\"https://avada.studio/wp-content/uploads/2023/10/savings-deals-1.jpg\";s:4:\"true\";s:67:\"https://avada.studio/wp-content/uploads/2023/10/savings-deals-2.jpg\";s:4:\"true\";s:67:\"https://avada.studio/wp-content/uploads/2023/10/savings-deals-3.jpg\";s:4:\"true\";s:62:\"https://avada.studio/wp-content/uploads/2023/10/giftcard-1.jpg\";s:4:\"true\";s:68:\"https://avada.studio/wp-content/uploads/2023/10/outerwear-deal-1.jpg\";s:4:\"true\";s:70:\"https://avada.studio/wp-content/uploads/2023/10/tv-soundbar-deal-1.jpg\";s:4:\"true\";}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/general-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/10/sales-megamenu-ss-1-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;}s:4:\"tags\";a:3:{i:0;s:5:\"deals\";i:1;s:8:\"discount\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/10/sales-megamenu-ss-1-800x486.jpg\";}}s:9:\"item-4387\";a:10:{s:2:\"ID\";i:4387;s:10:\"post_title\";s:25:\"Book Store Mega Menu 4387\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:69:\"https://avada.studio/wp-content/uploads/2023/08/book-store-sale-4.jpg\";s:4:\"true\";s:58:\"https://avada.studio/wp-content/uploads/2023/08/book-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4395|full\";}}s:5:\"menus\";a:1:{s:21:\"book-store-categories\";s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/book-store/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/08/book-store-megamenu-400x111.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:111;}s:4:\"tags\";a:1:{i:0;s:5:\"books\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/08/book-store-megamenu-800x221.jpg\";}}s:9:\"item-4106\";a:10:{s:2:\"ID\";i:4106;s:10:\"post_title\";s:23:\"Services Mega Menu 4106\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/services-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/05/services-mm-ss-02-400x228.png\";s:5:\"width\";i:400;s:6:\"height\";i:228;}s:4:\"tags\";a:1:{i:0;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/05/services-mm-ss-02-800x455.png\";}}s:9:\"item-3661\";a:10:{s:2:\"ID\";i:3661;s:10:\"post_title\";s:24:\"Mini Cart Mega Menu 3661\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/mini-cart/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/11/Screenshot_369-400x375.png\";s:5:\"width\";i:400;s:6:\"height\";i:375;}s:4:\"tags\";a:1:{i:0;s:4:\"cart\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/11/Screenshot_369.png\";}}s:9:\"item-3601\";a:10:{s:2:\"ID\";i:3601;s:10:\"post_title\";s:21:\"Retail Mega Menu 3601\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2022/11/521.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2022/11/520.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/retail/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/11/retail-ss-400x503.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:503;}s:4:\"tags\";a:1:{i:0;s:9:\"ecommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2022/11/retail-ss.jpg\";}}s:9:\"item-3533\";a:10:{s:2:\"ID\";i:3533;s:10:\"post_title\";s:30:\"Simple Business Mega Menu 3533\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:63:\"https://avada.studio/wp-content/uploads/2022/10/project-001.jpg\";a:1:{s:8:\"image_id\";s:9:\"3541|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:52:\"https://avada.studio/fusion_element/simple-business/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/10/simple-business-mm-ss-400x201.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:201;}s:4:\"tags\";a:1:{i:0;s:9:\"corporate\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/10/simple-business-mm-ss-800x403.jpg\";}}s:9:\"item-3610\";a:10:{s:2:\"ID\";i:3610;s:10:\"post_title\";s:19:\"Food Mega Menu 3610\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:60:\"https://avada.studio/wp-content/uploads/2022/06/topology.jpg\";b:1;s:64:\"https://avada.studio/wp-content/uploads/2022/05/galery-img-4.jpg\";a:1:{s:8:\"image_id\";s:9:\"2636|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/06/443.jpg\";a:1:{s:8:\"image_id\";s:9:\"2713|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/food-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/11/food-recipes-megamenu-ss-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;}s:4:\"tags\";a:2:{i:0;s:4:\"food\";i:1;s:6:\"recipe\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/11/food-recipes-megamenu-ss-800x447.jpg\";}}s:9:\"item-3508\";a:10:{s:2:\"ID\";i:3508;s:10:\"post_title\";s:23:\"Shopping Mega Menu 3508\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:5:{s:62:\"https://avada.studio/wp-content/uploads/2022/10/shop-men-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3520|full\";}s:64:\"https://avada.studio/wp-content/uploads/2022/10/shop-women-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3521|full\";}s:70:\"https://avada.studio/wp-content/uploads/2022/10/shop-accessories-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3519|full\";}s:67:\"https://avada.studio/wp-content/uploads/2022/10/end-season-sale.jpg\";a:1:{s:8:\"image_id\";s:9:\"3522|full\";}s:63:\"https://avada.studio/wp-content/uploads/2022/10/mega-sale-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3523|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/shopping/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/10/shopping-mega-menu-ss-400x202.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:202;}s:4:\"tags\";a:2:{i:0;s:8:\"products\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/10/shopping-mega-menu-ss-800x404.jpg\";}}s:9:\"item-3622\";a:10:{s:2:\"ID\";i:3622;s:10:\"post_title\";s:23:\"Services Mega Menu 3622\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:55:\"https://avada.studio/wp-content/uploads/2022/11/528.svg\";a:1:{s:8:\"image_id\";s:9:\"3636|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/11/529.svg\";a:1:{s:8:\"image_id\";s:9:\"3635|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/11/530.svg\";a:1:{s:8:\"image_id\";s:9:\"3634|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/11/531.svg\";a:1:{s:8:\"image_id\";s:9:\"3633|full\";}}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/services-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/11/services-ss-400x401.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:401;}s:4:\"tags\";a:1:{i:0;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/11/services-ss.jpg\";}}s:9:\"item-3499\";a:10:{s:2:\"ID\";i:3499;s:10:\"post_title\";s:21:\"Prints Mega Menu 3499\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:53:\"https://avada.studio/wp-content/uploads/2022/10/1.png\";a:1:{s:8:\"image_id\";s:9:\"3506|full\";}s:53:\"https://avada.studio/wp-content/uploads/2022/10/2.png\";a:1:{s:8:\"image_id\";s:9:\"3505|full\";}s:53:\"https://avada.studio/wp-content/uploads/2022/10/3.png\";a:1:{s:8:\"image_id\";s:9:\"3504|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/prints/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/10/prints-400x189.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:189;}s:4:\"tags\";a:1:{i:0;s:9:\"ecommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/10/prints-800x377.jpg\";}}s:9:\"item-3494\";a:10:{s:2:\"ID\";i:3494;s:10:\"post_title\";s:18:\"App Mega Menu 3494\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:40:\"https://avada.studio/fusion_element/app/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/10/app-ss-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;}s:4:\"tags\";a:1:{i:0;s:9:\"corporate\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/10/app-ss-800x394.jpg\";}}s:9:\"item-3468\";a:10:{s:2:\"ID\";i:3468;s:10:\"post_title\";s:20:\"Basic Mega Menu 3468\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2022/04/product-tshirt-main.jpg\";a:1:{s:8:\"image_id\";s:9:\"2602|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:42:\"https://avada.studio/fusion_element/basic/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/10/ecommerce-basic-mega-menu-400x211.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:211;}s:4:\"tags\";a:2:{i:0;s:10:\"categories\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/10/ecommerce-basic-mega-menu-800x421.jpg\";}}}s:5:\"icons\";a:36:{s:9:\"item-6125\";a:10:{s:2:\"ID\";i:6125;s:10:\"post_title\";s:27:\"Season Spring Icon Set 6125\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:70:\"https://avada.studio/wp-content/uploads/2026/03/Season-Spring-v1.0.zip\";}s:3:\"url\";s:48:\"https://avada.studio/?fusion_icons=season-spring\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2026/03/season-spring-iconset-01-400x321.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:321;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2026/03/season-spring-iconset-01.jpg\";}}s:9:\"item-5949\";a:10:{s:2:\"ID\";i:5949;s:10:\"post_title\";s:20:\"Autumn Icon Set 5949\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:68:\"https://avada.studio/wp-content/uploads/2025/10/Autumn-Fall-v1.0.zip\";}s:3:\"url\";s:41:\"https://avada.studio/?fusion_icons=autumn\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/10/autumn-fall-icon-set-ss1-400x146.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:146;}s:4:\"tags\";a:2:{i:0;s:6:\"autumn\";i:1;s:4:\"fall\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/10/autumn-fall-icon-set-ss1-800x291.jpg\";}}s:9:\"item-5919\";a:10:{s:2:\"ID\";i:5919;s:10:\"post_title\";s:25:\"Halloween 3 Icon Set 5919\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:68:\"https://avada.studio/wp-content/uploads/2025/10/Halloween-3-v2.0.zip\";}s:3:\"url\";s:46:\"https://avada.studio/?fusion_icons=halloween-3\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2025/10/halloween-icon-setss4-400x219.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:219;}s:4:\"tags\";a:1:{i:0;s:9:\"halloween\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2025/10/halloween-icon-setss4-800x437.jpg\";}}s:9:\"item-5881\";a:10:{s:2:\"ID\";i:5881;s:10:\"post_title\";s:25:\"Real Estate Icon Set 5881\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:77:\"https://avada.studio/wp-content/uploads/2025/09/Real-Estate-Icon-Set-v2.5.zip\";}s:3:\"url\";s:46:\"https://avada.studio/?fusion_icons=real-estate\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/09/real-estate-icon-set-ss2-400x209.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:209;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/09/real-estate-icon-set-ss2.jpg\";}}s:9:\"item-5353\";a:10:{s:2:\"ID\";i:5353;s:10:\"post_title\";s:26:\"Thanksgiving Icon Set 5353\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:67:\"https://avada.studio/wp-content/uploads/2024/09/Thanksgiving-v9.zip\";}s:3:\"url\";s:47:\"https://avada.studio/?fusion_icons=thanksgiving\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/09/thanksgiving-icon-set-ss1-400x157.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:157;}s:4:\"tags\";a:2:{i:0;s:4:\"food\";i:1;s:12:\"thanksgiving\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2024/09/thanksgiving-icon-set-ss1-800x314.jpg\";}}s:9:\"item-5344\";a:10:{s:2:\"ID\";i:5344;s:10:\"post_title\";s:25:\"Halloween 2 Icon Set 5344\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:68:\"https://avada.studio/wp-content/uploads/2024/09/Halloween-2-v4.0.zip\";}s:3:\"url\";s:46:\"https://avada.studio/?fusion_icons=halloween-2\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/09/halloween-2-ss-10-400x147.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:147;}s:4:\"tags\";a:1:{i:0;s:9:\"halloween\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/09/halloween-2-ss-10-800x293.jpg\";}}s:9:\"item-5086\";a:10:{s:2:\"ID\";i:5086;s:10:\"post_title\";s:20:\"Spring Icon Set 5086\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:72:\"https://avada.studio/wp-content/uploads/2024/03/Spring-Icon-Set-v1.0.zip\";}s:3:\"url\";s:41:\"https://avada.studio/?fusion_icons=spring\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/03/spring-icons-ss-1-400x229.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:229;}s:4:\"tags\";a:1:{i:0;s:6:\"spring\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/03/spring-icons-ss-1-800x457.jpg\";}}s:9:\"item-4960\";a:10:{s:2:\"ID\";i:4960;s:10:\"post_title\";s:29:\"Valentine\'s Day Icon Set 4960\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:66:\"https://avada.studio/wp-content/uploads/2024/02/valentine-v1.3.zip\";}s:3:\"url\";s:49:\"https://avada.studio/?fusion_icons=valentines-day\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2024/02/icon-ss-400x131.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:131;}s:4:\"tags\";a:1:{i:0;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:59:\"https://avada.studio/wp-content/uploads/2024/02/icon-ss.jpg\";}}s:9:\"item-4571\";a:10:{s:2:\"ID\";i:4571;s:10:\"post_title\";s:30:\"Holidays Festive Icon Set 4571\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:73:\"https://avada.studio/wp-content/uploads/2023/10/Holidays-Festive-v1.0.zip\";}s:3:\"url\";s:51:\"https://avada.studio/?fusion_icons=holidays-festive\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2023/10/holidays-festive-icons-ss-1-400x411.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:411;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/10/holidays-festive-icons-ss-1.jpg\";}}s:9:\"item-4542\";a:10:{s:2:\"ID\";i:4542;s:10:\"post_title\";s:23:\"Halloween Icon Set 4542\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:75:\"https://avada.studio/wp-content/uploads/2023/09/Halloween-Icon-Set-v1.0.zip\";}s:3:\"url\";s:44:\"https://avada.studio/?fusion_icons=halloween\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/09/halloween-icon-set-400x142.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:142;}s:4:\"tags\";a:1:{i:0;s:9:\"halloween\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/09/halloween-icon-set-800x283.jpg\";}}s:9:\"item-4066\";a:10:{s:2:\"ID\";i:4066;s:10:\"post_title\";s:21:\"Hosting Icon Set 4066\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:73:\"https://avada.studio/wp-content/uploads/2023/04/hosting-template-v3.0.zip\";}s:3:\"url\";s:46:\"https://avada.studio/?fusion_icons=hosting-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2023/04/hosting-template-iconset-ss-400x92.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:92;}s:4:\"tags\";a:1:{i:0;s:7:\"hosting\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2023/04/hosting-template-iconset-ss-800x184.jpg\";}}s:9:\"item-4034\";a:10:{s:2:\"ID\";i:4034;s:10:\"post_title\";s:22:\"Cannabis Icon Set 4034\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:65:\"https://avada.studio/wp-content/uploads/2023/03/cannabis-v1.0.zip\";}s:3:\"url\";s:43:\"https://avada.studio/?fusion_icons=cannabis\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/03/cannabis-icon-ss-400x129.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:129;}s:4:\"tags\";a:1:{i:0;s:8:\"cannabis\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/03/cannabis-icon-ss-800x258.jpg\";}}s:9:\"item-3932\";a:10:{s:2:\"ID\";i:3932;s:10:\"post_title\";s:26:\"Beauty & Spa Icon Set 3932\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:67:\"https://avada.studio/wp-content/uploads/2023/02/beauty-spa-v1.0.zip\";}s:3:\"url\";s:45:\"https://avada.studio/?fusion_icons=beauty-spa\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/02/beauty-spa-iconset-ss-400x130.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:130;}s:4:\"tags\";a:2:{i:0;s:6:\"beauty\";i:1;s:3:\"spa\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/02/beauty-spa-iconset-ss-800x260.jpg\";}}s:9:\"item-3922\";a:10:{s:2:\"ID\";i:3922;s:10:\"post_title\";s:22:\"Outdoors Icon Set 3922\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:65:\"https://avada.studio/wp-content/uploads/2023/02/outdoors-v1.0.zip\";}s:3:\"url\";s:43:\"https://avada.studio/?fusion_icons=outdoors\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2023/02/outdoors-ss-400x214.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:214;}s:4:\"tags\";a:1:{i:0;s:8:\"outdoors\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2023/02/outdoors-ss.jpg\";}}s:9:\"item-3718\";a:10:{s:2:\"ID\";i:3718;s:10:\"post_title\";s:29:\"Bed & Breakfast Icon Set 3718\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:59:\"https://avada.studio/wp-content/uploads/2022/11/bb-v1.0.zip\";}s:3:\"url\";s:48:\"https://avada.studio/?fusion_icons=bed-breakfast\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:65:\"https://avada.studio/wp-content/uploads/2022/11/bb-ss-400x228.png\";s:5:\"width\";i:400;s:6:\"height\";i:228;}s:4:\"tags\";a:1:{i:0;s:5:\"hotel\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:57:\"https://avada.studio/wp-content/uploads/2022/11/bb-ss.png\";}}s:9:\"item-3715\";a:10:{s:2:\"ID\";i:3715;s:10:\"post_title\";s:23:\"Christmas Icon Set 3715\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:66:\"https://avada.studio/wp-content/uploads/2022/11/christmas-v1.0.zip\";}s:3:\"url\";s:44:\"https://avada.studio/?fusion_icons=christmas\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/11/christmas-icon-400x234.png\";s:5:\"width\";i:400;s:6:\"height\";i:234;}s:4:\"tags\";a:1:{i:0;s:9:\"christmas\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/11/christmas-icon.png\";}}s:9:\"item-3316\";a:10:{s:2:\"ID\";i:3316;s:10:\"post_title\";s:19:\"Basic Icon Set 3316\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:62:\"https://avada.studio/wp-content/uploads/2022/09/Basic-v1.0.zip\";}s:3:\"url\";s:40:\"https://avada.studio/?fusion_icons=basic\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/09/basic-icon-set-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;}s:4:\"tags\";a:1:{i:0;s:9:\"interface\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/09/basic-icon-set-800x447.jpg\";}}s:9:\"item-3305\";a:10:{s:2:\"ID\";i:3305;s:10:\"post_title\";s:20:\"Crypto Icon Set 3305\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:63:\"https://avada.studio/wp-content/uploads/2022/09/crypto-v1.0.zip\";}s:3:\"url\";s:41:\"https://avada.studio/?fusion_icons=crypto\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/09/crypto-icons-400x247.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:247;}s:4:\"tags\";a:1:{i:0;s:6:\"crypto\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/09/crypto-icons-800x494.jpg\";}}s:9:\"item-3310\";a:10:{s:2:\"ID\";i:3310;s:10:\"post_title\";s:23:\"Education Icon Set 3310\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:68:\"https://avada.studio/wp-content/uploads/2022/09/Education-v1.0-1.zip\";}s:3:\"url\";s:44:\"https://avada.studio/?fusion_icons=education\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/09/education-icons-set-ss1-400x61.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:61;}s:4:\"tags\";a:1:{i:0;s:9:\"education\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/09/education-icons-set-ss1-800x123.jpg\";}}s:9:\"item-3301\";a:10:{s:2:\"ID\";i:3301;s:10:\"post_title\";s:30:\"Ecommerce Square Icon Set 3301\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:73:\"https://avada.studio/wp-content/uploads/2022/09/Ecommerce-Square-v1.0.zip\";}s:3:\"url\";s:51:\"https://avada.studio/?fusion_icons=ecommerce-square\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/09/ecommerce-square-400x357.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:357;}s:4:\"tags\";a:1:{i:0;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/09/ecommerce-square-800x714.jpg\";}}s:9:\"item-3280\";a:10:{s:2:\"ID\";i:3280;s:10:\"post_title\";s:28:\"User Interface Icon Set 3280\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:71:\"https://avada.studio/wp-content/uploads/2022/09/user-interface-v1.0.zip\";}s:3:\"url\";s:49:\"https://avada.studio/?fusion_icons=user-interface\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/09/user-interface-icon-set-400x361.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:361;}s:4:\"tags\";a:1:{i:0;s:9:\"interface\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/09/user-interface-icon-set-800x722.jpg\";}}s:9:\"item-3057\";a:10:{s:2:\"ID\";i:3057;s:10:\"post_title\";s:21:\"Caterer Icon Set 3057\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:72:\"https://avada.studio/wp-content/uploads/2022/07/Caterer-Icons-Studio.zip\";}s:3:\"url\";s:42:\"https://avada.studio/?fusion_icons=caterer\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/07/caterer-icons-ss-400x125.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:125;}s:4:\"tags\";a:1:{i:0;s:4:\"food\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/07/caterer-icons-ss-800x250.jpg\";}}s:9:\"item-3054\";a:10:{s:2:\"ID\";i:3054;s:10:\"post_title\";s:22:\"Business Icon Set 3054\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:65:\"https://avada.studio/wp-content/uploads/2022/07/business-v1.0.zip\";}s:3:\"url\";s:43:\"https://avada.studio/?fusion_icons=business\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/business-icon-400x489.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:489;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/business-icon-800x977.jpg\";}}s:9:\"item-3032\";a:10:{s:2:\"ID\";i:3032;s:10:\"post_title\";s:28:\"Extreme Sports Icon Set 3032\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:66:\"https://avada.studio/wp-content/uploads/2022/07/extsports-v1.0.zip\";}s:3:\"url\";s:49:\"https://avada.studio/?fusion_icons=extreme-sports\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/07/extreme-sports-icons-ss-400x100.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:100;}s:4:\"tags\";a:1:{i:0;s:6:\"sports\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/07/extreme-sports-icons-ss-800x200.jpg\";}}s:9:\"item-3029\";a:10:{s:2:\"ID\";i:3029;s:10:\"post_title\";s:18:\"City Icon Set 3029\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:61:\"https://avada.studio/wp-content/uploads/2022/07/city-v1.0.zip\";}s:3:\"url\";s:39:\"https://avada.studio/?fusion_icons=city\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/city-icons-ss-400x383.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:383;}s:4:\"tags\";a:1:{i:0;s:4:\"city\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/city-icons-ss-800x767.jpg\";}}s:9:\"item-3015\";a:10:{s:2:\"ID\";i:3015;s:10:\"post_title\";s:20:\"Energy Icon Set 3015\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:63:\"https://avada.studio/wp-content/uploads/2022/07/energy-v1.0.zip\";}s:3:\"url\";s:41:\"https://avada.studio/?fusion_icons=energy\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/07/energy-icon-set-400x138.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:138;}s:4:\"tags\";a:1:{i:0;s:6:\"energy\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/07/energy-icon-set-800x275.jpg\";}}s:8:\"item-983\";a:10:{s:2:\"ID\";i:983;s:10:\"post_title\";s:25:\"Pet Supplies Icon Set 983\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/petsupplies-icon-set.zip\";}s:3:\"url\";s:56:\"https://avada.studio/?fusion_icons=pet-supplies-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/09/pet-supplies-icon-set-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/09/pet-supplies-icon-set-800x241.jpg\";}}s:8:\"item-982\";a:10:{s:2:\"ID\";i:982;s:10:\"post_title\";s:20:\"Fitness Icon Set 982\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:68:\"https://avada.studio/wp-content/uploads/2021/09/fitness-icon-set.zip\";}s:3:\"url\";s:51:\"https://avada.studio/?fusion_icons=fitness-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/09/fitness-icon-set-400x202.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:202;}s:4:\"tags\";a:1:{i:0;s:6:\"sports\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/09/fitness-icon-set-800x404.jpg\";}}s:8:\"item-981\";a:10:{s:2:\"ID\";i:981;s:10:\"post_title\";s:20:\"Builder Icon Set 981\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:68:\"https://avada.studio/wp-content/uploads/2021/09/builder-icon-set.zip\";}s:3:\"url\";s:51:\"https://avada.studio/?fusion_icons=builder-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/builder-icon-set-400x70.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:70;}s:4:\"tags\";a:1:{i:0;s:12:\"construction\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/09/builder-icon-set-800x140.jpg\";}}s:8:\"item-980\";a:10:{s:2:\"ID\";i:980;s:10:\"post_title\";s:22:\"Financial Icon Set 980\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:78:\"https://avada.studio/wp-content/uploads/2021/09/financial-advisor-icon-set.zip\";}s:3:\"url\";s:53:\"https://avada.studio/?fusion_icons=financial-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/09/financial-icon-set-400x129.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:129;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:7:\"finance\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/09/financial-icon-set-800x258.jpg\";}}s:8:\"item-979\";a:10:{s:2:\"ID\";i:979;s:10:\"post_title\";s:27:\"Handmade Store Icon Set 979\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/handmade-icon-set.zip\";}s:3:\"url\";s:58:\"https://avada.studio/?fusion_icons=handmade-store-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/handmade-icon-set-400x140.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:140;}s:4:\"tags\";a:1:{i:0;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/handmade-icon-set-800x280.jpg\";}}s:8:\"item-978\";a:10:{s:2:\"ID\";i:978;s:10:\"post_title\";s:27:\"Marketing Bold Icon Set 978\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/marketing-bold-icon-set.zip\";}s:3:\"url\";s:58:\"https://avada.studio/?fusion_icons=marketing-bold-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/09/marketing-bold-icon-set-400x118.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:118;}s:4:\"tags\";a:1:{i:0;s:9:\"marketing\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/09/marketing-bold-icon-set-800x235.jpg\";}}s:8:\"item-977\";a:10:{s:2:\"ID\";i:977;s:10:\"post_title\";s:29:\"Modern Furniture Icon Set 977\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/modern-furniture-icon-set.zip\";}s:3:\"url\";s:60:\"https://avada.studio/?fusion_icons=modern-furniture-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/modern-furniture-icon-set-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;}s:4:\"tags\";a:2:{i:0;s:9:\"furniture\";i:1;s:4:\"shop\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/modern-furniture-icon-set-800x394.jpg\";}}s:8:\"item-976\";a:10:{s:2:\"ID\";i:976;s:10:\"post_title\";s:27:\"Digital Agency Icon Set 976\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/digital-agency-icon-set.zip\";}s:3:\"url\";s:50:\"https://avada.studio/?fusion_icons=agency-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/09/digital-agency-icon-set-400x123.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:123;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:9:\"marketing\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/09/digital-agency-icon-set-800x246.jpg\";}}s:8:\"item-975\";a:10:{s:2:\"ID\";i:975;s:10:\"post_title\";s:23:\"Accountant Icon Set 975\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/accountant-pro-icon-set.zip\";}s:3:\"url\";s:54:\"https://avada.studio/?fusion_icons=accountant-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/accountant-icon-set-400x239.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:239;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:7:\"finance\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/accountant-icon-set-800x479.jpg\";}}s:8:\"item-974\";a:10:{s:2:\"ID\";i:974;s:10:\"post_title\";s:21:\"Mechanic Icon Set 974\";s:9:\"post_type\";s:12:\"fusion_icons\";s:11:\"avada_media\";a:1:{s:11:\"package_url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/mechanic-icon-set.zip\";}s:3:\"url\";s:52:\"https://avada.studio/?fusion_icons=mechanic-icon-set\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/mechanic-icon-set-400x138.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:138;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/mechanic-icon-set-800x275.jpg\";}}}s:15:\"fusion_template\";a:54:{s:9:\"item-6076\";a:11:{s:2:\"ID\";i:6076;s:10:\"post_title\";s:34:\"Cyber Week Promotion Template 6076\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:12:{s:68:\"https://avada.studio/wp-content/uploads/2025/11/hero-section-bg2.png\";b:1;s:61:\"https://avada.studio/wp-content/uploads/2025/11/bag-icon1.png\";a:1:{s:8:\"image_id\";s:9:\"6079|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/11/game-stick-icon1.png\";a:1:{s:8:\"image_id\";s:9:\"6078|full\";}s:76:\"https://avada.studio/wp-content/uploads/2025/11/cyber-week-accessories01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6083|full\";}s:70:\"https://avada.studio/wp-content/uploads/2025/11/cyber-week-sale-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6081|full\";}s:76:\"https://avada.studio/wp-content/uploads/2025/11/cyber-week-accessories02.jpg\";a:1:{s:8:\"image_id\";s:9:\"6082|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/11/circle-element-02.png\";a:1:{s:19:\"background_image_id\";s:9:\"6086|full\";}s:65:\"https://avada.studio/wp-content/uploads/2025/11/laptops-tech1.jpg\";a:1:{s:8:\"image_id\";s:9:\"6091|full\";}s:64:\"https://avada.studio/wp-content/uploads/2025/11/gaming-tech1.jpg\";a:1:{s:8:\"image_id\";s:9:\"6090|full\";}s:67:\"https://avada.studio/wp-content/uploads/2025/10/gaming-stuff-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6036|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/smartphones-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6037|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/televisions-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6038|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:2:{i:865;b:1;i:6087;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:58:\"https://avada.studio/fusion_template/cyber-week-promotion/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/11/cyber-week-template-ss01-400x933.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:933;}s:4:\"tags\";a:4:{i:0;s:10:\"cyber-week\";i:1;s:6:\"events\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2025/11/cyber-week-template-ss01-800x1867.jpg\";}s:7:\"_fusion\";a:25:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#12d3d3\";s:16:\"color5_overwrite\";s:7:\"#ed25ff\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#0c0c0c\";s:7:\"h2_size\";s:4:\"46px\";s:7:\"h3_size\";s:4:\"38px\";s:7:\"h4_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Zen Dots\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"84px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-6052\";a:11:{s:2:\"ID\";i:6052;s:10:\"post_title\";s:36:\"Black Friday Promotion Template 6052\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:9:{s:68:\"https://avada.studio/wp-content/uploads/2025/11/design-arrows-01.png\";a:1:{s:8:\"image_id\";s:9:\"6054|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/11/design-element-05.png\";a:1:{s:8:\"image_id\";s:9:\"6055|full\";}s:71:\"https://avada.studio/wp-content/uploads/2025/11/black-friday-img-04.jpg\";a:1:{s:8:\"image_id\";s:9:\"6073|full\";}s:67:\"https://avada.studio/wp-content/uploads/2025/11/dots-element-02.png\";a:1:{s:8:\"image_id\";s:9:\"6060|full\";}s:67:\"https://avada.studio/wp-content/uploads/2025/10/gaming-stuff-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6036|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/smartphones-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6037|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/televisions-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6038|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/11/bf-sale-info01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6071|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/11/bf-sale-info02.jpg\";a:1:{s:8:\"image_id\";s:9:\"6072|full\";}}s:10:\"post_cards\";a:3:{i:6065;s:4:\"true\";i:6066;s:4:\"true\";i:6067;s:4:\"true\";}}s:3:\"url\";s:60:\"https://avada.studio/fusion_template/black-friday-promotion/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/11/bf-template-ss01-400x1104.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1104;}s:4:\"tags\";a:4:{i:0;s:12:\"black-friday\";i:1;s:6:\"events\";i:2;s:9:\"promotion\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/11/bf-template-ss01-800x2208.jpg\";}s:7:\"_fusion\";a:25:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:16:\"content_bg_color\";s:17:\"var(--awb-color8)\";s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#c1d52b\";s:16:\"color5_overwrite\";s:7:\"#ff1b01\";s:16:\"color6_overwrite\";s:7:\"#6b6b6b\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#090909\";s:7:\"h3_size\";s:4:\"40px\";s:7:\"h4_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"80px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Gochi Hand\";s:11:\"font-backup\";s:24:\"\'Comic Sans MS\', cursive\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.015em\";}}}s:9:\"item-5826\";a:11:{s:2:\"ID\";i:5826;s:10:\"post_title\";s:35:\"Full Height Animation Template 5826\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:66:\"https://avada.studio/wp-content/uploads/2025/04/architecture-2.jpg\";b:1;s:66:\"https://avada.studio/wp-content/uploads/2025/04/architecture-3.jpg\";b:1;s:66:\"https://avada.studio/wp-content/uploads/2025/04/architecture-1.jpg\";b:1;s:66:\"https://avada.studio/wp-content/uploads/2025/04/architecture-4.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:59:\"https://avada.studio/fusion_template/full-height-animation/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2025/04/full-height-anim-template-ss1-400x190.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:190;}s:4:\"tags\";a:3:{i:0;s:11:\"full-height\";i:1;s:9:\"portfolio\";i:2;s:18:\"scrolling-sections\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2025/04/full-height-anim-template-ss1-800x380.jpg\";}s:7:\"_fusion\";a:26:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efeded\";s:16:\"color3_overwrite\";s:7:\"#d6d6d6\";s:16:\"color4_overwrite\";s:7:\"#5eb6ff\";s:16:\"color5_overwrite\";s:7:\"#d3753f\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"62px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:14:\"slide-zoom-out\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5738\";a:11:{s:2:\"ID\";i:5738;s:10:\"post_title\";s:23:\"Portfolio Template 5738\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:17:{s:71:\"https://avada.studio/wp-content/uploads/2025/04/agency-hero-image-3.jpg\";s:4:\"true\";s:58:\"https://avada.studio/wp-content/uploads/2025/04/mask-4.svg\";s:4:\"true\";s:70:\"https://avada.studio/wp-content/uploads/2025/04/agency-customers-1.png\";a:1:{s:8:\"image_id\";s:9:\"5753|full\";}s:65:\"https://avada.studio/wp-content/uploads/2025/04/art-mission-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5754|full\";}s:67:\"https://avada.studio/wp-content/uploads/2025/04/agency-office-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5755|full\";}s:64:\"https://avada.studio/wp-content/uploads/2025/04/agency-img-4.jpg\";a:1:{s:8:\"image_id\";s:4:\"5758\";}s:64:\"https://avada.studio/wp-content/uploads/2025/04/agency-img-1.jpg\";a:1:{s:8:\"image_id\";s:4:\"5757\";}s:64:\"https://avada.studio/wp-content/uploads/2025/04/agency-img-3.jpg\";a:1:{s:8:\"image_id\";s:4:\"5759\";}s:64:\"https://avada.studio/wp-content/uploads/2025/04/agency-img-2.jpg\";a:1:{s:8:\"image_id\";s:4:\"5756\";}s:71:\"https://avada.studio/wp-content/uploads/2025/04/strategy-focused-01.png\";a:1:{s:8:\"image_id\";s:9:\"5760|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/04/agency-work-bg-2.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5762|full\";}s:65:\"https://avada.studio/wp-content/uploads/2025/04/agency-work-1.png\";a:1:{s:8:\"image_id\";s:9:\"5763|full\";}s:64:\"https://avada.studio/wp-content/uploads/2025/04/service-bg-1.jpg\";s:4:\"true\";s:71:\"https://avada.studio/wp-content/uploads/2025/04/content-creation-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5779|full\";}s:72:\"https://avada.studio/wp-content/uploads/2025/04/analysis-strategy-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5780|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/04/service-bg-3-1.jpg\";s:4:\"true\";s:64:\"https://avada.studio/wp-content/uploads/2025/04/service-bg-2.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5784|full\";}}s:10:\"post_cards\";a:1:{i:5774;s:4:\"true\";}s:5:\"icons\";a:1:{i:4066;s:17:\"hosting-template-\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_template/portfolio/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2025/04/agency-template-ss-1-400x1521.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1521;}s:4:\"tags\";a:6:{i:0;s:6:\"agency\";i:1;s:8:\"business\";i:2;s:12:\"landing-page\";i:3;s:9:\"portfolio\";i:4;s:18:\"scrolling-sections\";i:5;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2025/04/agency-template-ss-1-800x3042.jpg\";}s:7:\"_fusion\";a:26:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#3bd2c5\";s:16:\"color5_overwrite\";s:7:\"#be861c\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#191919\";s:7:\"h2_size\";s:4:\"42px\";s:7:\"h3_size\";s:4:\"34px\";s:7:\"h4_size\";s:4:\"28px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Syne\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.025em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:35:\"container_hundred_percent_animation\";s:12:\"scroll-right\";}}s:9:\"item-5473\";a:11:{s:2:\"ID\";i:5473;s:10:\"post_title\";s:30:\"Company Timeline Template 5473\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:70:\"https://avada.studio/wp-content/uploads/2024/09/company-history-02.jpg\";a:1:{s:8:\"image_id\";s:9:\"5475|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/09/company-history-04.jpg\";a:1:{s:8:\"image_id\";s:9:\"5477|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/09/company-history-03.jpg\";a:1:{s:8:\"image_id\";s:9:\"5476|full\";}}}s:3:\"url\";s:56:\"https://avada.studio/fusion_template/company-timeline-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2024/09/company-timeline-ss1-400x896.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:896;}s:4:\"tags\";a:1:{i:0;s:8:\"timeline\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2024/09/company-timeline-ss1.jpg\";}s:7:\"_fusion\";a:24:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#ff8261\";s:16:\"color5_overwrite\";s:7:\"#6074e5\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#0f0f0f\";s:7:\"h2_size\";s:4:\"32px\";s:7:\"h5_size\";s:4:\"21px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"text-transform\";s:0:\"\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.010em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.010em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.010em\";}}}s:9:\"item-5437\";a:11:{s:2:\"ID\";i:5437;s:10:\"post_title\";s:35:\"Halloween Sales Promo Template 5437\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:15:{s:77:\"https://avada.studio/wp-content/uploads/2024/09/halloween-header-image-01.png\";a:1:{s:8:\"image_id\";s:9:\"5453|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/09/ghost-icon-1.png\";a:1:{s:8:\"image_id\";s:9:\"5439|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/09/halloween-banner-6.jpg\";a:1:{s:8:\"image_id\";s:9:\"5454|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/09/halloween-banner-5.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5452|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/09/graphic-5.svg\";a:1:{s:8:\"image_id\";s:9:\"4498|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/09/graphic-3.svg\";a:1:{s:8:\"image_id\";s:9:\"4492|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/09/category-decor-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5457|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/09/category-sweet-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5456|full\";}s:71:\"https://avada.studio/wp-content/uploads/2024/09/category-costumes-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5455|full\";}s:60:\"https://avada.studio/wp-content/uploads/2024/09/spider-1.png\";a:1:{s:8:\"image_id\";s:9:\"5460|full\";}s:72:\"https://avada.studio/wp-content/uploads/2024/09/halloween-sale-cta-1.jpg\";b:1;s:70:\"https://avada.studio/wp-content/uploads/2024/09/halloween-banner-7.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5462|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/09/scary-toys-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5465|full\";}s:74:\"https://avada.studio/wp-content/uploads/2024/09/halloween-must-haves-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5432|full\";}s:73:\"https://avada.studio/wp-content/uploads/2024/09/about-halloween-sale1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5464|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:5458;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:5344;s:15:\"awb-halloween2-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:59:\"https://avada.studio/fusion_template/halloween-sales-promo/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:95:\"https://avada.studio/wp-content/uploads/2024/09/halloween-sales-promo-template-ss1-400x1074.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1074;}s:4:\"tags\";a:4:{i:0;s:6:\"events\";i:1;s:8:\"products\";i:2;s:9:\"promotion\";i:3;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2024/09/halloween-sales-promo-template-ss1.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#f9ae00\";s:16:\"color5_overwrite\";s:7:\"#e71bd3\";s:16:\"color6_overwrite\";s:7:\"#5755d6\";s:16:\"color7_overwrite\";s:7:\"#3d2cc3\";s:16:\"color8_overwrite\";s:7:\"#151a37\";s:7:\"h2_size\";s:4:\"40px\";s:7:\"h3_size\";s:4:\"32px\";s:7:\"h4_size\";s:4:\"24px\";s:7:\"h5_size\";s:4:\"21px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Inknut Antiqua\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"58px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.060em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Inknut Antiqua\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lora\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5323\";a:11:{s:2:\"ID\";i:5323;s:10:\"post_title\";s:18:\"Shop Template 5323\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2024/06/shop-header-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5259|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:2:{i:5264;b:1;i:5266;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:42:\"https://avada.studio/fusion_template/shop/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2024/06/shop-page-ss1-400x840.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:840;}s:4:\"tags\";a:2:{i:0;s:9:\"shop-page\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2024/06/shop-page-ss1-800x1679.jpg\";}s:7:\"_fusion\";a:27:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f1f1f1\";s:16:\"color3_overwrite\";s:7:\"#e0e0e0\";s:16:\"color4_overwrite\";s:7:\"#ff927b\";s:16:\"color5_overwrite\";s:7:\"#4a6bdf\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#0f0f0f\";s:7:\"h5_size\";s:4:\"22px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:3:\"Sen\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"58px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:3:\"Sen\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:3:\"Sen\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:3:\"Sen\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:11:\"line-height\";s:3:\"1.6\";s:9:\"font-size\";s:4:\"17px\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:3:\"Sen\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5314\";a:11:{s:2:\"ID\";i:5314;s:10:\"post_title\";s:22:\"Checkout Template 5314\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:8:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2024/06/checkout-header-bg1.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}s:15:\"multiple_images\";a:1:{s:38:\"background_slider_images-Select Images\";a:0:{}}}s:3:\"url\";s:50:\"https://avada.studio/fusion_template/template-042/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2024/06/checkout-ss-042-400x583.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:583;}s:4:\"tags\";a:2:{i:0;s:8:\"checkout\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2024/06/checkout-ss-042-800x1165.jpg\";}s:7:\"_fusion\";a:27:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#a9be94\";s:16:\"color5_overwrite\";s:7:\"#6093aa\";s:16:\"color6_overwrite\";s:7:\"#666666\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"46px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.4\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5232\";a:11:{s:2:\"ID\";i:5232;s:10:\"post_title\";s:30:\"Summer Promotion Template 5232\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:24:{s:78:\"https://avada.studio/wp-content/uploads/2024/06/summer-festival-main-bg-12.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2024/06/logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"5235|full\";}s:72:\"https://avada.studio/wp-content/uploads/2024/06/section-sep-festival.svg\";b:1;s:65:\"https://avada.studio/wp-content/uploads/2024/06/summer-arrows.png\";a:1:{s:8:\"image_id\";s:9:\"5237|full\";}s:59:\"https://avada.studio/wp-content/uploads/2024/06/music-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5240|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/06/food-drink-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5239|full\";}s:61:\"https://avada.studio/wp-content/uploads/2024/06/tickets-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5241|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/06/venue-info-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5242|full\";}s:78:\"https://avada.studio/wp-content/uploads/2024/06/summer-festival-main-bg-22.jpg\";b:1;s:72:\"https://avada.studio/wp-content/uploads/2024/06/about-festival-bg-01.png\";a:1:{s:19:\"background_image_id\";s:9:\"5246|full\";}s:69:\"https://avada.studio/wp-content/uploads/2024/06/about-festival-11.jpg\";a:1:{s:8:\"image_id\";s:9:\"5245|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/06/festival-image-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5247|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/06/festival-image-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"5248|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/06/festival-image-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"5249|full\";}s:75:\"https://avada.studio/wp-content/uploads/2024/06/festival-programs-bg-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5250|full\";}s:67:\"https://avada.studio/wp-content/uploads/2024/06/music-singals-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5252|full\";}s:67:\"https://avada.studio/wp-content/uploads/2024/06/cultural-show-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5254|full\";}s:63:\"https://avada.studio/wp-content/uploads/2024/06/food-gala-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5251|full\";}s:72:\"https://avada.studio/wp-content/uploads/2024/06/visual-performance-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"5255|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/06/festival-info-bg-1.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-5.png\";a:1:{s:8:\"image_id\";s:9:\"4567|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-3.png\";a:1:{s:8:\"image_id\";s:9:\"4565|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"4563|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-4.png\";a:1:{s:8:\"image_id\";s:9:\"4566|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_template/summer-promotion/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2024/06/summer-promotion-ss1-400x1478.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1478;}s:4:\"tags\";a:2:{i:0;s:6:\"events\";i:1;s:9:\"promotion\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/06/summer-promotion-ss1-scaled.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#85bdfc\";s:16:\"color5_overwrite\";s:7:\"#ff5921\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h2_size\";s:4:\"62px\";s:7:\"h3_size\";s:4:\"50px\";s:7:\"h4_size\";s:4:\"38px\";s:7:\"h5_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"900\";s:11:\"font-weight\";s:3:\"900\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Overlock\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.010em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Overlock\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Overlock\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Overlock\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Overlock\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5125\";a:11:{s:2:\"ID\";i:5125;s:10:\"post_title\";s:27:\"Sales Landing Template 5125\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:23:{s:65:\"https://avada.studio/wp-content/uploads/2024/03/arrow-sales-1.png\";a:1:{s:8:\"image_id\";s:9:\"5137|full\";}s:76:\"https://avada.studio/wp-content/uploads/2024/03/sales-app-preview-01-min.png\";a:1:{s:8:\"image_id\";s:9:\"5142|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-5.png\";a:1:{s:8:\"image_id\";s:8:\"268|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-4.png\";a:1:{s:8:\"image_id\";s:8:\"267|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-3.png\";a:1:{s:8:\"image_id\";s:8:\"266|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-2.png\";a:1:{s:8:\"image_id\";s:8:\"265|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-1.png\";a:1:{s:8:\"image_id\";s:8:\"264|full\";}s:65:\"https://avada.studio/wp-content/uploads/2024/03/sales-logo-01.png\";a:1:{s:8:\"image_id\";s:9:\"5143|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/03/icon-graph-1.png\";a:1:{s:8:\"image_id\";s:9:\"5147|full\";}s:73:\"https://avada.studio/wp-content/uploads/2024/03/website-performance-1.png\";a:1:{s:8:\"image_id\";s:9:\"5144|full\";}s:67:\"https://avada.studio/wp-content/uploads/2024/03/website-graph-1.png\";a:1:{s:8:\"image_id\";s:9:\"5145|full\";}s:75:\"https://avada.studio/wp-content/uploads/2024/03/empower-strategy-01-min.png\";a:1:{s:8:\"image_id\";s:9:\"5149|full\";}s:75:\"https://avada.studio/wp-content/uploads/2024/03/better-implications-min.png\";a:1:{s:8:\"image_id\";s:9:\"5148|full\";}s:62:\"https://avada.studio/wp-content/uploads/2024/03/guidance-1.png\";a:1:{s:8:\"image_id\";s:9:\"5153|full\";}s:62:\"https://avada.studio/wp-content/uploads/2024/03/analysis-2.png\";a:1:{s:8:\"image_id\";s:9:\"5156|full\";}s:62:\"https://avada.studio/wp-content/uploads/2024/03/strategy-2.png\";a:1:{s:8:\"image_id\";s:9:\"5157|full\";}s:62:\"https://avada.studio/wp-content/uploads/2024/03/ideology-1.png\";a:1:{s:8:\"image_id\";s:9:\"5154|full\";}s:62:\"https://avada.studio/wp-content/uploads/2024/03/comp-app-2.png\";a:1:{s:8:\"image_id\";s:9:\"5158|full\";}s:63:\"https://avada.studio/wp-content/uploads/2024/03/dashboard-2.png\";a:1:{s:8:\"image_id\";s:9:\"5159|full\";}s:75:\"https://avada.studio/wp-content/uploads/2024/03/bonus-sales-graphic-min.png\";a:1:{s:8:\"image_id\";s:9:\"5160|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/03/arrow-sales-dark.png\";a:1:{s:8:\"image_id\";s:9:\"5161|full\";}s:73:\"https://avada.studio/wp-content/uploads/2024/03/refund-gurantee-1-min.png\";a:1:{s:8:\"image_id\";s:9:\"5162|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/03/avada-sale-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5163|full\";}}s:5:\"forms\";a:1:{i:5164;s:4:\"true\";}}s:3:\"url\";s:56:\"https://avada.studio/fusion_template/sales-landing-page/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/03/sales-landing-page-ss2-400x1878.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1878;}s:4:\"tags\";a:1:{i:0;s:12:\"landing-page\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/03/sales-landing-page-ss2-800x3756.jpg\";}s:7:\"_fusion\";a:28:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:5:\"100px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#dbdbdb\";s:16:\"color4_overwrite\";s:7:\"#e7b537\";s:16:\"color5_overwrite\";s:7:\"#5e80ed\";s:16:\"color6_overwrite\";s:7:\"#707070\";s:16:\"color7_overwrite\";s:7:\"#404040\";s:16:\"color8_overwrite\";s:7:\"#101010\";s:7:\"h2_size\";s:4:\"46px\";s:7:\"h3_size\";s:4:\"36px\";s:7:\"h4_size\";s:4:\"30px\";s:7:\"h5_size\";s:5:\"24px \";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"54px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.005em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:7:\"0.005em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"0.005em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"0.005em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:7:\"0.005em\";}s:7:\"h1_size\";s:4:\"67px\";s:7:\"h6_size\";s:4:\"16px\";}}s:9:\"item-5051\";a:11:{s:2:\"ID\";i:5051;s:10:\"post_title\";s:23:\"Decorator Template 5051\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:16:{s:83:\"https://avada.studio/wp-content/uploads/2024/02/home-header-background-scaled-1.jpg\";s:4:\"true\";s:64:\"https://avada.studio/wp-content/uploads/2024/02/urbano-award.png\";a:1:{s:8:\"image_id\";s:9:\"5053|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/02/spaces-award.png\";a:1:{s:8:\"image_id\";s:9:\"5054|full\";}s:66:\"https://avada.studio/wp-content/uploads/2024/02/interior-award.png\";a:1:{s:8:\"image_id\";s:9:\"5055|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/02/hemisferio-award.png\";a:1:{s:8:\"image_id\";s:9:\"5056|full\";}s:67:\"https://avada.studio/wp-content/uploads/2024/02/furniture-award.png\";a:1:{s:8:\"image_id\";s:9:\"5057|full\";}s:67:\"https://avada.studio/wp-content/uploads/2024/02/aesthetic-award.png\";a:1:{s:8:\"image_id\";s:9:\"5058|full\";}s:86:\"https://avada.studio/wp-content/uploads/2024/02/intro-features-background-scaled-1.jpg\";s:4:\"true\";s:81:\"https://avada.studio/wp-content/uploads/2024/02/general-decorating-background.jpg\";s:4:\"true\";s:78:\"https://avada.studio/wp-content/uploads/2024/02/interior-design-background.jpg\";s:4:\"true\";s:75:\"https://avada.studio/wp-content/uploads/2024/02/themed-rooms-background.jpg\";s:4:\"true\";s:68:\"https://avada.studio/wp-content/uploads/2024/02/abstract-artwork.jpg\";s:4:\"true\";s:75:\"https://avada.studio/wp-content/uploads/2024/02/blog-background-overlay.jpg\";s:4:\"true\";s:71:\"https://avada.studio/wp-content/uploads/2024/02/testimonial-woman-1.png\";a:1:{s:8:\"image_id\";s:9:\"5614|full\";}s:65:\"https://avada.studio/wp-content/uploads/2024/02/testimonial-2.png\";a:1:{s:8:\"image_id\";s:9:\"5613|full\";}s:65:\"https://avada.studio/wp-content/uploads/2024/02/testimonial-3.png\";a:1:{s:8:\"image_id\";s:9:\"5615|full\";}}s:5:\"forms\";a:1:{i:2081;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:746;s:4:\"true\";i:793;s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_template/decorator/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2024/02/decorator-ss-400x1279.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1279;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2024/02/decorator-ss.jpg\";}s:7:\"_fusion\";a:21:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color5_overwrite\";s:7:\"#807ed4\";s:16:\"color6_overwrite\";s:7:\"#6a56c4\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Cinzel Decorative\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Cinzel\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Heebo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Heebo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-5024\";a:11:{s:2:\"ID\";i:5024;s:10:\"post_title\";s:20:\"Wallet Template 5024\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:11:{s:58:\"https://avada.studio/wp-content/uploads/2024/02/hero-1.jpg\";b:1;s:59:\"https://avada.studio/wp-content/uploads/2024/02/info-13.jpg\";a:1:{s:8:\"image_id\";s:9:\"5027|full\";}s:59:\"https://avada.studio/wp-content/uploads/2024/02/info-14.jpg\";a:1:{s:8:\"image_id\";s:9:\"5028|full\";}s:59:\"https://avada.studio/wp-content/uploads/2024/02/info-15.jpg\";a:1:{s:8:\"image_id\";s:9:\"5029|full\";}s:59:\"https://avada.studio/wp-content/uploads/2024/02/info-11.jpg\";a:1:{s:8:\"image_id\";s:9:\"5039|full\";}s:59:\"https://avada.studio/wp-content/uploads/2024/02/info-12.jpg\";a:1:{s:8:\"image_id\";s:9:\"5040|full\";}s:59:\"https://avada.studio/wp-content/uploads/2024/02/info-16.jpg\";a:1:{s:8:\"image_id\";s:9:\"5030|full\";}s:57:\"https://avada.studio/wp-content/uploads/2024/02/box-1.jpg\";b:1;s:57:\"https://avada.studio/wp-content/uploads/2024/02/box-2.jpg\";b:1;s:57:\"https://avada.studio/wp-content/uploads/2024/02/box-3.jpg\";b:1;s:78:\"https://avada.website/handmade/wp-content/uploads/sites/151/2020/11/hero-1.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:5031;b:1;}s:6:\"videos\";a:2:{s:79:\"https://avada.studio/wp-content/uploads/2024/02/production_id_4455880-1080p.mp4\";b:1;s:79:\"https://avada.studio/wp-content/uploads/2024/02/production_id_4455879-1080p.mp4\";b:1;}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:44:\"https://avada.studio/fusion_template/wallet/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2024/02/wallet-ss-400x1301.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1301;}s:4:\"tags\";a:2:{i:0;s:8:\"products\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2024/02/wallet-ss-800x2602.jpg\";}s:7:\"_fusion\";a:25:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color3_overwrite\";s:7:\"#d2bba1\";s:16:\"color4_overwrite\";s:7:\"#b4a089\";s:16:\"color7_overwrite\";s:7:\"#38383b\";s:7:\"h1_size\";s:4:\"55px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"32px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:6:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Epilogue\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"55px\";}s:21:\"typography4_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Epilogue\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Epilogue\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:0:\"\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-5013\";a:11:{s:2:\"ID\";i:5013;s:10:\"post_title\";s:30:\"Product Features Template 5013\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:75:\"https://avada.studio/wp-content/uploads/2024/02/courses-skills-projects.png\";a:1:{s:8:\"image_id\";s:9:\"5017|full\";}s:82:\"https://avada.studio/wp-content/uploads/2024/02/streamlined-project-management.png\";a:1:{s:8:\"image_id\";s:9:\"5019|full\";}s:79:\"https://avada.studio/wp-content/uploads/2024/02/tailored-experience-product.png\";a:1:{s:8:\"image_id\";s:9:\"5020|full\";}s:78:\"https://avada.studio/wp-content/uploads/2024/02/customizable-to-your-needs.png\";a:1:{s:8:\"image_id\";s:9:\"5018|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:4066;s:17:\"hosting-template-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_template/product-features/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2024/02/product-page-scroll-effect-400x1445.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1445;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2024/02/product-page-scroll-effect-800x2891.jpg\";}s:7:\"_fusion\";a:27:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f5f1f0\";s:16:\"color3_overwrite\";s:7:\"#e9e4e5\";s:16:\"color4_overwrite\";s:7:\"#f96f4d\";s:16:\"color5_overwrite\";s:7:\"#266def\";s:16:\"color6_overwrite\";s:7:\"#6b6f81\";s:16:\"color7_overwrite\";s:7:\"#2e3555\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:7:\"h3_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:3:\"1em\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"28px\";s:11:\"line-height\";s:6:\"1.36em\";s:14:\"letter-spacing\";s:6:\"0.02em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:7:\"0.032em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:6:\"1.48em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:14:\"letter-spacing\";s:6:\"0.02em\";s:11:\"line-height\";s:6:\"1.56em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4942\";a:11:{s:2:\"ID\";i:4942;s:10:\"post_title\";s:23:\"Furniture Template 4942\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:7:{s:56:\"https://avada.studio/wp-content/uploads/2023/11/bg-3.svg\";a:1:{s:8:\"image_id\";s:9:\"4879|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/11/feature-7.svg\";a:1:{s:8:\"image_id\";s:9:\"4873|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/01/woman-furniture-lp.jpg\";a:1:{s:8:\"image_id\";s:9:\"4947|full\";}s:78:\"https://avada.studio/wp-content/uploads/2024/01/coach-furniture-neutral-lp.jpg\";a:1:{s:8:\"image_id\";s:9:\"4943|full\";}s:74:\"https://avada.studio/wp-content/uploads/2024/01/decoration-abstract-lp.jpg\";a:1:{s:8:\"image_id\";s:9:\"4944|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/01/textile-feature-lp.jpg\";a:1:{s:8:\"image_id\";s:9:\"4946|full\";}s:76:\"https://avada.studio/wp-content/uploads/2024/01/living-room-furniture-lp.jpg\";a:1:{s:8:\"image_id\";s:9:\"4945|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:977;s:14:\"icon-furniture\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_template/furniture/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/01/furniture-landing-page-400x1033.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1033;}s:4:\"tags\";a:1:{i:0;s:8:\"products\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/01/furniture-landing-page-800x2066.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f7f7f5\";s:16:\"color3_overwrite\";s:7:\"#c8c4c1\";s:16:\"color4_overwrite\";s:7:\"#5d7441\";s:16:\"color5_overwrite\";s:7:\"#6d5143\";s:16:\"color6_overwrite\";s:7:\"#48464b\";s:16:\"color7_overwrite\";s:7:\"#29282b\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:7:\"h2_size\";s:6:\"5.2rem\";s:7:\"h3_size\";s:4:\"4rem\";s:7:\"h4_size\";s:4:\"3rem\";s:7:\"h5_size\";s:4:\"2rem\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"52px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:7:\"1.024em\";s:14:\"letter-spacing\";s:8:\"-0.045em\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:5:\"9.2em\";s:14:\"text-transform\";s:9:\"uppercase\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:11:\"line-height\";s:5:\"1.2em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:7:\"0.032em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:14:\"letter-spacing\";s:6:\"0.02em\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.6em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Inter Tight\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:6:\"0.05em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4678\";a:11:{s:2:\"ID\";i:4678;s:10:\"post_title\";s:30:\"Cyber Week Sales Template 4678\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:12:{s:72:\"https://avada.studio/wp-content/uploads/2023/11/cyber-week-graphic-1.png\";a:1:{s:8:\"image_id\";s:9:\"4696|full\";}s:72:\"https://avada.studio/wp-content/uploads/2023/11/cyber-week-graphic-2.png\";a:1:{s:8:\"image_id\";s:9:\"4697|full\";}s:60:\"https://avada.studio/wp-content/uploads/2023/11/bg-img-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4693|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/11/sep-01.png\";a:1:{s:8:\"image_id\";s:9:\"4708|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/11/dots-1.png\";a:1:{s:8:\"image_id\";s:9:\"4706|full\";}s:64:\"https://avada.studio/wp-content/uploads/2023/11/headphones-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"4712|full\";}s:69:\"https://avada.studio/wp-content/uploads/2023/11/icon-percentage-2.png\";a:1:{s:8:\"image_id\";s:9:\"4719|full\";}s:69:\"https://avada.studio/wp-content/uploads/2023/11/mobile-category-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4716|full\";}s:69:\"https://avada.studio/wp-content/uploads/2023/11/gaming-category-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4714|full\";}s:69:\"https://avada.studio/wp-content/uploads/2023/11/camera-category-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4713|full\";}s:70:\"https://avada.studio/wp-content/uploads/2023/11/laptops-category-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4715|full\";}s:67:\"https://avada.studio/wp-content/uploads/2023/11/cyber-week-bg-9.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:4701;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_template/cyber-week-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2023/11/cyber-week-sale-template-ss-1-400x1338.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1338;}s:4:\"tags\";a:1:{i:0;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/11/cyber-week-sale-template-ss-1.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#17d0d0\";s:16:\"color5_overwrite\";s:7:\"#c92ad7\";s:16:\"color6_overwrite\";s:7:\"#5d5d96\";s:16:\"color7_overwrite\";s:7:\"#35357c\";s:16:\"color8_overwrite\";s:7:\"#000030\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"44px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Gugi\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:7:\"-0.02em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Allan\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"36px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:6:\"0.02em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Gugi\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:7:\"-0.02em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:3:\"0em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"-0.02em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4661\";a:11:{s:2:\"ID\";i:4661;s:10:\"post_title\";s:28:\"Happy Holidays Template 4661\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:5:{s:63:\"https://avada.studio/wp-content/uploads/2023/10/hero-tablet.svg\";b:1;s:56:\"https://avada.studio/wp-content/uploads/2023/10/hero.svg\";b:1;s:54:\"https://avada.studio/wp-content/uploads/2023/10/bg.svg\";b:1;s:60:\"https://avada.studio/wp-content/uploads/2023/10/info-2-1.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2023/10/info-5.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:2:{i:4663;b:1;i:4671;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:52:\"https://avada.studio/fusion_template/happy-holidays/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2023/10/holidays-ss-400x703.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:703;}s:4:\"tags\";a:3:{i:0;s:6:\"events\";i:1;s:9:\"promotion\";i:2;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/10/holidays-ss-800x1407.jpg\";}s:7:\"_fusion\";a:29:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"30px\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#e9ecfa\";s:16:\"color4_overwrite\";s:7:\"#f1db22\";s:16:\"color5_overwrite\";s:7:\"#3e960f\";s:16:\"color6_overwrite\";s:7:\"#d00d00\";s:16:\"color7_overwrite\";s:7:\"#1a1e31\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h2_size\";s:4:\"46px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Libre Baskerville\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Sacramento\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"59px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Poppins\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Poppins\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Poppins\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4559\";a:11:{s:2:\"ID\";i:4559;s:10:\"post_title\";s:26:\"Black Friday Template 4559\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:13:{s:61:\"https://avada.studio/wp-content/uploads/2023/10/graphic-1.svg\";a:1:{s:8:\"image_id\";s:9:\"4561|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/10/graphic-2.svg\";a:1:{s:8:\"image_id\";s:9:\"4562|full\";}s:65:\"https://avada.studio/wp-content/uploads/2023/10/hero-1-scaled.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"4563|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-2.png\";a:1:{s:8:\"image_id\";s:9:\"4564|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-3.png\";a:1:{s:8:\"image_id\";s:9:\"4565|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-4.png\";a:1:{s:8:\"image_id\";s:9:\"4566|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/logo-5.png\";a:1:{s:8:\"image_id\";s:9:\"4567|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/info-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4569|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/info-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"4570|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/10/info-4.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2023/10/info-6.jpg\";b:1;s:65:\"https://avada.studio/wp-content/uploads/2023/10/hero-8-scaled.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:2:{i:4581;b:1;i:4590;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:52:\"https://avada.studio/fusion_template/black-friday-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/10/black-friday-ss-400x1087.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1087;}s:4:\"tags\";a:2:{i:0;s:6:\"events\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/10/black-friday-ss-800x2175.jpg\";}s:7:\"_fusion\";a:29:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:16:\"content_bg_color\";s:17:\"var(--awb-color7)\";s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color4_overwrite\";s:7:\"#ef4300\";s:16:\"color6_overwrite\";s:7:\"#36221e\";s:16:\"color7_overwrite\";s:7:\"#101010\";s:16:\"color8_overwrite\";s:7:\"#070505\";s:7:\"h1_size\";s:5:\"115px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Climate Crisis\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:5:\"115px\";s:11:\"line-height\";s:4:\"1.05\";}s:21:\"typography2_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Freehand\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:5:\"125px\";}s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"25px\";s:11:\"line-height\";s:3:\"1.4\";}s:21:\"typography5_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:9:\"font-size\";s:4:\"22px\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4447\";a:11:{s:2:\"ID\";i:4447;s:10:\"post_title\";s:24:\"Fall Sales Template 4447\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:14:{s:65:\"https://avada.studio/wp-content/uploads/2023/09/fallsale-bg-3.png\";b:1;s:71:\"https://avada.studio/wp-content/uploads/2023/09/fall-sales-leaves-1.png\";a:1:{s:8:\"image_id\";s:9:\"4448|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/09/sale-leaf-1.png\";a:1:{s:8:\"image_id\";s:9:\"4449|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/09/sale-leaf-2.png\";a:1:{s:8:\"image_id\";s:9:\"4450|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/09/sale-leaf-3.png\";a:1:{s:8:\"image_id\";s:9:\"4451|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/09/autumn-bg-4.png\";b:1;s:72:\"https://avada.studio/wp-content/uploads/2023/09/category-electronics.jpg\";a:1:{s:8:\"image_id\";s:9:\"4478|full\";}s:71:\"https://avada.studio/wp-content/uploads/2023/09/category-home-decor.jpg\";a:1:{s:8:\"image_id\";s:9:\"4479|full\";}s:72:\"https://avada.studio/wp-content/uploads/2023/09/category-accessories.jpg\";a:1:{s:8:\"image_id\";s:9:\"4476|full\";}s:72:\"https://avada.studio/wp-content/uploads/2023/09/category-beauty-care.jpg\";a:1:{s:8:\"image_id\";s:9:\"4477|full\";}s:70:\"https://avada.studio/wp-content/uploads/2023/09/about-fall-sales-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4489|full\";}s:79:\"https://avada.studio/wp-content/uploads/2023/09/fall-sales-leaves-1-300x300.png\";b:1;s:69:\"https://avada.studio/wp-content/uploads/2023/09/cosmeticsale-bg-2.jpg\";b:1;s:77:\"https://avada.studio/wp-content/uploads/2023/09/fall-sale-newsletter-bg-1.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:4513;b:1;}s:10:\"post_cards\";a:1:{i:4458;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:3718;s:3:\"bb-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_template/fall-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/09/fall-template-ss-1-400x1345.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1345;}s:4:\"tags\";a:3:{i:0;s:9:\"promotion\";i:1;s:9:\"shop-page\";i:2;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/09/fall-template-ss-1.jpg\";}s:7:\"_fusion\";a:29:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#fff1e7\";s:16:\"color3_overwrite\";s:7:\"#ffd3aa\";s:16:\"color4_overwrite\";s:7:\"#ff9300\";s:16:\"color5_overwrite\";s:7:\"#24a0a6\";s:16:\"color6_overwrite\";s:7:\"#99515d\";s:16:\"color7_overwrite\";s:7:\"#5e1f29\";s:16:\"color8_overwrite\";s:7:\"#22060b\";s:7:\"h3_size\";s:4:\"37px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:5:\"20px \";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Hepta Slab\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Hepta Slab\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:6:\"0.15em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Hepta Slab\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:5:\"0.1em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Hepta Slab\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.010em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Hepta Slab\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:5:\"0.1em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4516\";a:11:{s:2:\"ID\";i:4516;s:10:\"post_title\";s:35:\"Halloween Party Promo Template 4516\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:17:{s:90:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-mobile-bg-scaled.jpg\";b:1;s:81:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-resp-bg.jpg\";b:1;s:59:\"https://avada.studio/wp-content/uploads/2022/10/costume.jpg\";a:1:{s:8:\"image_id\";s:9:\"3397|full\";}s:61:\"https://avada.studio/wp-content/uploads/2022/10/face-mask.jpg\";a:1:{s:8:\"image_id\";s:9:\"3399|full\";}s:62:\"https://avada.studio/wp-content/uploads/2022/10/candy-pack.jpg\";a:1:{s:8:\"image_id\";s:9:\"3395|full\";}s:63:\"https://avada.studio/wp-content/uploads/2022/10/zombie-doll.jpg\";a:1:{s:8:\"image_id\";s:9:\"3394|full\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4525|full\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4524|full\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-3.jpg\";a:1:{s:8:\"image_id\";s:4:\"4526\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-6.jpg\";a:1:{s:8:\"image_id\";s:4:\"4529\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-9.jpg\";a:1:{s:8:\"image_id\";s:4:\"4532\";}s:76:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-10.jpg\";a:1:{s:8:\"image_id\";s:9:\"4533|full\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-8.jpg\";a:1:{s:8:\"image_id\";s:9:\"4531|full\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-7.jpg\";a:1:{s:8:\"image_id\";s:4:\"4530\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-4.jpg\";a:1:{s:8:\"image_id\";s:9:\"4527|full\";}s:75:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-5.jpg\";a:1:{s:8:\"image_id\";s:9:\"4528|full\";}s:90:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-footer-mobile-bg.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:3:{s:79:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-hero.webm\";b:1;s:78:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-hero.mp4\";b:1;s:77:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-cta.mp4\";b:1;}s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:59:\"https://avada.studio/fusion_template/halloween-party-promo/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-400x1237.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1237;}s:4:\"tags\";a:1:{i:0;s:6:\"events\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-promo-800x2474.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:16:\"content_bg_color\";s:17:\"var(--awb-color8)\";s:15:\"content_bg_full\";s:2:\"no\";s:8:\"bg_color\";s:17:\"var(--awb-color8)\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2efef\";s:16:\"color3_overwrite\";s:7:\"#e0e0e0\";s:16:\"color4_overwrite\";s:7:\"#884fdd\";s:16:\"color5_overwrite\";s:7:\"#ff4d35\";s:16:\"color6_overwrite\";s:7:\"#232323\";s:16:\"color7_overwrite\";s:7:\"#151515\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:7:\"h1_size\";s:4:\"6rem\";s:7:\"h2_size\";s:4:\"34px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Radley\";s:9:\"font-size\";s:4:\"48px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"font-backup\";s:15:\"Garamond, serif\";s:11:\"line-height\";s:3:\"1em\";s:14:\"letter-spacing\";s:8:\"-0.15rem\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:9:\"400italic\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:6:\"italic\";s:11:\"font-family\";s:6:\"Radley\";s:14:\"text-transform\";s:10:\"capitalize\";s:9:\"font-size\";s:4:\"40px\";s:14:\"letter-spacing\";s:8:\"-0.04rem\";s:11:\"line-height\";s:5:\"1.2em\";s:11:\"font-backup\";s:15:\"Garamond, serif\";}s:21:\"typography3_overwrite\";a:8:{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:\"font-family\";s:6:\"Lexend\";s:11:\"line-height\";s:6:\"1.32em\";s:14:\"letter-spacing\";s:8:\"0.015rem\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:3:\"200\";s:11:\"font-weight\";s:3:\"200\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:14:\"letter-spacing\";s:7:\"0.05rem\";s:11:\"line-height\";s:5:\"1.8em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:9:\"font-size\";s:4:\"14px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:14:\"letter-spacing\";s:8:\"0.025rem\";s:11:\"line-height\";s:6:\"1.48em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4367\";a:11:{s:2:\"ID\";i:4367;s:10:\"post_title\";s:17:\"Eco Template 4367\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:11:{s:64:\"https://avada.studio/wp-content/uploads/2023/08/eco-circle-2.svg\";b:1;s:75:\"https://avada.studio/wp-content/uploads/2023/08/eco-hero-image-1-scaled.jpg\";a:1:{s:8:\"image_id\";s:9:\"4368|full\";}s:70:\"https://avada.studio/wp-content/uploads/2023/08/natural-diasters-1.jpg\";b:1;s:71:\"https://avada.studio/wp-content/uploads/2023/08/forest-resilience-1.jpg\";b:1;s:68:\"https://avada.studio/wp-content/uploads/2023/08/trees-planting-1.jpg\";b:1;s:70:\"https://avada.studio/wp-content/uploads/2023/08/land-restoration-1.jpg\";b:1;s:68:\"https://avada.studio/wp-content/uploads/2023/08/pests-diseases-2.jpg\";b:1;s:70:\"https://avada.studio/wp-content/uploads/2023/08/renewable-energy-1.jpg\";b:1;s:60:\"https://avada.studio/wp-content/uploads/2023/08/eco-bg-2.png\";b:1;s:71:\"https://avada.studio/wp-content/uploads/2023/08/climate-emergency-1.png\";a:1:{s:8:\"image_id\";s:9:\"4382|full\";}s:65:\"https://avada.studio/wp-content/uploads/2023/08/love-planet-1.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:41:\"https://avada.studio/fusion_template/eco/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/08/eco-template-ss-1-400x1169.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1169;}s:4:\"tags\";a:1:{i:0;s:13:\"environmental\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/08/eco-template-ss-1-800x2339.jpg\";}s:7:\"_fusion\";a:29:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#dbdbdb\";s:16:\"color4_overwrite\";s:7:\"#eab03c\";s:16:\"color5_overwrite\";s:7:\"#5f9b26\";s:16:\"color6_overwrite\";s:7:\"#6b6b6b\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:7:\"h1_size\";s:4:\"50px\";s:7:\"h2_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"22px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.010em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:7:\"0.010em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.010em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"0.010em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Lexend\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"0.010em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-4215\";a:11:{s:2:\"ID\";i:4215;s:10:\"post_title\";s:24:\"Food Truck Template 4215\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:17:{s:67:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-bg-3.png\";b:1;s:64:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-2.png\";a:1:{s:8:\"image_id\";s:9:\"4220|full\";}s:67:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-logo.png\";a:1:{s:8:\"image_id\";s:9:\"4224|full\";}s:72:\"https://avada.studio/wp-content/uploads/2023/06/girl-with-food-truck.jpg\";a:1:{s:8:\"image_id\";s:9:\"4228|full\";}s:66:\"https://avada.studio/wp-content/uploads/2023/06/food-menu-icon.png\";a:1:{s:8:\"image_id\";s:9:\"4229|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/06/breakfast-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4231|full\";}s:65:\"https://avada.studio/wp-content/uploads/2023/06/main-course-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4233|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/06/pasta-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4232|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/06/dessert-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4230|full\";}s:74:\"https://avada.studio/wp-content/uploads/2023/06/mobile-food-truck-bg-1.jpg\";b:1;s:69:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-icon-1.png\";a:1:{s:8:\"image_id\";s:9:\"4236|full\";}s:68:\"https://avada.studio/wp-content/uploads/2023/06/food-cart-icon-1.png\";a:1:{s:8:\"image_id\";s:9:\"4235|full\";}s:74:\"https://avada.studio/wp-content/uploads/2023/06/foodtruck-pattern-bg-1.png\";b:1;s:72:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-gallery-4.jpg\";a:1:{s:8:\"image_id\";s:4:\"4244\";}s:72:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-gallery-5.jpg\";a:1:{s:8:\"image_id\";s:4:\"4247\";}s:72:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-gallery-1.jpg\";a:1:{s:8:\"image_id\";s:4:\"4243\";}s:72:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-gallery-3.jpg\";a:1:{s:8:\"image_id\";s:4:\"4246\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:3057;s:8:\"caterer-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_template/food-truck/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-template-ss-400x1690.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1690;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/06/food-truck-template-ss.jpg\";}s:7:\"_fusion\";a:32:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f1ece2\";s:16:\"color3_overwrite\";s:7:\"#e2dbcd\";s:16:\"color4_overwrite\";s:7:\"#ff9075\";s:16:\"color5_overwrite\";s:7:\"#947fe8\";s:16:\"color6_overwrite\";s:7:\"#6c6c6c\";s:16:\"color7_overwrite\";s:7:\"#4c4c4c\";s:16:\"color8_overwrite\";s:7:\"#1c1c1c\";s:7:\"h1_size\";s:4:\"56px\";s:7:\"h2_size\";s:4:\"44px\";s:7:\"h3_size\";s:4:\"37px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"22px\";s:7:\"h6_size\";s:4:\"18px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"56px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:11:\"line-height\";s:1:\"1\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:9:\"font-size\";s:4:\"18px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3992\";a:11:{s:2:\"ID\";i:3992;s:10:\"post_title\";s:22:\"Cannabis Template 3992\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:12:{s:66:\"https://avada.studio/wp-content/uploads/2023/03/hero-bg-scaled.jpg\";b:1;s:57:\"https://avada.studio/wp-content/uploads/2023/03/arrow.svg\";a:1:{s:8:\"image_id\";s:9:\"4004|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/03/info-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4005|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/03/info-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4010|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/03/info-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"4026|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/03/info-4.jpg\";a:1:{s:8:\"image_id\";s:9:\"4027|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/03/info-5.jpg\";a:1:{s:8:\"image_id\";s:9:\"4028|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/03/info-8.jpg\";a:1:{s:8:\"image_id\";s:9:\"4039|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/03/info-10.jpg\";a:1:{s:8:\"image_id\";s:9:\"4045|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/03/info-11.jpg\";a:1:{s:8:\"image_id\";s:9:\"4046|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/03/info-12.jpg\";a:1:{s:8:\"image_id\";s:9:\"4047|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/03/info-13.jpg\";a:1:{s:8:\"image_id\";s:9:\"4048|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:4034;s:9:\"cannabis-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_template/cannabis/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2023/03/cannabis-ss-400x993.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:993;}s:4:\"tags\";a:1:{i:0;s:8:\"products\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/03/cannabis-ss-800x1986.jpg\";}s:7:\"_fusion\";a:31:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:16:\"content_bg_color\";s:17:\"var(--awb-color7)\";s:15:\"content_bg_full\";s:2:\"no\";s:8:\"bg_color\";s:17:\"var(--awb-color7)\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#fffbf4\";s:16:\"color3_overwrite\";s:7:\"#d3d389\";s:16:\"color4_overwrite\";s:7:\"#d1985c\";s:16:\"color5_overwrite\";s:7:\"#975f44\";s:16:\"color6_overwrite\";s:7:\"#6a6e49\";s:16:\"color7_overwrite\";s:7:\"#18352d\";s:16:\"color8_overwrite\";s:7:\"#051412\";s:7:\"h1_size\";s:4:\"85px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Aboreto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.2\";s:9:\"font-size\";s:4:\"85px\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Golos Text\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3974\";a:11:{s:2:\"ID\";i:3974;s:10:\"post_title\";s:21:\"Hosting Template 3974\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:8:{s:72:\"https://avada.studio/wp-content/uploads/2023/03/hero-hosting-image-4.png\";a:1:{s:8:\"image_id\";s:9:\"4011|full\";}s:66:\"https://avada.studio/wp-content/uploads/2023/03/shared-hosting.png\";a:1:{s:8:\"image_id\";s:9:\"4008|full\";}s:69:\"https://avada.studio/wp-content/uploads/2023/03/wordpress-hosting.png\";a:1:{s:8:\"image_id\";s:9:\"4006|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/03/vps-hosting.png\";a:1:{s:8:\"image_id\";s:9:\"4009|full\";}s:68:\"https://avada.studio/wp-content/uploads/2023/03/dedicated-server.png\";a:1:{s:8:\"image_id\";s:9:\"4007|full\";}s:69:\"https://avada.studio/wp-content/uploads/2023/03/hosting-graphic-5.png\";a:1:{s:8:\"image_id\";s:9:\"4018|full\";}s:69:\"https://avada.studio/wp-content/uploads/2023/03/hosting-graphic-6.png\";a:1:{s:8:\"image_id\";s:9:\"4030|full\";}s:63:\"https://avada.studio/wp-content/uploads/2023/03/world-map-2.png\";a:1:{s:8:\"image_id\";s:9:\"4041|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:3999;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:4066;s:17:\"hosting-template-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:45:\"https://avada.studio/fusion_template/hosting/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2023/03/hosting-template-ss-400x1603.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1603;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2023/03/hosting-template-ss-800x3207.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#ff871a\";s:16:\"color5_overwrite\";s:7:\"#008ee6\";s:16:\"color6_overwrite\";s:7:\"#006db1\";s:16:\"color7_overwrite\";s:7:\"#003d84\";s:16:\"color8_overwrite\";s:7:\"#100033\";s:7:\"h1_size\";s:4:\"48px\";s:7:\"h2_size\";s:4:\"36px\";s:7:\"h3_size\";s:4:\"30px\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:14:\"letter-spacing\";s:8:\"-0.025em\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:1:\"1\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:11:\"line-height\";s:3:\"1.5\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3906\";a:11:{s:2:\"ID\";i:3906;s:10:\"post_title\";s:18:\"SaaS Template 3906\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:9:{s:63:\"https://avada.studio/wp-content/uploads/2023/02/saas-logo-2.png\";a:1:{s:8:\"image_id\";s:9:\"3921|full\";}s:70:\"https://avada.studio/wp-content/uploads/2023/02/dashboard-screen-2.png\";a:1:{s:8:\"image_id\";s:9:\"3912|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/09/logo-5.png\";a:1:{s:8:\"image_id\";s:9:\"1045|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/09/logo-3.png\";a:1:{s:8:\"image_id\";s:9:\"1043|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/09/logo-1.png\";a:1:{s:8:\"image_id\";s:9:\"1041|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/09/logo-2.png\";a:1:{s:8:\"image_id\";s:9:\"1042|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/09/logo-4.png\";a:1:{s:8:\"image_id\";s:9:\"1044|full\";}s:66:\"https://avada.studio/wp-content/uploads/2023/02/saas-graphic-1.png\";a:1:{s:8:\"image_id\";s:9:\"3911|full\";}s:66:\"https://avada.studio/wp-content/uploads/2023/02/saas-graphic-3.png\";a:1:{s:8:\"image_id\";s:9:\"3914|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:978;s:9:\"icon-mkb-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:42:\"https://avada.studio/fusion_template/saas/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2023/02/saas-template-screenshot-400x1200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1200;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2023/02/saas-template-screenshot-800x2400.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eeeff4\";s:16:\"color3_overwrite\";s:7:\"#dcdfeb\";s:16:\"color4_overwrite\";s:7:\"#ff983a\";s:16:\"color5_overwrite\";s:7:\"#7d63cc\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#434343\";s:16:\"color8_overwrite\";s:7:\"#1e1e1e\";s:7:\"h2_size\";s:4:\"48px\";s:7:\"h3_size\";s:4:\"36px\";s:7:\"h5_size\";s:4:\"24px\";s:7:\"h6_size\";s:4:\"20px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"57px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3779\";a:11:{s:2:\"ID\";i:3779;s:10:\"post_title\";s:25:\"Coming Soon Template 3779\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2021/08/logo-abstract-shape.png\";a:1:{s:8:\"image_id\";s:9:\"1184|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:284;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/coming-soon/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/12/Screenshot_490-400x312.png\";s:5:\"width\";i:400;s:6:\"height\";i:312;}s:4:\"tags\";a:1:{i:0;s:11:\"maintenance\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/12/Screenshot_490-800x624.png\";}s:7:\"_fusion\";a:26:{s:14:\"blog_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#faf9fc\";s:16:\"color3_overwrite\";s:7:\"#eff0f2\";s:16:\"color4_overwrite\";s:7:\"#77d1ab\";s:16:\"color5_overwrite\";s:7:\"#013199\";s:16:\"color6_overwrite\";s:7:\"#313238\";s:16:\"color7_overwrite\";s:7:\"#2a2d38\";s:16:\"color8_overwrite\";s:7:\"#001835\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Hanken Grotesk\";s:9:\"font-size\";s:3:\"6vw\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:5:\"1.2em\";s:14:\"letter-spacing\";s:4:\"-2px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Hanken Grotesk\";s:9:\"font-size\";s:4:\"24px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:5:\"1.3em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Hanken Grotesk\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:5:\"1.5em\";s:14:\"letter-spacing\";s:3:\"0px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Hanken Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Hanken Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:3:\"0px\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3569\";a:11:{s:2:\"ID\";i:3569;s:10:\"post_title\";s:25:\"Maintenance Template 3569\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2022/10/maintainence-mode-1.svg\";a:1:{s:8:\"image_id\";s:9:\"3574|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/maintenance/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/10/maintenance-template-ss1-400x226.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:226;}s:4:\"tags\";a:1:{i:0;s:11:\"maintenance\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/10/maintenance-template-ss1-800x452.jpg\";}s:7:\"_fusion\";a:22:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d6d6d6\";s:16:\"color4_overwrite\";s:7:\"#65bd7d\";s:16:\"color5_overwrite\";s:7:\"#0288e8\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#111111\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";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:14:\"text-transform\";s:10:\"capitalize\";s:14:\"letter-spacing\";s:7:\"-0.03em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";}}}s:9:\"item-3561\";a:11:{s:2:\"ID\";i:3561;s:10:\"post_title\";s:32:\"Scrolling Sections Template 3561\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/279.jpg\";a:1:{s:8:\"image_id\";s:9:\"1570|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/276.jpg\";a:1:{s:8:\"image_id\";s:9:\"1567|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:2450;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:3316;s:11:\"icon-basic-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:56:\"https://avada.studio/fusion_template/scrolling-sections/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:92:\"https://avada.studio/wp-content/uploads/2022/10/scrolling-sections-presentation-400x1009.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1009;}s:4:\"tags\";a:1:{i:0;s:18:\"scrolling-sections\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:92:\"https://avada.studio/wp-content/uploads/2022/10/scrolling-sections-presentation-800x2018.jpg\";}s:7:\"_fusion\";a:28:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f7f7f9\";s:16:\"color3_overwrite\";s:7:\"#ededef\";s:16:\"color4_overwrite\";s:7:\"#dff6e4\";s:16:\"color5_overwrite\";s:7:\"#ff5823\";s:16:\"color6_overwrite\";s:7:\"#44484c\";s:16:\"color7_overwrite\";s:7:\"#212526\";s:16:\"color8_overwrite\";s:7:\"#01282f\";s:7:\"h2_size\";s:3:\"5vw\";s:7:\"h3_size\";s:4:\"36px\";s:21:\"typography1_overwrite\";a:7:{s:9:\"font-size\";s:3:\"6vw\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"line-height\";s:6:\"1.20em\";s:14:\"letter-spacing\";s:8:\"-0.025em\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Rubik Maze\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:5:\"124px\";s:11:\"line-height\";s:3:\"1em\";s:14:\"letter-spacing\";s:3:\"0px\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:3:\"0px\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Figtree\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:14:\"letter-spacing\";s:3:\"0px\";s:11:\"line-height\";s:5:\"1.6em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Mono\";s:14:\"letter-spacing\";s:3:\"1px\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:5:\"1.5em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3384\";a:11:{s:2:\"ID\";i:3384;s:10:\"post_title\";s:23:\"Halloween Template 3384\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:8:{s:73:\"https://avada.studio/wp-content/uploads/2022/10/halloween-header-bg-1.png\";b:1;s:64:\"https://avada.studio/wp-content/uploads/2022/10/candy-treats.png\";a:1:{s:8:\"image_id\";s:9:\"3390|full\";}s:63:\"https://avada.studio/wp-content/uploads/2022/10/decorations.png\";a:1:{s:8:\"image_id\";s:9:\"3392|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/10/balloons.png\";a:1:{s:8:\"image_id\";s:9:\"3391|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/10/costumes.png\";a:1:{s:8:\"image_id\";s:9:\"3388|full\";}s:70:\"https://avada.studio/wp-content/uploads/2022/10/halloween-banner-1.png\";a:1:{s:8:\"image_id\";s:9:\"3414|full\";}s:70:\"https://avada.studio/wp-content/uploads/2022/10/halloween-banner-4.png\";a:1:{s:8:\"image_id\";s:9:\"3417|full\";}s:75:\"https://avada.studio/wp-content/uploads/2022/10/halloween-newsletter-bg.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:3419;b:1;}s:10:\"post_cards\";a:1:{i:3403;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_template/halloween/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/10/halloween-template-ss-400x684.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:684;}s:4:\"tags\";a:1:{i:0;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/10/halloween-template-ss-800x1368.jpg\";}s:7:\"_fusion\";a:31:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#ddd5d4\";s:16:\"color4_overwrite\";s:7:\"#faa419\";s:16:\"color5_overwrite\";s:7:\"#dd544f\";s:16:\"color6_overwrite\";s:7:\"#c32475\";s:16:\"color7_overwrite\";s:7:\"#711745\";s:16:\"color8_overwrite\";s:7:\"#290732\";s:7:\"h1_size\";s:5:\"100px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"36px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h6_size\";s:4:\"20px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Risque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:5:\"100px\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Risque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Risque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Risque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";}s:21:\"typography5_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Risque\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3245\";a:11:{s:2:\"ID\";i:3245;s:10:\"post_title\";s:22:\"Services Template 3245\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:10:{s:79:\"https://avada.studio/wp-content/uploads/2022/09/services-section-2-1024x664.jpg\";a:1:{s:8:\"image_id\";s:10:\"3258|large\";}s:67:\"https://avada.studio/wp-content/uploads/2022/09/brainstorming-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3248|full\";}s:70:\"https://avada.studio/wp-content/uploads/2022/09/project-workflow-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3250|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/09/deliver-support-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3249|full\";}s:58:\"https://avada.studio/wp-content/uploads/2022/09/quotes.png\";a:1:{s:8:\"image_id\";s:9:\"3251|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-2.png\";a:1:{s:8:\"image_id\";s:8:\"265|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-1.png\";a:1:{s:8:\"image_id\";s:8:\"264|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-3.png\";a:1:{s:8:\"image_id\";s:8:\"266|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-5.png\";a:1:{s:8:\"image_id\";s:8:\"268|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-4.png\";a:1:{s:8:\"image_id\";s:8:\"267|full\";}}s:5:\"icons\";a:1:{i:3054;s:9:\"business-\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_template/services/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/09/services-template-400x1155.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1155;}s:4:\"tags\";a:1:{i:0;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/09/services-template-800x2310.jpg\";}s:7:\"_fusion\";a:21:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#d6d6d6\";s:16:\"color4_overwrite\";s:7:\"#a6abcd\";s:16:\"color5_overwrite\";s:7:\"#f73760\";s:16:\"color6_overwrite\";s:7:\"#4f578d\";s:16:\"color7_overwrite\";s:7:\"#3d436d\";s:16:\"color8_overwrite\";s:7:\"#22253d\";s:7:\"h1_size\";s:4:\"72px\";s:7:\"h2_size\";s:4:\"54px\";s:7:\"h3_size\";s:4:\"40px\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Rajdhani\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:11:\"line-height\";s:3:\"1.8\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Mulish\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";}}s:9:\"item-3227\";a:11:{s:2:\"ID\";i:3227;s:10:\"post_title\";s:22:\"About Us Template 3227\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:8:{s:55:\"https://avada.studio/wp-content/uploads/2022/09/490.jpg\";a:1:{s:8:\"image_id\";s:9:\"3233|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/09/491.jpg\";a:1:{s:8:\"image_id\";s:9:\"3234|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/09/staff-06.jpg\";a:1:{s:8:\"image_id\";s:9:\"3235|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/09/staff-05.jpg\";a:1:{s:8:\"image_id\";s:9:\"3237|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/09/staff-04.jpg\";a:1:{s:8:\"image_id\";s:9:\"3238|full\";}s:60:\"https://avada.studio/wp-content/uploads/2022/09/staff-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"3236|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/09/492.jpg\";a:1:{s:8:\"image_id\";s:9:\"3242|full\";}s:68:\"https://avada.studio/wp-content/uploads/2022/06/studio-post-card.jpg\";a:1:{s:8:\"image_id\";s:9:\"2788|full\";}}s:5:\"menus\";a:1:{s:5:\"pages\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_template/about-us/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/09/about-us-400x1481.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1481;}s:4:\"tags\";a:1:{i:0;s:8:\"about-us\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/09/about-us-800x2961.jpg\";}s:7:\"_fusion\";a:31:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f0eee5\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#b9b58d\";s:16:\"color5_overwrite\";s:7:\"#278b77\";s:16:\"color6_overwrite\";s:7:\"#1e6b59\";s:16:\"color7_overwrite\";s:7:\"#10372d\";s:16:\"color8_overwrite\";s:7:\"#091b18\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"19px\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:9:\"font-size\";s:4:\"21px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3219\";a:11:{s:2:\"ID\";i:3219;s:10:\"post_title\";s:21:\"Startup Template 3219\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:14:{s:78:\"https://avada.studio/wp-content/uploads/2022/08/dashboard-software-preview.png\";a:1:{s:8:\"image_id\";s:9:\"3220|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-1.png\";a:1:{s:8:\"image_id\";s:8:\"264|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-3.png\";a:1:{s:8:\"image_id\";s:8:\"266|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-2.png\";a:1:{s:8:\"image_id\";s:8:\"265|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-5.png\";a:1:{s:8:\"image_id\";s:8:\"268|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-4.png\";a:1:{s:8:\"image_id\";s:8:\"267|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/07/feats-marketing-1.png\";a:1:{s:8:\"image_id\";s:9:\"2897|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/07/feats-marketing-2.png\";a:1:{s:8:\"image_id\";s:9:\"2898|full\";}s:76:\"https://avada.studio/wp-content/uploads/2022/08/software-template-card-1.png\";a:1:{s:8:\"image_id\";s:9:\"3221|full\";}s:76:\"https://avada.studio/wp-content/uploads/2022/08/software-template-card-2.png\";a:1:{s:8:\"image_id\";s:9:\"3222|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/2.jpg\";a:1:{s:8:\"image_id\";s:9:\"2220|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/4.jpg\";a:1:{s:8:\"image_id\";s:9:\"2218|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/6.jpg\";a:1:{s:8:\"image_id\";s:9:\"2216|full\";}s:82:\"https://avada.studio/wp-content/uploads/2022/08/dashboard-software-preview-cta.png\";a:1:{s:8:\"image_id\";s:9:\"3223|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:975;s:16:\"icon-accountant-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:45:\"https://avada.studio/fusion_template/startup/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2022/08/startup-landing-page-home-400x1443.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1443;}s:4:\"tags\";a:1:{i:0;s:8:\"software\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2022/08/startup-landing-page-home-800x2887.jpg\";}s:7:\"_fusion\";a:28:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f5f7f9\";s:16:\"color3_overwrite\";s:7:\"#dce0e3\";s:16:\"color4_overwrite\";s:7:\"#f25534\";s:16:\"color5_overwrite\";s:7:\"#df4626\";s:16:\"color6_overwrite\";s:7:\"#4f5c6c\";s:16:\"color7_overwrite\";s:7:\"#3c4451\";s:16:\"color8_overwrite\";s:7:\"#040d16\";s:7:\"h2_size\";s:4:\"48px\";s:7:\"h3_size\";s:4:\"32px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:9:\"font-size\";s:4:\"64px\";s:11:\"line-height\";s:6:\"1.12em\";s:14:\"letter-spacing\";s:7:\"-0.02em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:3:\"0px\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:6:\"0.01em\";s:14:\"text-transform\";s:10:\"capitalize\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.7em\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:14:\"letter-spacing\";s:6:\"0.02em\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:5:\"1.6em\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3157\";a:11:{s:2:\"ID\";i:3157;s:10:\"post_title\";s:34:\"Business and Finance Template 3157\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:6:{s:67:\"https://avada.studio/wp-content/uploads/2022/08/business-hero-3.jpg\";b:1;s:68:\"https://avada.studio/wp-content/uploads/2022/08/business-about-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"3163|full\";}s:68:\"https://avada.studio/wp-content/uploads/2022/08/audits-reports-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3164|full\";}s:71:\"https://avada.studio/wp-content/uploads/2022/08/taxation-planning-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3165|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/08/risk-management-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3166|full\";}s:64:\"https://avada.studio/wp-content/uploads/2022/08/business-man.jpg\";a:1:{s:8:\"image_id\";s:9:\"3167|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:3172;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:58:\"https://avada.studio/fusion_template/business-and-finance/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2022/08/business-finance-template-ss-400x929.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:929;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/08/business-finance-template-ss-800x1857.jpg\";}s:7:\"_fusion\";a:29:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#ff8a6d\";s:16:\"color5_overwrite\";s:7:\"#2a9d8f\";s:16:\"color6_overwrite\";s:7:\"#3b6c80\";s:16:\"color7_overwrite\";s:7:\"#264653\";s:16:\"color8_overwrite\";s:7:\"#192e37\";s:7:\"h1_size\";s:4:\"56px\";s:7:\"h3_size\";s:4:\"36px\";s:7:\"h4_size\";s:4:\"28px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"56px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:10:\"Montserrat\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3114\";a:11:{s:2:\"ID\";i:3114;s:10:\"post_title\";s:19:\"Hotel Template 3114\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:8:{s:68:\"https://avada.studio/wp-content/uploads/2022/08/hotel-hero-image.jpg\";b:1;s:64:\"https://avada.studio/wp-content/uploads/2022/08/hotel-icon-1.png\";a:1:{s:8:\"image_id\";s:9:\"3116|full\";}s:64:\"https://avada.studio/wp-content/uploads/2022/08/hotel-room-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3122|full\";}s:64:\"https://avada.studio/wp-content/uploads/2022/08/beer-glasses.jpg\";a:1:{s:8:\"image_id\";s:9:\"3121|full\";}s:64:\"https://avada.studio/wp-content/uploads/2022/08/hotel-icon-2.png\";a:1:{s:8:\"image_id\";s:9:\"3123|full\";}s:62:\"https://avada.studio/wp-content/uploads/2022/08/hotel-view.jpg\";a:1:{s:8:\"image_id\";s:9:\"3140|full\";}s:66:\"https://avada.studio/wp-content/uploads/2022/08/hotel-video-bg.jpg\";b:1;s:65:\"https://avada.studio/wp-content/uploads/2022/08/hotel-divider.png\";a:1:{s:8:\"image_id\";s:9:\"3134|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:3141;b:1;}s:10:\"post_cards\";a:1:{i:3133;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_template/hotel/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/08/hotel-template-ss-400x829.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:829;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/08/hotel-template-ss-800x1659.jpg\";}s:7:\"_fusion\";a:31:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f4f4f4\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#4cc9e9\";s:16:\"color5_overwrite\";s:7:\"#a58b36\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#1c1c1c\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h2_size\";s:4:\"46px\";s:7:\"h3_size\";s:4:\"36px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:5:\"22px \";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Cinzel\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Cinzel\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Cinzel\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Barlow\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.2\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3749\";a:11:{s:2:\"ID\";i:3749;s:10:\"post_title\";s:30:\"Product Archives Template 3749\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/488.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2993;b:1;}s:10:\"post_cards\";a:1:{i:2992;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_template/product-archives/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/archives-ss-1-400x441.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:441;}s:4:\"tags\";a:2:{i:0;s:8:\"archives\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/archives-ss-1-800x882.jpg\";}s:7:\"_fusion\";a:32:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#dff1f1\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#8cb26e\";s:16:\"color5_overwrite\";s:7:\"#6e9655\";s:16:\"color6_overwrite\";s:7:\"#3b7777\";s:16:\"color7_overwrite\";s:7:\"#37594f\";s:16:\"color8_overwrite\";s:7:\"#141617\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Libre Bodoni\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography2_overwrite\";a:7:{s:9:\"font-size\";s:4:\"19px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Roboto Flex\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography3_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Roboto Flex\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography4_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Roboto Flex\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";}s:21:\"typography5_overwrite\";a:6:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Roboto Flex\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2877\";a:11:{s:2:\"ID\";i:2877;s:10:\"post_title\";s:30:\"Company Timeline Template 2877\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:4:{s:62:\"https://avada.studio/wp-content/uploads/2022/07/timeline-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"2878|full\";}s:62:\"https://avada.studio/wp-content/uploads/2022/07/timeline-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"2881|full\";}s:62:\"https://avada.studio/wp-content/uploads/2022/07/timeline-4.jpg\";a:1:{s:8:\"image_id\";s:9:\"2886|full\";}s:62:\"https://avada.studio/wp-content/uploads/2022/07/timeline-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"2887|full\";}}s:5:\"icons\";a:1:{i:978;s:9:\"icon-mkb-\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_template/company-timeline/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2022/07/timeline-400x1051.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1051;}s:4:\"tags\";a:1:{i:0;s:8:\"timeline\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:60:\"https://avada.studio/wp-content/uploads/2022/07/timeline.jpg\";}s:7:\"_fusion\";a:11:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color5_overwrite\";s:7:\"#0f9b6a\";s:7:\"h1_size\";s:4:\"70px\";s:7:\"h2_size\";s:4:\"63px\";s:7:\"h3_size\";s:4:\"32px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Kanit\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Source Serif Pro\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Kanit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-2348\";a:11:{s:2:\"ID\";i:2348;s:10:\"post_title\";s:21:\"Florist Template 2348\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:6:{s:61:\"https://avada.studio/wp-content/uploads/2022/03/hero-bg-3.png\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2022/03/389.jpg\";a:1:{s:8:\"image_id\";s:9:\"2352|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/396.jpg\";b:1;s:56:\"https://avada.studio/wp-content/uploads/2022/03/3982.jpg\";a:1:{s:8:\"image_id\";s:9:\"2574|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/390.jpg\";a:1:{s:8:\"image_id\";s:9:\"2362|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/392.jpg\";a:1:{s:8:\"image_id\";s:9:\"2372|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2392;b:1;}s:10:\"post_cards\";a:1:{i:2397;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:45:\"https://avada.studio/fusion_template/florist/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/03/florist-400x675.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:675;}s:4:\"tags\";a:2:{i:0;s:8:\"products\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:59:\"https://avada.studio/wp-content/uploads/2022/03/florist.jpg\";}s:7:\"_fusion\";a:31:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f2f1ed\";s:16:\"color3_overwrite\";s:7:\"#ddd5cd\";s:16:\"color4_overwrite\";s:7:\"#8bb681\";s:16:\"color5_overwrite\";s:7:\"#8e526b\";s:16:\"color6_overwrite\";s:7:\"#456d73\";s:16:\"color7_overwrite\";s:7:\"#2f4a4c\";s:16:\"color8_overwrite\";s:7:\"#1d3033\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Baskervville\";s:11:\"line-height\";s:1:\"1\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"67px\";s:14:\"letter-spacing\";s:8:\"-0.024em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Baskervville\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:14:\"letter-spacing\";s:8:\"-0.024em\";s:9:\"font-size\";s:4:\"40px\";s:11:\"line-height\";s:1:\"1\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"League Spartan\";s:9:\"font-size\";s:4:\"18px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography4_overwrite\";a:8:{s:9:\"font-size\";s:4:\"20px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"League Spartan\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:9:\"font-size\";s:4:\"15px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"League Spartan\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2437\";a:11:{s:2:\"ID\";i:2437;s:10:\"post_title\";s:17:\"NFT Template 2437\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:11:{s:55:\"https://avada.studio/wp-content/uploads/2022/03/417.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2022/03/419.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2022/03/405.jpg\";a:1:{s:8:\"image_id\";s:9:\"2447|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/408.jpg\";a:1:{s:8:\"image_id\";s:9:\"2444|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/411.jpg\";a:1:{s:8:\"image_id\";s:9:\"2441|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/413.jpg\";a:1:{s:8:\"image_id\";s:9:\"2439|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/426.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2022/03/420.jpg\";a:1:{s:8:\"image_id\";s:9:\"2476|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/422.jpg\";a:1:{s:8:\"image_id\";s:9:\"2474|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/423.jpg\";a:1:{s:8:\"image_id\";s:9:\"2473|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/03/424.jpg\";a:1:{s:8:\"image_id\";s:9:\"2472|full\";}}s:10:\"post_cards\";a:2:{i:2450;s:4:\"true\";i:2463;s:4:\"true\";}}s:3:\"url\";s:41:\"https://avada.studio/fusion_template/nft/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/04/nft-400x928.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:928;}s:4:\"tags\";a:1:{i:0;s:3:\"nft\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:55:\"https://avada.studio/wp-content/uploads/2022/04/nft.jpg\";}s:7:\"_fusion\";a:16:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f3f0f4\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#cc9ee5\";s:16:\"color5_overwrite\";s:7:\"#2b3ddb\";s:16:\"color8_overwrite\";s:7:\"#05000a\";s:7:\"h1_size\";s:4:\"95px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:9:\"font-size\";s:4:\"95px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:1:\"1\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Outfit\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";}}}s:9:\"item-2481\";a:11:{s:2:\"ID\";i:2481;s:10:\"post_title\";s:21:\"Enquiry Template 2481\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/277.jpg\";a:1:{s:8:\"image_id\";s:9:\"1568|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:2482;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:1:{i:2491;b:1;}}s:3:\"url\";s:45:\"https://avada.studio/fusion_template/enquiry/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/04/enquiry-400x249.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:249;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:59:\"https://avada.studio/wp-content/uploads/2022/04/enquiry.jpg\";}s:7:\"_fusion\";a:27:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#e6f0f1\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#0dcf80\";s:16:\"color6_overwrite\";s:7:\"#005252\";s:7:\"h1_size\";s:4:\"80px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"24px\";s:7:\"h6_size\";s:4:\"20px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Spline Sans\";s:14:\"letter-spacing\";s:4:\"-1px\";s:9:\"font-size\";s:4:\"80px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Spline Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:1:\"1\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Spline Sans\";s:9:\"font-size\";s:4:\"17px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:0:\"\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:12:\"off_canvases\";a:1:{i:0;s:4:\"2491\";}s:18:\"preview_off_canvas\";s:4:\"2491\";}}s:9:\"item-2495\";a:11:{s:2:\"ID\";i:2495;s:10:\"post_title\";s:27:\"Shop Archives Template 2495\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/04/436.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:2500;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:51:\"https://avada.studio/fusion_template/shop-archives/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/04/shop-archives-400x375.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:375;}s:4:\"tags\";a:2:{i:0;s:8:\"archives\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:65:\"https://avada.studio/wp-content/uploads/2022/04/shop-archives.jpg\";}s:7:\"_fusion\";a:30:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f2fbf2\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#f6b633\";s:16:\"color5_overwrite\";s:7:\"#eb3e31\";s:16:\"color6_overwrite\";s:7:\"#705c44\";s:16:\"color7_overwrite\";s:7:\"#3d613f\";s:16:\"color8_overwrite\";s:7:\"#162317\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Libre Baskerville\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Source Sans Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Source Sans Pro\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Source Sans Pro\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:4:\"2537\";}}s:9:\"item-1787\";a:11:{s:2:\"ID\";i:1787;s:10:\"post_title\";s:24:\"Cyber Week Template 1787\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:65:\"https://avada.studio/wp-content/uploads/2021/11/background-23.png\";b:1;s:65:\"https://avada.studio/wp-content/uploads/2021/11/background-24.png\";b:1;s:54:\"https://avada.studio/wp-content/uploads/2021/08/32.jpg\";a:1:{s:8:\"image_id\";s:8:\"398|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:1796;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_template/cyber-week/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/10/cyberweek-01-400x553.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:553;}s:4:\"tags\";a:2:{i:0;s:9:\"promotion\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/10/cyberweek-01-800x1106.jpg\";}s:7:\"_fusion\";a:28:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#19ffff\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#f46a38\";s:16:\"color5_overwrite\";s:7:\"#bb00c1\";s:16:\"color6_overwrite\";s:7:\"#6f49c1\";s:16:\"color7_overwrite\";s:7:\"#70006c\";s:16:\"color8_overwrite\";s:7:\"#0b0a10\";s:7:\"h1_size\";s:4:\"90px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h5_size\";s:4:\"18px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Syne\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"90px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Syne\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Syne\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Roboto Condensed\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.5\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Roboto Condensed\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-1820\";a:11:{s:2:\"ID\";i:1820;s:10:\"post_title\";s:26:\"Black Friday Template 1820\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:3:{s:65:\"https://avada.studio/wp-content/uploads/2021/10/background-20.png\";s:4:\"true\";s:65:\"https://avada.studio/wp-content/uploads/2021/10/background-22.png\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/10/328.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:1836;s:4:\"true\";}s:10:\"post_cards\";a:1:{i:1829;s:4:\"true\";}}s:3:\"url\";s:50:\"https://avada.studio/fusion_template/black-friday/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/10/blackfriday-01-400x872.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:872;}s:4:\"tags\";a:4:{i:0;s:6:\"events\";i:1;s:8:\"products\";i:2;s:9:\"promotion\";i:3;s:11:\"woocommerce\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/10/blackfriday-01-800x1745.jpg\";}s:7:\"_fusion\";a:25:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#ededef\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#d7609e\";s:16:\"color5_overwrite\";s:7:\"#5a6cc4\";s:16:\"color6_overwrite\";s:7:\"#122eba\";s:16:\"color7_overwrite\";s:7:\"#171717\";s:16:\"color8_overwrite\";s:7:\"#0f0f0f\";s:7:\"h1_size\";s:4:\"80px\";s:7:\"h2_size\";s:4:\"65px\";s:7:\"h4_size\";s:4:\"25px\";s:7:\"h5_size\";s:4:\"21px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"80px\";s:14:\"text-transform\";s:4:\"none\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"25px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-1877\";a:11:{s:2:\"ID\";i:1877;s:10:\"post_title\";s:27:\"Fitness About Template 1877\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:8:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/347.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/10/349.jpg\";a:1:{s:8:\"image_id\";s:9:\"1880|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/350.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/10/351.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/10/352.jpg\";s:4:\"true\";s:60:\"https://avada.studio/wp-content/uploads/2021/10/iphone-2.png\";a:1:{s:8:\"image_id\";s:9:\"1885|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/355.jpg\";a:1:{s:8:\"image_id\";s:9:\"1888|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/356.jpg\";a:1:{s:8:\"image_id\";s:9:\"1889|full\";}}s:10:\"post_cards\";a:1:{i:1890;s:4:\"true\";}}s:3:\"url\";s:51:\"https://avada.studio/fusion_template/fitness-about/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2021/10/fitness-about-01-400x861.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:861;}s:4:\"tags\";a:1:{i:0;s:7:\"fitness\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2021/10/fitness-about-01.jpg\";}s:7:\"_fusion\";a:19:{s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:16:\"color4_overwrite\";s:7:\"#a0ea00\";s:16:\"color5_overwrite\";s:7:\"#ea007f\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Epilogue\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Epilogue\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lora\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"19px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Epilogue\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Epilogue\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color8_overwrite\";s:7:\"#0a0a0a\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color6_overwrite\";s:7:\"#d1006c\";s:7:\"h1_size\";s:4:\"70px\";s:7:\"h2_size\";s:4:\"53px\";s:7:\"h4_size\";s:4:\"26px\";s:7:\"h3_size\";s:4:\"35px\";s:7:\"h5_size\";s:4:\"22px\";}}s:9:\"item-1852\";a:11:{s:2:\"ID\";i:1852;s:10:\"post_title\";s:23:\"Pet About Template 1852\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:14:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/345.jpg\";a:1:{s:8:\"image_id\";s:9:\"1870|full\";}s:63:\"https://avada.studio/wp-content/uploads/2021/10/signature-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"1873|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/338.jpg\";b:1;s:62:\"https://avada.studio/wp-content/uploads/2021/10/staff-1@2x.jpg\";a:1:{s:8:\"image_id\";s:9:\"1859|full\";}s:60:\"https://avada.studio/wp-content/uploads/2021/10/avatar-8.jpg\";a:1:{s:8:\"image_id\";s:9:\"1858|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/346.jpg\";a:1:{s:8:\"image_id\";s:9:\"1876|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/340.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/10/341.jpg\";b:1;s:53:\"https://avada.studio/wp-content/uploads/2021/10/1.jpg\";a:1:{s:8:\"image_id\";s:9:\"2221|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/2.jpg\";a:1:{s:8:\"image_id\";s:9:\"2220|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/3.jpg\";a:1:{s:8:\"image_id\";s:9:\"2219|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/4.jpg\";a:1:{s:8:\"image_id\";s:9:\"2218|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/5.jpg\";a:1:{s:8:\"image_id\";s:9:\"2217|full\";}s:53:\"https://avada.studio/wp-content/uploads/2021/10/6.jpg\";a:1:{s:8:\"image_id\";s:9:\"2216|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:1863;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_template/pet-about/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/10/pet-about-02-400x1146.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:1146;}s:4:\"tags\";a:1:{i:0;s:8:\"about-us\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/10/pet-about-02.jpg\";}s:7:\"_fusion\";a:29:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#e8e8e8\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#e99953\";s:16:\"color5_overwrite\";s:7:\"#6675eb\";s:16:\"color6_overwrite\";s:7:\"#4a5ce2\";s:16:\"color7_overwrite\";s:7:\"#1525a1\";s:16:\"color8_overwrite\";s:7:\"#131844\";s:7:\"h1_size\";s:4:\"65px\";s:7:\"h2_size\";s:4:\"43px\";s:7:\"h4_size\";s:4:\"26px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Shippori Mincho\";s:9:\"font-size\";s:4:\"43px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lato\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"2px\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lato\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lato\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Shippori Mincho\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-1761\";a:11:{s:2:\"ID\";i:1761;s:10:\"post_title\";s:20:\"Agency Template 1761\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/310.jpg\";a:1:{s:8:\"image_id\";s:9:\"1769|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/312.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:1773;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_template/agency-template/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/10/avency-01-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/10/avency-01-800x731.jpg\";}s:7:\"_fusion\";a:26:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#fff4f2\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#16cea6\";s:16:\"color5_overwrite\";s:7:\"#f93c1b\";s:16:\"color6_overwrite\";s:7:\"#a0584d\";s:16:\"color7_overwrite\";s:7:\"#474747\";s:7:\"h1_size\";s:4:\"54px\";s:7:\"h4_size\";s:4:\"23px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Bona Nova\";s:9:\"font-size\";s:4:\"54px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"23px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Bona Nova\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-1608\";a:11:{s:2:\"ID\";i:1608;s:10:\"post_title\";s:22:\"Projects Template 1608\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/372.png\";s:4:\"true\";}s:10:\"post_cards\";a:1:{i:1609;s:4:\"true\";}s:5:\"icons\";a:1:{i:976;s:8:\"digital-\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-10/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/10/template-10-02-400x317.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:317;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/10/template-10-02-800x634.jpg\";}s:7:\"_fusion\";a:17:{s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:16:\"color4_overwrite\";s:7:\"#f2a500\";s:16:\"color5_overwrite\";s:7:\"#f40474\";s:16:\"color6_overwrite\";s:7:\"#731f9e\";s:16:\"color7_overwrite\";s:7:\"#1e1176\";s:16:\"color8_overwrite\";s:7:\"#0f0632\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color2_overwrite\";s:7:\"#f9eac8\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"54px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:9:\"400italic\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:6:\"italic\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"PT Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:7:\"h1_size\";s:4:\"54px\";s:7:\"h4_size\";s:4:\"27px\";s:7:\"h5_size\";s:4:\"22px\";}}s:9:\"item-1595\";a:11:{s:2:\"ID\";i:1595;s:10:\"post_title\";s:18:\"Shop Template 1595\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/282.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/10/283.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/10/286.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/10/284.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:1597;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:977;s:14:\"icon-furniture\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-09/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/10/template-09-400x888.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:888;}s:4:\"tags\";a:2:{i:0;s:9:\"shop-page\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2021/10/template-09.jpg\";}s:7:\"_fusion\";a:28:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f3ebd8\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#dfc38b\";s:16:\"color5_overwrite\";s:7:\"#608a83\";s:16:\"color6_overwrite\";s:7:\"#4f726e\";s:16:\"color7_overwrite\";s:7:\"#22302e\";s:16:\"color8_overwrite\";s:7:\"#141a19\";s:7:\"h1_size\";s:4:\"62px\";s:7:\"h3_size\";s:4:\"40px\";s:7:\"h5_size\";s:4:\"21px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:9:\"font-size\";s:4:\"61px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:9:\"font-size\";s:4:\"40px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-1578\";a:11:{s:2:\"ID\";i:1578;s:10:\"post_title\";s:18:\"Blog Template 1578\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:5:\"menus\";a:1:{s:10:\"categories\";s:4:\"true\";}s:10:\"post_cards\";a:4:{i:1577;s:4:\"true\";i:1579;s:4:\"true\";i:1580;s:4:\"true\";i:1582;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-08/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/10/template-08-400x928.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:928;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/10/template-08-800x1855.jpg\";}s:7:\"_fusion\";a:17:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f3f3fd\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#f99b77\";s:16:\"color5_overwrite\";s:7:\"#303fdd\";s:16:\"color6_overwrite\";s:7:\"#1c2692\";s:16:\"color7_overwrite\";s:7:\"#131b67\";s:16:\"color8_overwrite\";s:7:\"#080f35\";s:7:\"h1_size\";s:4:\"74px\";s:7:\"h3_size\";s:4:\"35px\";s:7:\"h4_size\";s:4:\"22px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:4:\"Lora\";s:9:\"font-size\";s:4:\"74px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:8:{s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"19px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-1565\";a:11:{s:2:\"ID\";i:1565;s:10:\"post_title\";s:22:\"Services Template 1565\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:9:{s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-1.png\";a:1:{s:8:\"image_id\";s:8:\"264|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-3.png\";a:1:{s:8:\"image_id\";s:8:\"266|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-2.png\";a:1:{s:8:\"image_id\";s:8:\"265|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-5.png\";a:1:{s:8:\"image_id\";s:8:\"268|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-4.png\";a:1:{s:8:\"image_id\";s:8:\"267|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/276.jpg\";a:1:{s:8:\"image_id\";s:9:\"1567|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/277.jpg\";a:1:{s:8:\"image_id\";s:9:\"1568|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/278.jpg\";a:1:{s:8:\"image_id\";s:9:\"1569|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/279.jpg\";a:1:{s:8:\"image_id\";s:9:\"1570|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-07/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/10/template-07-400x914.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:914;}s:4:\"tags\";a:1:{i:0;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2021/10/template-07.jpg\";}s:7:\"_fusion\";a:17:{s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:16:\"color4_overwrite\";s:7:\"#ff8c75\";s:16:\"color5_overwrite\";s:7:\"#1a7ced\";s:16:\"color6_overwrite\";s:7:\"#0e5bb4\";s:16:\"color7_overwrite\";s:7:\"#093a71\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color2_overwrite\";s:7:\"#ffe3e0\";s:16:\"color8_overwrite\";s:7:\"#051529\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Merriweather\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.3\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"20px\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"line-height\";s:3:\"1.7\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Merriweather\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Merriweather\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:7:\"h2_size\";s:4:\"50px\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h4_size\";s:4:\"30px\";}}s:9:\"item-1561\";a:11:{s:2:\"ID\";i:1561;s:10:\"post_title\";s:21:\"Contact Template 1561\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/275.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:1562;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-06/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/10/template-06-02-400x339.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:339;}s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/10/template-06-02-800x677.jpg\";}s:7:\"_fusion\";a:16:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f0f5fb\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#9eb8e6\";s:16:\"color5_overwrite\";s:7:\"#358dd6\";s:16:\"color6_overwrite\";s:7:\"#576c8e\";s:16:\"color7_overwrite\";s:7:\"#25498e\";s:16:\"color8_overwrite\";s:7:\"#0f1d38\";s:7:\"h1_size\";s:4:\"65px\";s:7:\"h2_size\";s:4:\"48px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Marcellus\";s:9:\"font-size\";s:4:\"65px\";s:11:\"line-height\";s:3:\"1.2\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:9:\"-0.065rem\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Marcellus\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:0:\"\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-1039\";a:11:{s:2:\"ID\";i:1039;s:10:\"post_title\";s:19:\"About Template 1039\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:4:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/259.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/09/260.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/09/261.jpg\";a:1:{s:8:\"image_id\";s:9:\"1526|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/263.jpg\";a:1:{s:8:\"image_id\";s:9:\"1528|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/template-02-400x639.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:639;}s:4:\"tags\";a:1:{i:0;s:8:\"about-us\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/template-02-800x1279.jpg\";}s:7:\"_fusion\";a:28:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f2f4eb\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#c0c479\";s:16:\"color5_overwrite\";s:7:\"#768e20\";s:16:\"color6_overwrite\";s:7:\"#596301\";s:16:\"color7_overwrite\";s:7:\"#292d01\";s:16:\"color8_overwrite\";s:7:\"#0d0f01\";s:7:\"h1_size\";s:4:\"70px\";s:7:\"h2_size\";s:4:\"46px\";s:7:\"h4_size\";s:4:\"25px\";s:21:\"typography1_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Kaisei Decol\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography2_overwrite\";a:8:{s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-1036\";a:11:{s:2:\"ID\";i:1036;s:10:\"post_title\";s:18:\"Cart Template 1036\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/271.jpg\";s:4:\"true\";}s:10:\"post_cards\";a:1:{i:861;s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-05/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/template-05-400x569.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:569;}s:4:\"tags\";a:2:{i:0;s:4:\"cart\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/template-05-800x1137.jpg\";}s:7:\"_fusion\";a:24:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f0eee5\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#b9b58d\";s:16:\"color5_overwrite\";s:7:\"#278b77\";s:16:\"color6_overwrite\";s:7:\"#1e6b59\";s:16:\"color7_overwrite\";s:7:\"#10372d\";s:16:\"color8_overwrite\";s:7:\"#091b18\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"17px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Red Hat Display\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-1031\";a:11:{s:2:\"ID\";i:1031;s:10:\"post_title\";s:22:\"Checkout Template 1031\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/268.jpg\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-04/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/template-04-400x627.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:627;}s:4:\"tags\";a:2:{i:0;s:8:\"checkout\";i:1;s:11:\"woocommerce\";}s:7:\"plugins\";a:1:{i:0;s:11:\"woocommerce\";}s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/template-04-800x1254.jpg\";}s:7:\"_fusion\";a:23:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f9ebe8\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#e5948f\";s:16:\"color5_overwrite\";s:7:\"#38a572\";s:16:\"color6_overwrite\";s:7:\"#466d6d\";s:16:\"color7_overwrite\";s:7:\"#2c4444\";s:16:\"color8_overwrite\";s:7:\"#162222\";s:7:\"h1_size\";s:4:\"96px\";s:7:\"h4_size\";s:4:\"28px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"96px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:9:\"font-size\";s:4:\"27px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}}}s:9:\"item-1001\";a:11:{s:2:\"ID\";i:1001;s:10:\"post_title\";s:25:\"Coming Soon Template 1001\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/264.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:1531;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-03/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/template-03-400x199.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:199;}s:4:\"tags\";a:1:{i:0;s:11:\"maintenance\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/template-03-800x398.jpg\";}s:7:\"_fusion\";a:26:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f4f4f4\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#ff956b\";s:16:\"color5_overwrite\";s:7:\"#0097a8\";s:16:\"color6_overwrite\";s:7:\"#007c89\";s:16:\"color7_overwrite\";s:7:\"#00444f\";s:16:\"color8_overwrite\";s:7:\"#00141a\";s:7:\"h1_size\";s:4:\"75px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Heebo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"75px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Heebo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:4:\"-1px\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Heebo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Heebo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Heebo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:8:\"item-954\";a:11:{s:2:\"ID\";i:954;s:10:\"post_title\";s:24:\"Coming Soon Template 954\";s:9:\"post_type\";s:15:\"fusion_template\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/131.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:955;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_template/template-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/template-01-400x278.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:278;}s:4:\"tags\";a:1:{i:0;s:11:\"maintenance\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/09/template-01-800x556.jpg\";}s:7:\"_fusion\";a:26:{s:14:\"blog_width_100\";s:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:7:\"bg_full\";s:2:\"no\";s:11:\"live_header\";s:2:\"no\";s:8:\"live_ptb\";s:2:\"no\";s:11:\"live_footer\";s:2:\"no\";s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#e7e9e9\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#38b77e\";s:16:\"color5_overwrite\";s:7:\"#8178e2\";s:16:\"color6_overwrite\";s:7:\"#5046e4\";s:16:\"color7_overwrite\";s:7:\"#333ca5\";s:16:\"color8_overwrite\";s:7:\"#181838\";s:7:\"h1_size\";s:4:\"60px\";s:21:\"typography1_overwrite\";a:8:{s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Merriweather\";s:14:\"letter-spacing\";s:4:\"-2px\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Merriweather\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:17:\"content_bg_repeat\";s:7:\"default\";s:9:\"bg_repeat\";s:7:\"default\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:18:\"preview_off_canvas\";s:0:\"\";}}}s:14:\"page_title_bar\";a:21:{s:9:\"item-6044\";a:11:{s:2:\"ID\";i:6044;s:10:\"post_title\";s:22:\"General Sales PTB 6044\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:6:{s:73:\"https://avada.studio/wp-content/uploads/2025/10/woman-shopping-01-min.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6045|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/10/sale-ptb-bg01-min.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6046|full\";}s:67:\"https://avada.studio/wp-content/uploads/2025/10/sale-label-bg01.png\";a:1:{s:19:\"background_image_id\";s:9:\"6050|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/10/shop-save-01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"6047|full\";}s:74:\"https://avada.studio/wp-content/uploads/2025/10/grab-sale-deals-01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"6048|full\";}s:72:\"https://avada.studio/wp-content/uploads/2025/10/dream-pricing-01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"6049|full\";}}}s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/general-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2025/10/sales-ptb-ss01-400x187.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:187;}s:4:\"tags\";a:1:{i:0;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2025/10/sales-ptb-ss01-800x374.jpg\";}s:7:\"_fusion\";a:20:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#aebbe6\";s:16:\"color5_overwrite\";s:7:\"#f24f2f\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#0f0f0f\";s:7:\"h6_size\";s:4:\"19px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"21px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:15:\"Instrument Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.4\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-5643\";a:11:{s:2:\"ID\";i:5643;s:10:\"post_title\";s:18:\"Valentine PTB 5643\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/valentine/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/02/valentine-ptb-ss1-400x163.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:163;}s:4:\"tags\";a:4:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";i:2;s:12:\"masked-image\";i:3;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2025/02/valentine-ptb-ss1-800x326.jpg\";}s:7:\"_fusion\";a:16:{s:19:\"exclude_form_studio\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color4_overwrite\";s:7:\"#ff96ae\";s:16:\"color3_overwrite\";s:7:\"#ffccda\";s:16:\"color2_overwrite\";s:7:\"#ffeaf0\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#474747\";s:16:\"color8_overwrite\";s:7:\"#191919\";s:16:\"color5_overwrite\";s:7:\"#da616e\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Belleza\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"54px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Belleza\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Libre Franklin\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:7:\"-0.01em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Libre Franklin\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Libre Franklin\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"5644\";}}}s:9:\"item-5370\";a:11:{s:2:\"ID\";i:5370;s:10:\"post_title\";s:26:\"Fall Autumn Style PTB 5370\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:76:\"https://avada.studio/wp-content/uploads/2024/09/autumn-leaves-left-3-min.png\";a:1:{s:8:\"image_id\";s:9:\"5380|full\";}s:77:\"https://avada.studio/wp-content/uploads/2024/09/autumn-leaves-right-3-min.png\";a:1:{s:8:\"image_id\";s:9:\"5381|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:57:\"https://avada.studio/fusion_tb_section/fall-autumn-style/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2024/09/autumn-ptb-ss1-400x222.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:222;}s:4:\"tags\";a:3:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";i:2;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2024/09/autumn-ptb-ss1-800x443.jpg\";}s:7:\"_fusion\";a:21:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f6f3f5\";s:16:\"color3_overwrite\";s:7:\"#e2dddf\";s:16:\"color4_overwrite\";s:7:\"#85be9d\";s:16:\"color5_overwrite\";s:7:\"#da6419\";s:16:\"color6_overwrite\";s:7:\"#686868\";s:16:\"color7_overwrite\";s:7:\"#424242\";s:16:\"color8_overwrite\";s:7:\"#161616\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Cormorant Infant\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"66px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.025em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Fauna One\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.025em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Fauna One\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.0\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Fauna One\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.9\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Fauna One\";s:11:\"line-height\";s:3:\"1.5\";s:9:\"font-size\";s:4:\"14px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"5376\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-4897\";a:11:{s:2:\"ID\";i:4897;s:10:\"post_title\";s:23:\"Mask Title Bar PTB 4897\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2023/12/hero-7.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:54:\"https://avada.studio/fusion_tb_section/mask-title-bar/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2023/12/ptb-ss-400x128.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:128;}s:4:\"tags\";a:1:{i:0;s:12:\"masked-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2023/12/ptb-ss-800x257.jpg\";}s:7:\"_fusion\";a:17:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color7_overwrite\";s:7:\"#003f34\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Young Serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Gabarito\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3851\";a:11:{s:2:\"ID\";i:3851;s:10:\"post_title\";s:14:\"Coach PTB 3851\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:60:\"https://avada.studio/wp-content/uploads/2023/01/coach-bg.svg\";b:1;s:62:\"https://avada.studio/wp-content/uploads/2023/01/coach-mask.svg\";b:1;s:61:\"https://avada.studio/wp-content/uploads/2023/01/signature.svg\";a:1:{s:8:\"image_id\";s:9:\"3856|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:45:\"https://avada.studio/fusion_tb_section/coach/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/01/coach-ptb-ss-400x179.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:179;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/01/coach-ptb-ss-800x359.jpg\";}s:7:\"_fusion\";a:27:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#ededed\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#eda444\";s:16:\"color5_overwrite\";s:7:\"#1968d6\";s:16:\"color6_overwrite\";s:7:\"#1d1d23\";s:16:\"color7_overwrite\";s:7:\"#5b4f68\";s:16:\"color8_overwrite\";s:7:\"#3b3a64\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:18:\"Gentium Book Basic\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"3853\";}s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3844\";a:11:{s:2:\"ID\";i:3844;s:10:\"post_title\";s:15:\"Travel PTB 3844\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_tb_section/travel/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/01/travel-ptb-ss-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/01/travel-ptb-ss-800x457.jpg\";}s:7:\"_fusion\";a:22:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#dbdbdb\";s:16:\"color4_overwrite\";s:7:\"#c5a3f3\";s:16:\"color5_overwrite\";s:7:\"#ff000e\";s:16:\"color6_overwrite\";s:7:\"#7550a8\";s:16:\"color7_overwrite\";s:7:\"#513479\";s:16:\"color8_overwrite\";s:7:\"#261242\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"56px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:9:\"font-size\";s:4:\"26px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"PT Serif\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:0:\"\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"3845\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-3068\";a:11:{s:2:\"ID\";i:3068;s:10:\"post_title\";s:20:\"Corporation PTB 3068\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:51:\"https://avada.studio/fusion_tb_section/corporation/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/07/corporation-400x169.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:169;}s:4:\"tags\";a:1:{i:0;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/07/corporation-800x337.jpg\";}s:7:\"_fusion\";a:25:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f9f9fb\";s:16:\"color3_overwrite\";s:7:\"#f2f3f5\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#6271fc\";s:16:\"color6_overwrite\";s:7:\"#23759b\";s:16:\"color7_overwrite\";s:7:\"#0f2385\";s:16:\"color8_overwrite\";s:7:\"#1a1c28\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Gantari\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:5:\"0.9em\";s:9:\"font-size\";s:4:\"60px\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Gantari\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Gantari\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:4:\"page\";s:12:\"preview_page\";s:4:\"3069\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:9:\"item-3063\";a:11:{s:2:\"ID\";i:3063;s:10:\"post_title\";s:16:\"Startup PTB 3063\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_tb_section/startup-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2022/07/startup-banking-page-title-bar-400x327.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:327;}s:4:\"tags\";a:1:{i:0;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2022/07/startup-banking-page-title-bar-800x654.jpg\";}s:7:\"_fusion\";a:21:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:12:\"preview_page\";s:4:\"3065\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"900\";s:11:\"font-weight\";s:3:\"900\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:33:\"\'Arial Black\', Gadget, sans-serif\";s:9:\"font-size\";s:4:\"76px\";s:11:\"line-height\";s:5:\"1.1em\";s:14:\"letter-spacing\";s:8:\"-0.025em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:6:\"1.48em\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#ebebeb\";s:16:\"color3_overwrite\";s:7:\"#d8d8d8\";s:16:\"color4_overwrite\";s:7:\"#c8b293\";s:16:\"color5_overwrite\";s:7:\"#206140\";s:16:\"color6_overwrite\";s:7:\"#4f423e\";s:16:\"color7_overwrite\";s:7:\"#27211f\";s:16:\"color8_overwrite\";s:7:\"#000000\";s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Mono\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:6:\"1.42em\";s:14:\"letter-spacing\";s:3:\"1px\";}s:28:\"dynamic_content_preview_type\";s:4:\"page\";s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:5:\"1.5em\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"line-height\";s:3:\"1.6\";s:9:\"font-size\";s:4:\"14px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}}}s:9:\"item-2763\";a:11:{s:2:\"ID\";i:2763;s:10:\"post_title\";s:15:\"Recipe PTB 2763\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_tb_section/recipe/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/06/recipe-ptb-ss-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:11:\"full-height\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/06/recipe-ptb-ss-800x390.jpg\";}s:7:\"_fusion\";a:22:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f7f8ea\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#d6b194\";s:16:\"color5_overwrite\";s:7:\"#d65900\";s:16:\"color6_overwrite\";s:7:\"#6b6b6b\";s:16:\"color7_overwrite\";s:7:\"#474747\";s:16:\"color8_overwrite\";s:7:\"#141616\";s:7:\"h1_size\";s:4:\"58px\";s:21:\"typography1_overwrite\";a:8:{s:9:\"font-size\";s:4:\"58px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Libre Baskerville\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Libre Baskerville\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:9:\"Work Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"2764\";}s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2770\";a:11:{s:2:\"ID\";i:2770;s:10:\"post_title\";s:13:\"Tech PTB 2770\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2022/06/blog-post-vr-gaming.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:44:\"https://avada.studio/fusion_tb_section/tech/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2022/06/tech-ptb-screenshot-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2022/06/tech-ptb-screenshot-800x395.jpg\";}s:7:\"_fusion\";a:24:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#efefef\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#92b8d1\";s:16:\"color5_overwrite\";s:7:\"#b06ed1\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:16:\"color7_overwrite\";s:7:\"#444444\";s:16:\"color8_overwrite\";s:7:\"#222222\";s:7:\"h1_size\";s:4:\"56px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"56px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.012em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:14:\"text-transform\";s:0:\"\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.012em\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:4:\"2771\";}s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:9:\"item-2756\";a:11:{s:2:\"ID\";i:2756;s:10:\"post_title\";s:18:\"Blog Post PTB 2756\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:47:\"https://avada.studio/fusion_tb_section/startup/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/06/blog-post-startup-square-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;}s:4:\"tags\";a:3:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";i:2;s:12:\"masked-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/06/blog-post-startup-square-800x470.jpg\";}s:7:\"_fusion\";a:22:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_page\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:12:\"preview_post\";a:1:{i:0;s:4:\"2757\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:7:\"0.025em\";s:14:\"text-transform\";s:0:\"\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:5:\"1.6em\";s:14:\"letter-spacing\";s:6:\"0.02em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:6:\"1.48em\";s:14:\"letter-spacing\";s:7:\"0.015em\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:5:\"1.4em\";s:14:\"letter-spacing\";s:6:\"0.01em\";}s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:17:\"Plus Jakarta Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:6:\"1.15em\";s:14:\"letter-spacing\";s:8:\"-0.025em\";}s:16:\"color8_overwrite\";s:7:\"#041f2e\";s:16:\"color7_overwrite\";s:7:\"#2c363c\";s:16:\"color6_overwrite\";s:7:\"#5e6366\";s:16:\"color4_overwrite\";s:7:\"#1b89c6\";s:16:\"color5_overwrite\";s:7:\"#ee4c2f\";s:16:\"color3_overwrite\";s:7:\"#b7bdc9\";s:16:\"color2_overwrite\";s:7:\"#eaedf2\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";}}s:8:\"item-605\";a:11:{s:2:\"ID\";i:605;s:10:\"post_title\";s:17:\"Blog Post PTB 605\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:54:\"https://avada.studio/wp-content/uploads/2021/08/48.jpg\";a:1:{s:8:\"image_id\";s:8:\"526|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/blog-post-ptb-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/08/food-nutrition-blog-post-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/08/food-nutrition-blog-post-800x448.jpg\";}s:7:\"_fusion\";a:23:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#f8f6f2\";s:16:\"color3_overwrite\";s:7:\"#cccccc\";s:16:\"color4_overwrite\";s:7:\"#e0b084\";s:16:\"color5_overwrite\";s:7:\"#993d29\";s:16:\"color6_overwrite\";s:7:\"#863321\";s:16:\"color7_overwrite\";s:7:\"#183765\";s:16:\"color8_overwrite\";s:7:\"#03053d\";s:7:\"h1_size\";s:4:\"70px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Fraunces\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.024em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:8:\"Fraunces\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"40px\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";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:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography5_overwrite\";a:7:{s:9:\"font-size\";s:4:\"13px\";s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.7\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"533\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-592\";a:11:{s:2:\"ID\";i:592;s:10:\"post_title\";s:17:\"Blog Post PTB 592\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/blog-post-ptb-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/08/design-system-blog-post-400x298.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:298;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/08/design-system-blog-post-800x596.jpg\";}s:7:\"_fusion\";a:23:{s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"593\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#559bb2\";s:16:\"color6_overwrite\";s:7:\"#705c44\";s:16:\"color7_overwrite\";s:7:\"#60092b\";s:16:\"color4_overwrite\";s:7:\"#f6b633\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#e8e8e8\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"-0.03em\";s:14:\"text-transform\";s:4:\"none\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.024em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:14:\"letter-spacing\";s:8:\"-0.01rem\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.2\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.01rem\";}s:16:\"color8_overwrite\";s:7:\"#35000d\";s:7:\"h1_size\";s:4:\"70px\";s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"40px\";s:11:\"line-height\";s:3:\"1.2\";}}}s:8:\"item-588\";a:11:{s:2:\"ID\";i:588;s:10:\"post_title\";s:19:\"Large Title PTB 588\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/simple-ptb-01/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/ptb-line-custom-separator-400x118.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:118;}s:4:\"tags\";a:2:{i:0;s:11:\"breadcrumbs\";i:1;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/ptb-line-custom-separator-800x235.jpg\";}s:7:\"_fusion\";a:24:{s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"528\";}s:12:\"preview_page\";s:3:\"590\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#027cff\";s:16:\"color6_overwrite\";s:7:\"#034ee9\";s:16:\"color8_overwrite\";s:7:\"#0b0c11\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:8:\"-0.024em\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#ededef\";s:16:\"color3_overwrite\";s:7:\"#d9dbe2\";s:16:\"color4_overwrite\";s:7:\"#8296d6\";s:16:\"color7_overwrite\";s:7:\"#3f3f3f\";s:7:\"h1_size\";s:4:\"60px\";s:7:\"h5_size\";s:4:\"21px\";s:21:\"typography3_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:21:\"typography4_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:9:\"font-size\";s:4:\"17px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:9:\"font-size\";s:4:\"15px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:11:\"Public Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}}}s:8:\"item-582\";a:11:{s:2:\"ID\";i:582;s:10:\"post_title\";s:14:\"Simple PTB 582\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/simple-ptb-04/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/08/simple-ss-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;}s:4:\"tags\";a:3:{i:0;s:11:\"breadcrumbs\";i:1;s:14:\"featured-image\";i:2;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/08/simple-ss-800x241.jpg\";}s:7:\"_fusion\";a:18:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color3_overwrite\";s:7:\"#e0e0e0\";s:16:\"color4_overwrite\";s:7:\"#c78fea\";s:16:\"color6_overwrite\";s:7:\"#6d6d6d\";s:7:\"h2_size\";s:4:\"48px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";}s:21:\"typography2_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:9:\"font-size\";s:4:\"30px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography3_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:9:\"font-size\";s:4:\"22px\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography5_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Roboto\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"583\";}s:12:\"preview_page\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";s:18:\"preview_off_canvas\";s:0:\"\";}}s:8:\"item-556\";a:11:{s:2:\"ID\";i:556;s:10:\"post_title\";s:17:\"Blog Post PTB 556\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:54:\"https://avada.studio/wp-content/uploads/2021/08/48.jpg\";a:1:{s:8:\"image_id\";s:8:\"526|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/blog-post-ptb-03/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/wedding-blog-post-400x327.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:327;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/08/wedding-blog-post-800x655.jpg\";}s:7:\"_fusion\";a:24:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#ecf6f3\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#a0a48e\";s:16:\"color5_overwrite\";s:7:\"#859799\";s:16:\"color6_overwrite\";s:7:\"#666e75\";s:16:\"color7_overwrite\";s:7:\"#475753\";s:16:\"color8_overwrite\";s:7:\"#0c0f0e\";s:7:\"h1_size\";s:4:\"70px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Alice\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:14:\"letter-spacing\";s:8:\"-0.025em\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography2_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Alice\";s:9:\"font-size\";s:4:\"60px\";s:11:\"font-backup\";s:14:\"Georgia, serif\";}s:21:\"typography3_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Libre Franklin\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"19px\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Libre Franklin\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography5_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:14:\"Libre Franklin\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"547\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-550\";a:11:{s:2:\"ID\";i:550;s:10:\"post_title\";s:17:\"Blog Post PTB 550\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/blog-post-ptb-04/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/sport-blog-post-400x214.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:214;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/sport-blog-post-800x428.jpg\";}s:7:\"_fusion\";a:23:{s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"552\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color5_overwrite\";s:7:\"#6c93c9\";s:16:\"color7_overwrite\";s:7:\"#374566\";s:16:\"color8_overwrite\";s:7:\"#0e1a20\";s:16:\"color2_overwrite\";s:7:\"#c5f123\";s:16:\"color4_overwrite\";s:7:\"#65bc7b\";s:16:\"color3_overwrite\";s:7:\"#dbdbdb\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color6_overwrite\";s:7:\"#202733\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"800\";s:11:\"font-weight\";s:3:\"800\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Barlow Condensed\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"70px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:7:\"-0.01em\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.2\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:3:\"1px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:14:\"text-transform\";s:9:\"uppercase\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Archivo\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:7:\"h1_size\";s:4:\"70px\";s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:16:\"Barlow Condensed\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.2\";}}}s:8:\"item-541\";a:11:{s:2:\"ID\";i:541;s:10:\"post_title\";s:13:\"Basic PTB 541\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:1:{s:12:\"categories-2\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/simple-ptb-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2021/08/ptb-insights-simple-400x80.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:80;}s:4:\"tags\";a:2:{i:0;s:7:\"archive\";i:1;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/08/ptb-insights-simple-800x160.jpg\";}s:7:\"_fusion\";a:23:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f0edff\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color4_overwrite\";s:7:\"#007c89\";s:16:\"color5_overwrite\";s:7:\"#ef3c1a\";s:16:\"color6_overwrite\";s:7:\"#99372c\";s:16:\"color7_overwrite\";s:7:\"#7a2121\";s:16:\"color8_overwrite\";s:7:\"#050505\";s:7:\"h1_size\";s:4:\"60px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Rufina\";s:9:\"font-size\";s:4:\"60px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:6:\"Rufina\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography5_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:3:\"1.7\";s:9:\"font-size\";s:4:\"16px\";}s:28:\"dynamic_content_preview_type\";s:4:\"page\";s:12:\"preview_page\";s:3:\"446\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-522\";a:11:{s:2:\"ID\";i:522;s:10:\"post_title\";s:17:\"Blog Post PTB 522\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:54:\"https://avada.studio/wp-content/uploads/2021/08/48.jpg\";a:1:{s:8:\"image_id\";s:8:\"526|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/blog-post-ptb-05/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/08/construction-blog-post-400x276.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:276;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/08/construction-blog-post-800x552.jpg\";}s:7:\"_fusion\";a:24:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f4\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#6dbca6\";s:16:\"color5_overwrite\";s:7:\"#1c85e7\";s:16:\"color6_overwrite\";s:7:\"#646464\";s:16:\"color7_overwrite\";s:7:\"#272a2b\";s:16:\"color8_overwrite\";s:7:\"#070707\";s:7:\"h1_size\";s:4:\"56px\";s:21:\"typography1_overwrite\";a:7:{s:7:\"variant\";s:3:\"300\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:9:\"font-size\";s:4:\"56px\";s:11:\"line-height\";s:3:\"1.2\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"32px\";}s:21:\"typography3_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Mono\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Mono\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"DM Mono\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:3:\"1px\";s:14:\"text-transform\";s:9:\"uppercase\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"537\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}s:8:\"item-465\";a:11:{s:2:\"ID\";i:465;s:10:\"post_title\";s:17:\"Blog Post PTB 465\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:56:\"https://avada.studio/fusion_tb_section/blog-post-ptb-06/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/08/technology-blog-post-400x327.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:327;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:14:\"featured-image\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/08/technology-blog-post-800x655.jpg\";}s:7:\"_fusion\";a:23:{s:21:\"studio_replace_params\";s:3:\"yes\";s:19:\"exclude_form_studio\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";a:1:{i:0;s:3:\"557\";}s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color4_overwrite\";s:7:\"#48d597\";s:16:\"color5_overwrite\";s:7:\"#eb4476\";s:16:\"color8_overwrite\";s:7:\"#0b1418\";s:16:\"color3_overwrite\";s:7:\"#d1d1d1\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#eaeced\";s:16:\"color6_overwrite\";s:7:\"#202533\";s:16:\"color7_overwrite\";s:7:\"#1c1c1c\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:9:\"font-size\";s:4:\"72px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"-0.02em\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography5_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"text-transform\";s:9:\"uppercase\";s:14:\"letter-spacing\";s:3:\"1px\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"19px\";s:11:\"line-height\";s:3:\"1.7\";}s:7:\"h1_size\";s:4:\"72px\";s:21:\"typography2_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"50px\";}s:21:\"typography4_overwrite\";a:7:{s:11:\"line-height\";s:3:\"1.7\";s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";}}}s:8:\"item-447\";a:11:{s:2:\"ID\";i:447;s:10:\"post_title\";s:16:\"Centered PTB 447\";s:9:\"post_type\";s:17:\"fusion_tb_section\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:0:{}s:5:\"menus\";a:1:{s:10:\"categories\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_tb_section/simple-ptb-03/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/08/Screenshot_122-400x115.png\";s:5:\"width\";i:400;s:6:\"height\";i:115;}s:4:\"tags\";a:3:{i:0;s:7:\"archive\";i:1;s:4:\"blog\";i:2;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/08/Screenshot_122-800x230.png\";}s:7:\"_fusion\";a:23:{s:19:\"exclude_form_studio\";s:2:\"no\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#fffacb\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#e08f0d\";s:16:\"color5_overwrite\";s:7:\"#e27500\";s:16:\"color6_overwrite\";s:7:\"#007c89\";s:16:\"color7_overwrite\";s:7:\"#070519\";s:16:\"color8_overwrite\";s:7:\"#12162d\";s:7:\"h1_size\";s:4:\"96px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"700\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:9:\"font-size\";s:4:\"96px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:4:\"-2px\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography2_overwrite\";a:7:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:21:\"Barlow Semi Condensed\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography3_overwrite\";a:7:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"Space Grotesk\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:7:\"Manrope\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";}s:21:\"typography5_overwrite\";a:2:{s:11:\"line-height\";s:3:\"1.7\";s:9:\"font-size\";s:4:\"16px\";}s:28:\"dynamic_content_preview_type\";s:4:\"page\";s:12:\"preview_page\";s:3:\"544\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}}}s:8:\"sections\";a:107:{s:9:\"item-6030\";a:10:{s:2:\"ID\";i:6030;s:10:\"post_title\";s:33:\"Black Friday Sales Container 6030\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:12:{s:64:\"https://avada.studio/wp-content/uploads/2025/10/shop-icon-01.png\";a:1:{s:8:\"image_id\";s:9:\"6031|full\";}s:72:\"https://avada.studio/wp-content/uploads/2025/10/black-friday-sale-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6032|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/10/lines-element-01.png\";a:1:{s:8:\"image_id\";s:9:\"6033|full\";}s:65:\"https://avada.studio/wp-content/uploads/2025/10/sale-label-01.png\";a:1:{s:8:\"image_id\";s:9:\"6034|full\";}s:60:\"https://avada.studio/wp-content/uploads/2025/10/arrow-01.png\";a:1:{s:8:\"image_id\";s:9:\"6035|full\";}s:67:\"https://avada.studio/wp-content/uploads/2025/10/gaming-stuff-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6036|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/smartphones-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6037|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/televisions-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6038|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/10/accessories-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"6039|full\";}s:78:\"https://avada.studio/wp-content/uploads/2025/10/sale-black-friday-bg01-min.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"6040|full\";}s:64:\"https://avada.studio/wp-content/uploads/2025/10/star-icon-01.png\";a:1:{s:8:\"image_id\";s:9:\"6041|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/10/memphis-object-01.png\";a:1:{s:8:\"image_id\";s:9:\"6042|full\";}}}s:3:\"url\";s:55:\"https://avada.studio/fusion_element/black-friday-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2025/10/blackfriday-sales-ss01-400x390.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:390;}s:4:\"tags\";a:2:{i:0;s:12:\"black-friday\";i:1;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2025/10/blackfriday-sales-ss01.jpg\";}}s:9:\"item-6003\";a:10:{s:2:\"ID\";i:6003;s:10:\"post_title\";s:31:\"Cyber Week Sales Container 6003\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:8:{s:70:\"https://avada.studio/wp-content/uploads/2025/02/transparent-spacer.png\";s:4:\"true\";s:75:\"https://avada.studio/wp-content/uploads/2025/10/cyber-week-main-bg1-min.jpg\";s:4:\"true\";s:68:\"https://avada.studio/wp-content/uploads/2025/10/design-elements5.png\";a:1:{s:8:\"image_id\";s:9:\"6028|full\";}s:71:\"https://avada.studio/wp-content/uploads/2025/10/laptops-sale-01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"6024|full\";}s:76:\"https://avada.studio/wp-content/uploads/2025/10/smartwatches-sale-01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"6021|full\";}s:72:\"https://avada.studio/wp-content/uploads/2025/10/cameras-sales-01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"6023|full\";}s:75:\"https://avada.studio/wp-content/uploads/2025/10/accessories-sale-01-min.jpg\";a:1:{s:8:\"image_id\";s:9:\"6022|full\";}s:67:\"https://avada.studio/wp-content/uploads/2025/10/design-element1.png\";a:1:{s:8:\"image_id\";s:9:\"6013|full\";}}}s:3:\"url\";s:55:\"https://avada.studio/fusion_element/cyber-week-sales-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2025/10/cyber-week-sale-ss2-400x282.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:282;}s:4:\"tags\";a:2:{i:0;s:10:\"cyber-week\";i:1;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2025/10/cyber-week-sale-ss2-800x564.jpg\";}}s:9:\"item-5933\";a:10:{s:2:\"ID\";i:5933;s:10:\"post_title\";s:30:\"Halloween Sales Container 5933\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:9:{s:63:\"https://avada.studio/wp-content/uploads/2025/10/header-bg-2.png\";a:1:{s:19:\"background_image_id\";s:9:\"5947|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/10/pumpkin-horror-1.png\";a:1:{s:8:\"image_id\";s:9:\"5936|full\";}s:60:\"https://avada.studio/wp-content/uploads/2025/10/spider-1.png\";a:1:{s:8:\"image_id\";s:9:\"5937|full\";}s:59:\"https://avada.studio/wp-content/uploads/2025/10/ghost-1.png\";a:1:{s:8:\"image_id\";s:9:\"5935|full\";}s:76:\"https://avada.studio/wp-content/uploads/2025/10/halloween-accessories-01.png\";a:1:{s:8:\"image_id\";s:9:\"5940|full\";}s:73:\"https://avada.studio/wp-content/uploads/2025/10/halloween-costumes-01.png\";a:1:{s:8:\"image_id\";s:9:\"5939|full\";}s:76:\"https://avada.studio/wp-content/uploads/2025/10/halloween-decorations-01.png\";a:1:{s:8:\"image_id\";s:9:\"5938|full\";}s:73:\"https://avada.studio/wp-content/uploads/2025/10/halloween-sales-bg-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5941|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/10/haunting-house-02.png\";a:1:{s:8:\"image_id\";s:9:\"5944|full\";}}}s:3:\"url\";s:52:\"https://avada.studio/fusion_element/halloween-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2025/10/halloween-sales-cont-ss1-400x360.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:360;}s:4:\"tags\";a:3:{i:0;s:9:\"halloween\";i:1;s:4:\"hero\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/10/halloween-sales-cont-ss1.jpg\";}}s:9:\"item-5714\";a:10:{s:2:\"ID\";i:5714;s:10:\"post_title\";s:21:\"Easter Container 5714\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:74:\"https://avada.studio/wp-content/uploads/2025/03/feature-image-easter-1.png\";a:1:{s:8:\"image_id\";s:4:\"5715\";}s:74:\"https://avada.studio/wp-content/uploads/2025/03/feature-image-easter-2.png\";a:1:{s:8:\"image_id\";s:4:\"5716\";}s:74:\"https://avada.studio/wp-content/uploads/2025/03/feature-image-easter-3.png\";a:1:{s:8:\"image_id\";s:4:\"5717\";}s:74:\"https://avada.studio/wp-content/uploads/2025/03/feature-image-easter-4.png\";a:1:{s:8:\"image_id\";s:4:\"5718\";}}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/easter/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2025/03/easter-surprise-products-promo-400x263.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:263;}s:4:\"tags\";a:3:{i:0;s:6:\"easter\";i:1;s:4:\"hero\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2025/03/easter-surprise-products-promo-800x527.jpg\";}}s:9:\"item-5689\";a:10:{s:2:\"ID\";i:5689;s:10:\"post_title\";s:19:\"Farm Container 5689\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:6:{s:70:\"https://avada.studio/wp-content/uploads/2025/02/transparent-spacer.png\";s:4:\"true\";s:72:\"https://avada.studio/wp-content/uploads/2025/02/farm-container-bg-02.jpg\";s:4:\"true\";s:63:\"https://avada.studio/wp-content/uploads/2025/02/farmer-main.png\";a:1:{s:8:\"image_id\";s:9:\"5696|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/02/growing-godness-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5692|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/02/delivered-fresh-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5694|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/02/eat-live-green-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5693|full\";}}}s:3:\"url\";s:41:\"https://avada.studio/fusion_element/farm/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2025/02/farm-container-ss1-400x186.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:186;}s:4:\"tags\";a:5:{i:0;s:4:\"farm\";i:1;s:4:\"food\";i:2;s:4:\"hero\";i:3;s:8:\"industry\";i:4;s:7:\"organic\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2025/02/farm-container-ss1-800x372.jpg\";}}s:9:\"item-5683\";a:10:{s:2:\"ID\";i:5683;s:10:\"post_title\";s:21:\"Energy Container 5683\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:66:\"https://avada.studio/wp-content/uploads/2025/02/energy-image-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5684|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/02/energy-image-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"5685|full\";}}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/energy/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2025/02/energy-container-ss1-400x374.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:374;}s:4:\"tags\";a:4:{i:0;s:6:\"energy\";i:1;s:13:\"environmental\";i:2;s:8:\"industry\";i:3;s:5:\"solar\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2025/02/energy-container-ss1.jpg\";}}s:9:\"item-5669\";a:10:{s:2:\"ID\";i:5669;s:10:\"post_title\";s:23:\"Business Container 5669\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:68:\"https://avada.studio/wp-content/uploads/2025/02/business-image-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5672|full\";}s:68:\"https://avada.studio/wp-content/uploads/2025/02/business-image-3.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5675|full\";}}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/business-5/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2025/02/business-container-ss03-400x218.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:218;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:9:\"corporate\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2025/02/business-container-ss03-800x436.jpg\";}}s:9:\"item-5626\";a:10:{s:2:\"ID\";i:5626;s:10:\"post_title\";s:24:\"Valentine Container 5626\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:14:{s:75:\"https://avada.studio/wp-content/uploads/2024/02/top-promo-discount-deco.png\";a:1:{s:19:\"background_image_id\";s:9:\"5005|full\";}s:70:\"https://avada.studio/wp-content/uploads/2025/02/valentine-hearts-4.png\";a:1:{s:8:\"image_id\";s:9:\"5630|full\";}s:60:\"https://avada.studio/wp-content/uploads/2025/02/moment-1.png\";a:1:{s:8:\"image_id\";s:9:\"5631|full\";}s:59:\"https://avada.studio/wp-content/uploads/2025/02/loved-1.png\";a:1:{s:8:\"image_id\";s:9:\"5632|full\";}s:59:\"https://avada.studio/wp-content/uploads/2025/02/magic-1.png\";a:1:{s:8:\"image_id\";s:9:\"5633|full\";}s:63:\"https://avada.studio/wp-content/uploads/2025/02/gifts-her-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5636|full\";}s:63:\"https://avada.studio/wp-content/uploads/2025/02/gifts-him-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5637|full\";}s:66:\"https://avada.studio/wp-content/uploads/2025/02/gold-jewelry-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5634|full\";}s:65:\"https://avada.studio/wp-content/uploads/2025/02/accessories-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5635|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/02/valentine-gifts-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5639|full\";}s:70:\"https://avada.studio/wp-content/uploads/2025/02/valentine-couple-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5638|full\";}s:70:\"https://avada.studio/wp-content/uploads/2024/10/stats-col-bg-1-min.png\";a:1:{s:19:\"background_image_id\";s:9:\"5529|full\";}s:69:\"https://avada.studio/wp-content/uploads/2025/02/valentine-gifts-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"5640|full\";}s:65:\"https://avada.studio/wp-content/uploads/2025/02/heart-shape-1.svg\";s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/valentine-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2025/02/valentine-cont-ss-01-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;}s:4:\"tags\";a:3:{i:0;s:9:\"promotion\";i:1;s:4:\"sale\";i:2;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2025/02/valentine-cont-ss-01.jpg\";}}s:9:\"item-5550\";a:10:{s:2:\"ID\";i:5550;s:10:\"post_title\";s:25:\"Beauty Spa Container 5550\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:3:{s:67:\"https://avada.studio/wp-content/uploads/2024/10/beauty-spa-bg01.jpg\";s:4:\"true\";s:64:\"https://avada.studio/wp-content/uploads/2024/10/beauty-spa-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5552|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/10/beauty-spa-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"5553|full\";}}s:5:\"icons\";a:1:{i:3932;s:16:\"icon-beauty-spa-\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/beauty-spa/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/10/beauty-spa-hero-ss1-400x155.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:155;}s:4:\"tags\";a:2:{i:0;s:6:\"beauty\";i:1;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/10/beauty-spa-hero-ss1-800x311.jpg\";}}s:9:\"item-5541\";a:10:{s:2:\"ID\";i:5541;s:10:\"post_title\";s:24:\"Gardening Container 5541\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:5:\"icons\";a:1:{i:5086;s:16:\"awb-spring-icons\";}s:15:\"multiple_images\";a:1:{s:39:\"background_slider_images-5544,5545,5546\";a:3:{i:5544;s:64:\"https://avada.studio/wp-content/uploads/2024/10/gardening-01.jpg\";i:5545;s:64:\"https://avada.studio/wp-content/uploads/2024/10/gardening-03.jpg\";i:5546;s:64:\"https://avada.studio/wp-content/uploads/2024/10/gardening-02.jpg\";}}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/gardening-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2024/10/gardening-services-ss1-400x194.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:194;}s:4:\"tags\";a:2:{i:0;s:9:\"gardening\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2024/10/gardening-services-ss1-800x388.jpg\";}}s:9:\"item-5520\";a:10:{s:2:\"ID\";i:5520;s:10:\"post_title\";s:27:\"Construction Container 5520\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:70:\"https://avada.studio/wp-content/uploads/2024/10/construction-bg-01.jpg\";s:4:\"true\";s:73:\"https://avada.studio/wp-content/uploads/2024/10/construction-image-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5525|full\";}}s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/construction-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2024/10/construction-container-ss1-400x190.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:190;}s:4:\"tags\";a:2:{i:0;s:12:\"construction\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:86:\"https://avada.studio/wp-content/uploads/2024/10/construction-container-ss1-800x380.jpg\";}}s:9:\"item-5522\";a:10:{s:2:\"ID\";i:5522;s:10:\"post_title\";s:22:\"Hosting Container 5522\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:71:\"https://avada.studio/wp-content/uploads/2024/10/trustpilot-rating-1.png\";a:1:{s:8:\"image_id\";s:9:\"5515|full\";}s:62:\"https://avada.studio/wp-content/uploads/2024/10/hosting-03.jpg\";a:1:{s:8:\"image_id\";s:9:\"5517|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/hosting/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2024/10/hosting-container-ss1-400x176.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:176;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:7:\"hosting\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2024/10/hosting-container-ss1-800x352.jpg\";}}s:9:\"item-5507\";a:10:{s:2:\"ID\";i:5507;s:10:\"post_title\";s:30:\"Interior Design Container 5507\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:70:\"https://avada.studio/wp-content/uploads/2024/10/interior-design-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5508|full\";}}s:5:\"icons\";a:1:{i:977;s:14:\"icon-furniture\";}}s:3:\"url\";s:52:\"https://avada.studio/fusion_element/interior-design/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/10/interior-design-ss1-400x252.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:252;}s:4:\"tags\";a:1:{i:0;s:15:\"interior-design\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/10/interior-design-ss1-800x505.jpg\";}}s:9:\"item-5500\";a:10:{s:2:\"ID\";i:5500;s:10:\"post_title\";s:29:\"Digital Agency Container 5500\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:77:\"https://avada.studio/wp-content/uploads/2024/10/digital-agency-services-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5501|full\";}}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/digital-agency/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2024/10/digital-agency-ss3-400x240.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:240;}s:4:\"tags\";a:3:{i:0;s:6:\"agency\";i:1;s:8:\"business\";i:2;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2024/10/digital-agency-ss3-800x481.jpg\";}}s:9:\"item-5489\";a:10:{s:2:\"ID\";i:5489;s:10:\"post_title\";s:28:\"Financial App Container 5489\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:76:\"https://avada.studio/wp-content/uploads/2024/10/automate-invoices-icon-2.png\";a:1:{s:8:\"image_id\";s:9:\"5495|full\";}s:74:\"https://avada.studio/wp-content/uploads/2024/10/manage-expenses-icon-2.png\";a:1:{s:8:\"image_id\";s:9:\"5496|full\";}s:76:\"https://avada.studio/wp-content/uploads/2024/10/payments-tracking-icon-2.png\";a:1:{s:8:\"image_id\";s:9:\"5497|full\";}s:72:\"https://avada.studio/wp-content/uploads/2024/10/savings-goals-icon-2.png\";a:1:{s:8:\"image_id\";s:9:\"5498|full\";}}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/financial-app/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/10/financial-app-ss2-400x186.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:186;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:7:\"finance\";i:2;s:5:\"money\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/10/financial-app-ss2-800x372.jpg\";}}s:9:\"item-5485\";a:10:{s:2:\"ID\";i:5485;s:10:\"post_title\";s:24:\"Logistics Container 5485\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:63:\"https://avada.studio/wp-content/uploads/2024/09/logistics-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5486|full\";}s:71:\"https://avada.studio/wp-content/uploads/2024/09/logistics-clients-1.png\";a:1:{s:8:\"image_id\";s:9:\"5487|full\";}}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/logistics/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/09/logistics-container-ss1-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:9:\"corporate\";i:2;s:9:\"logistics\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/09/logistics-container-ss1-800x391.jpg\";}}s:9:\"item-5324\";a:10:{s:2:\"ID\";i:5324;s:10:\"post_title\";s:25:\"Investment Container 5324\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:66:\"https://avada.studio/wp-content/uploads/2024/07/investment-bg1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5330|full\";}s:64:\"https://avada.studio/wp-content/uploads/2024/07/investment-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"5329|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:976;s:8:\"digital-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/investment/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/07/investment-cont-ss1-400x227.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:227;}s:4:\"tags\";a:5:{i:0;s:8:\"business\";i:1;s:9:\"corporate\";i:2;s:11:\"information\";i:3;s:10:\"investment\";i:4;s:7:\"service\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/07/investment-cont-ss1-800x453.jpg\";}}s:9:\"item-5306\";a:10:{s:2:\"ID\";i:5306;s:10:\"post_title\";s:18:\"SEO Container 5306\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:66:\"https://avada.studio/wp-content/uploads/2024/06/seo-graphic-04.png\";a:1:{s:8:\"image_id\";s:9:\"5311|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/06/seo-app-icons-01.png\";a:1:{s:8:\"image_id\";s:9:\"5307|full\";}}}s:3:\"url\";s:40:\"https://avada.studio/fusion_element/seo/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2024/06/seo-container-ss01-400x277.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:277;}s:4:\"tags\";a:5:{i:0;s:8:\"business\";i:1;s:9:\"corporate\";i:2;s:3:\"cta\";i:3;s:3:\"seo\";i:4;s:7:\"service\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2024/06/seo-container-ss01-800x553.jpg\";}}s:9:\"item-5201\";a:10:{s:2:\"ID\";i:5201;s:10:\"post_title\";s:23:\"Business Container 5201\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:72:\"https://avada.studio/wp-content/uploads/2024/05/business-header-bg-1.jpg\";s:4:\"true\";s:61:\"https://avada.studio/wp-content/uploads/2024/05/clients-1.png\";a:1:{s:8:\"image_id\";s:9:\"5198|full\";}}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/business-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2024/05/business-container-ss2-400x163.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:163;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:9:\"corporate\";i:2;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2024/05/business-container-ss2-800x325.jpg\";}}s:9:\"item-5112\";a:10:{s:2:\"ID\";i:5112;s:10:\"post_title\";s:28:\"Pricing Table Container 5112\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:70:\"https://avada.studio/wp-content/uploads/2024/03/pricing-starter-11.jpg\";a:1:{s:8:\"image_id\";s:9:\"5121|full\";}s:71:\"https://avada.studio/wp-content/uploads/2024/03/pricing-advanced-11.jpg\";a:1:{s:8:\"image_id\";s:9:\"5119|full\";}s:75:\"https://avada.studio/wp-content/uploads/2024/03/pricing-professional-11.jpg\";a:1:{s:8:\"image_id\";s:9:\"5120|full\";}}}s:3:\"url\";s:52:\"https://avada.studio/fusion_element/pricing-table-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/03/pricing-table-ss1-400x371.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:371;}s:4:\"tags\";a:1:{i:0;s:13:\"pricing-table\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2024/03/pricing-table-ss1-800x742.jpg\";}}s:9:\"item-5101\";a:10:{s:2:\"ID\";i:5101;s:10:\"post_title\";s:29:\"Corporate Info Container 5101\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:51:\"https://avada.studio/fusion_element/corporate-info/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2024/03/corporate-container-ss-1-400x155.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:155;}s:4:\"tags\";a:4:{i:0;s:8:\"business\";i:1;s:9:\"corporate\";i:2;s:11:\"information\";i:3;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2024/03/corporate-container-ss-1-800x310.jpg\";}}s:9:\"item-4973\";a:10:{s:2:\"ID\";i:4973;s:10:\"post_title\";s:31:\"Factory Services Container 4973\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:4066;s:17:\"hosting-template-\";}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/factory-services/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2024/02/factory-services-ss-2-400x359.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:359;}s:4:\"tags\";a:4:{i:0;s:9:\"corporate\";i:1;s:7:\"factory\";i:2;s:7:\"feature\";i:3;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2024/02/factory-services-ss-2-800x718.jpg\";}}s:9:\"item-4966\";a:10:{s:2:\"ID\";i:4966;s:10:\"post_title\";s:30:\"Vacation Rental Container 4966\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:52:\"https://avada.studio/fusion_element/vacation-rental/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2024/02/vacation-ss-400x213.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:213;}s:4:\"tags\";a:1:{i:0;s:4:\"form\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2024/02/vacation-ss-800x426.jpg\";}}s:9:\"item-4954\";a:10:{s:2:\"ID\";i:4954;s:10:\"post_title\";s:29:\"Valentines Day Container 4954\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:7:{s:81:\"https://avada.studio/wp-content/uploads/2024/02/celebrate-love-promo-sale-top.png\";a:1:{s:8:\"image_id\";s:9:\"4978|full\";}s:74:\"https://avada.studio/wp-content/uploads/2024/02/for-him-valentines-day.png\";a:1:{s:8:\"image_id\";s:9:\"4983|full\";}s:74:\"https://avada.studio/wp-content/uploads/2024/02/for-her-valentines-day.png\";a:1:{s:8:\"image_id\";s:9:\"4982|full\";}s:71:\"https://avada.studio/wp-content/uploads/2024/02/kids-valentines-day.png\";a:1:{s:8:\"image_id\";s:9:\"4985|full\";}s:74:\"https://avada.studio/wp-content/uploads/2024/02/friends-valentines-day.png\";a:1:{s:8:\"image_id\";s:9:\"4984|full\";}s:73:\"https://avada.studio/wp-content/uploads/2024/02/style-meets-affection.jpg\";a:1:{s:8:\"image_id\";s:9:\"4987|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/02/love-digital-age.jpg\";a:1:{s:8:\"image_id\";s:9:\"4986|full\";}}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/valentines-day-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:103:\"https://avada.studio/wp-content/uploads/2024/02/Screenshot-2024-02-08-085822-e1707382824877-400x416.png\";s:5:\"width\";i:400;s:6:\"height\";i:416;}s:4:\"tags\";a:3:{i:0;s:9:\"promotion\";i:1;s:4:\"sale\";i:2;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:103:\"https://avada.studio/wp-content/uploads/2024/02/Screenshot-2024-02-08-085822-e1707382824877-800x832.png\";}}s:9:\"item-4935\";a:10:{s:2:\"ID\";i:4935;s:10:\"post_title\";s:23:\"Features Container 4935\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:69:\"https://avada.studio/wp-content/uploads/2024/01/seamless-outreach.png\";a:1:{s:8:\"image_id\";s:9:\"4939|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/01/content-creation.png\";a:1:{s:8:\"image_id\";s:9:\"4937|full\";}s:71:\"https://avada.studio/wp-content/uploads/2024/01/data-driven-mastery.png\";a:1:{s:8:\"image_id\";s:9:\"4938|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/features-6/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/01/growth-toolkit-features-400x142.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:142;}s:4:\"tags\";a:3:{i:0;s:7:\"feature\";i:1;s:10:\"info-boxes\";i:2;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2024/01/growth-toolkit-features-800x283.jpg\";}}s:9:\"item-4823\";a:10:{s:2:\"ID\";i:4823;s:10:\"post_title\";s:21:\"Hockey Container 4823\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:62:\"https://avada.studio/wp-content/uploads/2023/11/background.jpg\";b:1;s:56:\"https://avada.studio/wp-content/uploads/2023/11/logo.svg\";a:1:{s:8:\"image_id\";s:9:\"4825|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/11/image-2.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/hockey/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2023/11/hockey-ss-400x189.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:189;}s:4:\"tags\";a:1:{i:0;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2023/11/hockey-ss-800x377.jpg\";}}s:9:\"item-4791\";a:10:{s:2:\"ID\";i:4791;s:10:\"post_title\";s:23:\"RTL Shop Container 4791\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:3:{s:6:\"images\";a:2:{s:62:\"https://avada.studio/wp-content/uploads/2023/11/food-bg-01.png\";s:4:\"true\";s:72:\"https://avada.studio/wp-content/uploads/2023/11/organic-food-items-1.jpg\";s:4:\"true\";}s:10:\"post_cards\";a:1:{i:4793;s:4:\"true\";}s:5:\"icons\";a:1:{i:3301;s:22:\"icon-ecommerce-square-\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/rtl-shop/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2023/11/urdu-food-container-ss-400x445.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:445;}s:4:\"tags\";a:3:{i:0;s:4:\"food\";i:1;s:3:\"rtl\";i:2;s:4:\"urdu\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2023/11/urdu-food-container-ss-800x890.jpg\";}}s:9:\"item-4774\";a:10:{s:2:\"ID\";i:4774;s:10:\"post_title\";s:24:\"Corporate Container 4774\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:61:\"https://avada.studio/wp-content/uploads/2023/11/corporate.jpg\";s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/corporate-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/11/corporate-ss-400x244.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:244;}s:4:\"tags\";a:1:{i:0;s:9:\"corporate\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/11/corporate-ss-800x489.jpg\";}}s:9:\"item-4762\";a:10:{s:2:\"ID\";i:4762;s:10:\"post_title\";s:26:\"Drinks Menu Container 4762\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:59:\"https://avada.studio/wp-content/uploads/2023/11/drink-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4763|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/11/drink-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4764|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/11/drink-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"4765|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/drinks-menu/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/11/drink-ss-400x230.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:230;}s:4:\"tags\";a:1:{i:0;s:4:\"menu\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/11/drink-ss-800x459.jpg\";}}s:9:\"item-4753\";a:10:{s:2:\"ID\";i:4753;s:10:\"post_title\";s:27:\"Chocolaterie Container 4753\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:56:\"https://avada.studio/wp-content/uploads/2023/11/hero.jpg\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/chocolaterie/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2023/11/chocolaterie-ss-400x183.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:183;}s:4:\"tags\";a:1:{i:0;s:4:\"food\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2023/11/chocolaterie-ss-800x366.jpg\";}}s:9:\"item-4722\";a:10:{s:2:\"ID\";i:4722;s:10:\"post_title\";s:27:\"Black Friday Container 4722\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:60:\"https://avada.studio/wp-content/uploads/2023/11/graphics.svg\";a:1:{s:8:\"image_id\";s:9:\"4724|full\";}s:58:\"https://avada.studio/wp-content/uploads/2023/11/hero-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4723|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:4725;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/black-friday/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:65:\"https://avada.studio/wp-content/uploads/2023/11/bf-ss-400x386.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:386;}s:4:\"tags\";a:2:{i:0;s:12:\"black-friday\";i:1;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:65:\"https://avada.studio/wp-content/uploads/2023/11/bf-ss-800x773.jpg\";}}s:9:\"item-4611\";a:10:{s:2:\"ID\";i:4611;s:10:\"post_title\";s:33:\"Thanksgiving Sales Container 4611\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:4:{s:74:\"https://avada.studio/wp-content/uploads/2023/10/thanksgiving-main-bg-5.png\";s:4:\"true\";s:62:\"https://avada.studio/wp-content/uploads/2022/11/floral-top.png\";a:1:{s:8:\"image_id\";s:9:\"3645|full\";}s:77:\"https://avada.studio/wp-content/uploads/2023/10/thanksgiving-sale-title-1.png\";a:1:{s:8:\"image_id\";s:9:\"4616|full\";}s:60:\"https://avada.studio/wp-content/uploads/2023/10/leaves-3.png\";a:1:{s:8:\"image_id\";s:9:\"4626|full\";}}s:10:\"post_cards\";a:1:{i:4623;s:4:\"true\";}}s:3:\"url\";s:55:\"https://avada.studio/fusion_element/thanksgiving-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2023/10/thanksgiving-sales-postcard-1-400x460.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:460;}s:4:\"tags\";a:3:{i:0;s:8:\"products\";i:1;s:4:\"sale\";i:2;s:12:\"thanksgiving\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/10/thanksgiving-sales-postcard-1.jpg\";}}s:9:\"item-4481\";a:10:{s:2:\"ID\";i:4481;s:10:\"post_title\";s:29:\"Halloween RSVP Container 4481\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:56:\"https://avada.studio/wp-content/uploads/2023/09/bg-4.svg\";b:1;s:61:\"https://avada.studio/wp-content/uploads/2023/09/graphic-6.svg\";a:1:{s:8:\"image_id\";s:9:\"4504|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/09/graphic-7.svg\";a:1:{s:8:\"image_id\";s:9:\"4505|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:4487;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/halloween-rsvp/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/09/halloween-rsvp-400x416.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:416;}s:4:\"tags\";a:2:{i:0;s:4:\"form\";i:1;s:9:\"halloween\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2023/09/halloween-rsvp-800x832.jpg\";}}s:9:\"item-4424\";a:10:{s:2:\"ID\";i:4424;s:10:\"post_title\";s:31:\"Fall Sales Promo Container 4424\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:76:\"https://avada.studio/wp-content/uploads/2023/09/bg-fall-sale-promo-avada.png\";b:1;s:61:\"https://avada.studio/wp-content/uploads/2023/09/leave-1-9.png\";a:1:{s:8:\"image_id\";s:9:\"4427|full\";}s:61:\"https://avada.studio/wp-content/uploads/2023/09/leave-1-6.png\";a:1:{s:8:\"image_id\";s:9:\"4425|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:3054;s:9:\"business-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/fall-sales-promo/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/09/fall-sale-container-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;}s:4:\"tags\";a:2:{i:0;s:10:\"full-width\";i:1;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/09/fall-sale-container-800x483.jpg\";}}s:9:\"item-4362\";a:10:{s:2:\"ID\";i:4362;s:10:\"post_title\";s:26:\"Art Gallery Container 4362\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:2:{s:71:\"https://avada.studio/wp-content/uploads/2023/08/art-gallery-image-1.png\";a:1:{s:8:\"image_id\";s:9:\"4363|full\";}s:71:\"https://avada.studio/wp-content/uploads/2023/08/art-gallery-image-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"4364|full\";}}s:10:\"post_cards\";a:1:{i:4361;s:4:\"true\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/art-gallery/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2023/08/art-gallery-container-1-400x743.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:743;}s:4:\"tags\";a:3:{i:0;s:3:\"art\";i:1;s:9:\"portfolio\";i:2;s:8:\"products\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2023/08/art-gallery-container-1-800x1485.jpg\";}}s:9:\"item-4335\";a:10:{s:2:\"ID\";i:4335;s:10:\"post_title\";s:21:\"Soccer Container 4335\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:5:{s:67:\"https://avada.studio/wp-content/uploads/2023/08/soccer-image-01.jpg\";s:4:\"true\";s:65:\"https://avada.studio/wp-content/uploads/2023/08/soccer-news-1.jpg\";s:4:\"true\";s:69:\"https://avada.studio/wp-content/uploads/2023/08/soccer-fixtures-1.jpg\";s:4:\"true\";s:70:\"https://avada.studio/wp-content/uploads/2023/08/soccer-ticketing-1.jpg\";s:4:\"true\";s:69:\"https://avada.studio/wp-content/uploads/2023/08/soccer-players-01.jpg\";s:4:\"true\";}s:5:\"icons\";a:1:{i:3280;s:8:\"icon-ui-\";}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/soccer/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/08/soccer-hero-ss-2-400x194.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:194;}s:4:\"tags\";a:5:{i:0;s:10:\"full-width\";i:1;s:4:\"hero\";i:2;s:11:\"information\";i:3;s:6:\"soccer\";i:4;s:6:\"sports\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/08/soccer-hero-ss-2-800x387.jpg\";}}s:9:\"item-4297\";a:10:{s:2:\"ID\";i:4297;s:10:\"post_title\";s:26:\"4th of July Container 4297\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2023/06/4th-bg.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/4th-of-july-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/06/4th-ss-1-400x143.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:143;}s:4:\"tags\";a:1:{i:0;s:11:\"4th-of-july\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/06/4th-ss-1-800x286.jpg\";}}s:9:\"item-4292\";a:10:{s:2:\"ID\";i:4292;s:10:\"post_title\";s:26:\"Summer Sale Container 4292\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:63:\"https://avada.studio/wp-content/uploads/2023/06/summer-sale.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/summer-sale/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/summer-sale-ss-2-400x194.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:194;}s:4:\"tags\";a:1:{i:0;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/summer-sale-ss-2-800x388.jpg\";}}s:9:\"item-4286\";a:10:{s:2:\"ID\";i:4286;s:10:\"post_title\";s:26:\"4th of July Container 4286\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:60:\"https://avada.studio/wp-content/uploads/2023/06/4th-bg-2.png\";a:1:{s:8:\"image_id\";s:9:\"4289|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/4th-of-july/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2023/06/4th-ss-400x181.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:181;}s:4:\"tags\";a:2:{i:0;s:11:\"4th-of-july\";i:1;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2023/06/4th-ss-800x361.jpg\";}}s:9:\"item-4241\";a:10:{s:2:\"ID\";i:4241;s:10:\"post_title\";s:28:\"Food Articles Container 4241\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/food-articles/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/06/stretch-postcard-ss-400x273.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:273;}s:4:\"tags\";a:1:{i:0;s:6:\"recipe\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/06/stretch-postcard-ss-800x546.jpg\";}}s:9:\"item-4202\";a:10:{s:2:\"ID\";i:4202;s:10:\"post_title\";s:17:\"TV Container 4202\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:62:\"https://avada.studio/wp-content/uploads/2023/06/tv-hero-bg.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:1:{i:4204;b:1;}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:39:\"https://avada.studio/fusion_element/tv/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2023/06/tv-container-ss-400x318.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:318;}s:4:\"tags\";a:2:{i:0;s:11:\"full-height\";i:1;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2023/06/tv-container-ss-800x636.jpg\";}}s:9:\"item-4146\";a:10:{s:2:\"ID\";i:4146;s:10:\"post_title\";s:22:\"Wedding Container 4146\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:62:\"https://avada.studio/wp-content/uploads/2023/06/background.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:4149;s:8:\"wedding-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/wedding-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2023/06/wedding-container-ss-400x217.png\";s:5:\"width\";i:400;s:6:\"height\";i:217;}s:4:\"tags\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"wedding\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2023/06/wedding-container-ss-800x435.png\";}}s:9:\"item-4165\";a:10:{s:2:\"ID\";i:4165;s:10:\"post_title\";s:28:\"Services Grid Container 4165\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:77:\"https://avada.studio/wp-content/uploads/2023/06/robotics-2-e1686083034886.jpg\";a:1:{s:8:\"image_id\";s:9:\"4167|full\";}s:70:\"https://avada.studio/wp-content/uploads/2023/06/process-automation.jpg\";a:1:{s:8:\"image_id\";s:9:\"4169|full\";}s:62:\"https://avada.studio/wp-content/uploads/2023/06/robotics-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4166|full\";}}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/services-grid/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/06/services-grid-ss4-400x256.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:256;}s:4:\"tags\";a:2:{i:0;s:4:\"grid\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2023/06/services-grid-ss4-800x512.jpg\";}}s:9:\"item-4087\";a:10:{s:2:\"ID\";i:4087;s:10:\"post_title\";s:28:\"Business Hero Container 4087\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:67:\"https://avada.studio/wp-content/uploads/2022/10/cyber-week-bg-3.png\";s:4:\"true\";s:67:\"https://avada.studio/wp-content/uploads/2023/05/business-hero-1.jpg\";s:4:\"true\";s:67:\"https://avada.studio/wp-content/uploads/2023/05/business-hero-2.jpg\";s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/business-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/05/business-hero-ss-1-400x169.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:169;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:10:\"full-width\";i:2;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/05/business-hero-ss-1-800x338.jpg\";}}s:9:\"item-3955\";a:10:{s:2:\"ID\";i:3955;s:10:\"post_title\";s:28:\"Arts & Crafts Container 3955\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:62:\"https://avada.studio/wp-content/uploads/2023/03/background.svg\";s:4:\"true\";s:59:\"https://avada.studio/wp-content/uploads/2023/03/craft-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"3956|full\";}s:59:\"https://avada.studio/wp-content/uploads/2023/03/craft-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3957|full\";}}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/arts-crafts/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2023/03/arts-ss-400x183.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:183;}s:4:\"tags\";a:1:{i:0;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2023/03/arts-ss-800x367.jpg\";}}s:9:\"item-3945\";a:10:{s:2:\"ID\";i:3945;s:10:\"post_title\";s:20:\"Event Container 3945\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:64:\"https://avada.studio/wp-content/uploads/2023/03/event-hero-2.jpg\";s:4:\"true\";}}s:3:\"url\";s:42:\"https://avada.studio/fusion_element/event/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/03/event-ss-400x215.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:215;}s:4:\"tags\";a:1:{i:0;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2023/03/event-ss-800x431.jpg\";}}s:9:\"item-3950\";a:10:{s:2:\"ID\";i:3950;s:10:\"post_title\";s:26:\"Spring Sale Container 3950\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:48:\"https://avada.studio/fusion_element/spring-sale/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/03/spring-sale-container-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;}s:4:\"tags\";a:2:{i:0;s:4:\"hero\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/03/spring-sale-container-800x486.jpg\";}}s:9:\"item-3928\";a:10:{s:2:\"ID\";i:3928;s:10:\"post_title\";s:25:\"Politician Container 3928\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2023/02/politician-hero-2.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/politician/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/02/politician-ss-400x221.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:221;}s:4:\"tags\";a:1:{i:0;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/02/politician-ss-800x441.jpg\";}}s:9:\"item-3871\";a:10:{s:2:\"ID\";i:3871;s:10:\"post_title\";s:25:\"Life Coach Container 3871\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:66:\"https://avada.studio/wp-content/uploads/2023/02/hero-graphic-3.svg\";s:4:\"true\";s:58:\"https://avada.studio/wp-content/uploads/2023/02/info-2.jpg\";s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/life-coach/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/02/life-coach-ss-400x206.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:206;}s:4:\"tags\";a:1:{i:0;s:10:\"life-coach\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/02/life-coach-ss-800x411.jpg\";}}s:9:\"item-3837\";a:10:{s:2:\"ID\";i:3837;s:10:\"post_title\";s:23:\"Delivery Container 3837\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:3718;s:3:\"bb-\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/delivery/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2023/01/grocery-delivery-lottie-animation-400x462.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:462;}s:4:\"tags\";a:1:{i:0;s:4:\"food\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2023/01/grocery-delivery-lottie-animation-800x925.jpg\";}}s:9:\"item-3507\";a:10:{s:2:\"ID\";i:3507;s:10:\"post_title\";s:23:\"Projects Container 3507\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:55:\"https://avada.studio/wp-content/uploads/2022/10/499.jpg\";a:1:{s:8:\"image_id\";s:9:\"3512|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/10/503.jpg\";a:1:{s:8:\"image_id\";s:9:\"3518|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/10/502.jpg\";a:1:{s:8:\"image_id\";s:9:\"3509|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/10/501.jpg\";a:1:{s:8:\"image_id\";s:9:\"3510|full\";}}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/projects/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/10/projects-ss-400x162.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:162;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/10/projects-ss-800x323.jpg\";}}s:9:\"item-3685\";a:10:{s:2:\"ID\";i:3685;s:10:\"post_title\";s:24:\"Christmas Container 3685\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:75:\"https://avada.studio/wp-content/uploads/2022/11/christmas-decoration-bg.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/christmas/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/11/christmas-promo-hero-banner-400x137.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:137;}s:4:\"tags\";a:4:{i:0;s:9:\"christmas\";i:1;s:4:\"hero\";i:2;s:11:\"information\";i:3;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/11/christmas-promo-hero-banner-800x274.jpg\";}}s:9:\"item-3669\";a:10:{s:2:\"ID\";i:3669;s:10:\"post_title\";s:25:\"Technology Container 3669\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:62:\"https://avada.studio/wp-content/uploads/2022/11/background.jpg\";s:4:\"true\";s:60:\"https://avada.studio/wp-content/uploads/2022/11/computer.jpg\";a:1:{s:8:\"image_id\";s:9:\"3672|full\";}}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/technology/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/11/tech-ss-400x229.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:229;}s:4:\"tags\";a:1:{i:0;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/11/tech-ss-800x458.jpg\";}}s:9:\"item-3439\";a:10:{s:2:\"ID\";i:3439;s:10:\"post_title\";s:23:\"Industry Container 3439\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:66:\"https://avada.studio/wp-content/uploads/2022/10/industry-img-3.jpg\";a:1:{s:8:\"image_id\";s:9:\"3442|full\";}s:68:\"https://avada.studio/wp-content/uploads/2022/10/renewable-energy.jpg\";s:4:\"true\";s:72:\"https://avada.studio/wp-content/uploads/2022/10/mechanical-solutions.jpg\";s:4:\"true\";s:75:\"https://avada.studio/wp-content/uploads/2022/10/industrial-production-1.jpg\";s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/industry/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/10/industry-container-ss-400x232.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:232;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:3:\"cta\";i:2;s:8:\"industry\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/10/industry-container-ss-800x464.jpg\";}}s:9:\"item-3435\";a:10:{s:2:\"ID\";i:3435;s:10:\"post_title\";s:25:\"Statistics Container 3435\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:68:\"https://avada.studio/wp-content/uploads/2022/10/statistic-banner.jpg\";s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/statistics/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/10/statistic-ss-400x123.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:123;}s:4:\"tags\";a:1:{i:0;s:10:\"statistics\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/10/statistic-ss-800x247.jpg\";}}s:9:\"item-3328\";a:10:{s:2:\"ID\";i:3328;s:10:\"post_title\";s:28:\"Pricing Table Container 3328\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:52:\"https://avada.studio/fusion_element/pricing-table-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/09/pricing-table-ss3-400x306.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:306;}s:4:\"tags\";a:1:{i:0;s:13:\"pricing-table\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/09/pricing-table-ss3-800x612.jpg\";}}s:9:\"item-3320\";a:10:{s:2:\"ID\";i:3320;s:10:\"post_title\";s:23:\"Vacation Container 3320\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:65:\"https://avada.studio/wp-content/uploads/2022/09/vacation-logo.svg\";a:1:{s:8:\"image_id\";s:9:\"3326|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/09/496.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2022/09/495.jpg\";s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/vacation-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/09/vacation-2-400x338.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:338;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/09/vacation-2-800x676.jpg\";}}s:9:\"item-3052\";a:10:{s:2:\"ID\";i:3052;s:10:\"post_title\";s:23:\"Features Container 3052\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:975;s:16:\"icon-accountant-\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/features-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/07/features-list-with-icons-400x302.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:302;}s:4:\"tags\";a:2:{i:0;s:7:\"feature\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/07/features-list-with-icons-800x604.jpg\";}}s:9:\"item-2957\";a:10:{s:2:\"ID\";i:2957;s:10:\"post_title\";s:23:\"Vacation Container 2957\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/469.jpg\";s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/vacation/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2022/07/vacation-400x302.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:302;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2022/07/vacation-800x603.jpg\";}}s:9:\"item-2938\";a:10:{s:2:\"ID\";i:2938;s:10:\"post_title\";s:18:\"Tea Container 2938\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/463.png\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2022/07/456.jpg\";a:1:{s:8:\"image_id\";s:9:\"2945|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/07/457.jpg\";a:1:{s:8:\"image_id\";s:9:\"2944|full\";}}}s:3:\"url\";s:40:\"https://avada.studio/fusion_element/tea/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/07/tea-400x145.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:145;}s:4:\"tags\";a:1:{i:0;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/07/tea-800x290.jpg\";}}s:9:\"item-2904\";a:10:{s:2:\"ID\";i:2904;s:10:\"post_title\";s:23:\"Products Container 2904\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:57:\"https://avada.studio/wp-content/uploads/2022/07/cream.jpg\";a:1:{s:8:\"image_id\";s:9:\"2912|full\";}s:59:\"https://avada.studio/wp-content/uploads/2022/07/serum-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"2914|full\";}}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/products-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/products-ss-2-400x127.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:127;}s:4:\"tags\";a:2:{i:0;s:11:\"information\";i:1;s:8:\"products\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/07/products-ss-2-800x255.jpg\";}}s:9:\"item-2896\";a:10:{s:2:\"ID\";i:2896;s:10:\"post_title\";s:23:\"Features Container 2896\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:4:{s:69:\"https://avada.studio/wp-content/uploads/2022/07/feats-marketing-1.png\";a:1:{s:8:\"image_id\";s:9:\"2897|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/07/feats-marketing-2.png\";a:1:{s:8:\"image_id\";s:9:\"2898|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/07/feats-marketing-3.png\";a:1:{s:8:\"image_id\";s:9:\"2899|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/07/feats-marketing-4.png\";a:1:{s:8:\"image_id\";s:9:\"2900|full\";}}s:5:\"icons\";a:1:{i:975;s:16:\"icon-accountant-\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/features/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/07/features-marketing-cards-400x138.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:138;}s:4:\"tags\";a:1:{i:0;s:7:\"feature\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/07/features-marketing-cards-800x276.jpg\";}}s:9:\"item-2744\";a:10:{s:2:\"ID\";i:2744;s:10:\"post_title\";s:25:\"Conference Container 2744\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:10:\"post_cards\";a:1:{i:2747;s:4:\"true\";}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/conference/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/06/conference-400x165.png\";s:5:\"width\";i:400;s:6:\"height\";i:165;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:6:\"events\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/06/conference-800x330.png\";}}s:9:\"item-2735\";a:10:{s:2:\"ID\";i:2735;s:10:\"post_title\";s:22:\"Reviews Container 2735\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:53:\"https://avada.studio/wp-content/uploads/2022/06/9.jpg\";a:1:{s:8:\"image_id\";s:9:\"2737|full\";}s:53:\"https://avada.studio/wp-content/uploads/2022/06/8.jpg\";a:1:{s:8:\"image_id\";s:9:\"2736|full\";}s:54:\"https://avada.studio/wp-content/uploads/2022/06/10.jpg\";a:1:{s:8:\"image_id\";s:9:\"2738|full\";}s:54:\"https://avada.studio/wp-content/uploads/2022/06/11.jpg\";a:1:{s:8:\"image_id\";s:9:\"2739|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/reviews/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/06/reviews-ss-2-400x252.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:252;}s:4:\"tags\";a:1:{i:0;s:6:\"review\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/06/reviews-ss-2-800x504.jpg\";}}s:9:\"item-2730\";a:10:{s:2:\"ID\";i:2730;s:10:\"post_title\";s:22:\"Startup Container 2730\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:78:\"https://avada.studio/wp-content/uploads/2022/06/website-builder-chalkboard.png\";a:1:{s:8:\"image_id\";s:9:\"2733|full\";}}s:5:\"icons\";a:1:{i:975;s:16:\"icon-accountant-\";}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/startup/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/06/startup-features-cards-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/06/startup-features-cards-800x684.jpg\";}}s:9:\"item-2716\";a:10:{s:2:\"ID\";i:2716;s:10:\"post_title\";s:36:\"Business Consultation Container 2716\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:70:\"https://avada.studio/wp-content/uploads/2022/06/business-main-bg-0.jpg\";s:4:\"true\";s:71:\"https://avada.studio/wp-content/uploads/2022/06/corporate-meeting-8.jpg\";a:1:{s:8:\"image_id\";s:9:\"2726|full\";}}}s:3:\"url\";s:58:\"https://avada.studio/fusion_element/business-consultation/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/06/business-consultation-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/06/business-consultation-800x449.jpg\";}}s:9:\"item-2652\";a:10:{s:2:\"ID\";i:2652;s:10:\"post_title\";s:37:\"Design Agency Services Container 2652\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:5:{s:59:\"https://avada.studio/wp-content/uploads/2022/05/main-bg.png\";s:4:\"true\";s:68:\"https://avada.studio/wp-content/uploads/2022/05/video-background.jpg\";s:4:\"true\";s:65:\"https://avada.studio/wp-content/uploads/2022/05/web-solutions.jpg\";s:4:\"true\";s:68:\"https://avada.studio/wp-content/uploads/2022/05/mobile-solutions.jpg\";s:4:\"true\";s:68:\"https://avada.studio/wp-content/uploads/2022/05/custom-solutions.jpg\";s:4:\"true\";}}s:3:\"url\";s:59:\"https://avada.studio/fusion_element/design-agency-services/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2022/05/design-agency-service-container-400x209.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:209;}s:4:\"tags\";a:2:{i:0;s:7:\"digital\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:91:\"https://avada.studio/wp-content/uploads/2022/05/design-agency-service-container-800x419.jpg\";}}s:9:\"item-2648\";a:10:{s:2:\"ID\";i:2648;s:10:\"post_title\";s:32:\"Digital Marketing Container 2648\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2022/05/container-bg-2.svg\";s:4:\"true\";}s:5:\"icons\";a:1:{i:976;s:8:\"digital-\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_element/digital-marketing/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/05/digital-marketing-container-400x145.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:145;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/05/digital-marketing-container-800x290.jpg\";}}s:9:\"item-2646\";a:10:{s:2:\"ID\";i:2646;s:10:\"post_title\";s:28:\"Pricing Table Container 2646\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:52:\"https://avada.studio/fusion_element/pricing-table-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/05/pricing-table-clean-4col-400x356.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:356;}s:4:\"tags\";a:1:{i:0;s:13:\"pricing-table\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/05/pricing-table-clean-4col-800x712.jpg\";}}s:9:\"item-2421\";a:10:{s:2:\"ID\";i:2421;s:10:\"post_title\";s:28:\"Pricing Table Container 2421\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:50:\"https://avada.studio/fusion_element/pricing-table/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/03/price-table-400x249.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:249;}s:4:\"tags\";a:1:{i:0;s:13:\"pricing-table\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/03/price-table.jpg\";}}s:9:\"item-2131\";a:10:{s:2:\"ID\";i:2131;s:10:\"post_title\";s:24:\"Valentine Container 2131\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/01/375.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/valentines-day/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/01/valentine-01-400x182.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:182;}s:4:\"tags\";a:3:{i:0;s:6:\"banner\";i:1;s:3:\"cta\";i:2;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/01/valentine-01-800x365.jpg\";}}s:9:\"item-2101\";a:10:{s:2:\"ID\";i:2101;s:10:\"post_title\";s:27:\"Architecture Container 2101\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:10:\"post_cards\";a:1:{i:2100;s:4:\"true\";}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/architecture-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/12/container-15-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/12/container-15-800x519.jpg\";}}s:9:\"item-1916\";a:10:{s:2:\"ID\";i:1916;s:10:\"post_title\";s:31:\"Cyber Monday CTA Container 1916\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:10:{s:80:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-bg-promo-scaled.jpg\";b:1;s:84:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-fast-e1636413642752.png\";a:1:{s:8:\"image_id\";s:9:\"1922|full\";}s:91:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-top-graphic-e1636413461420.png\";a:1:{s:8:\"image_id\";s:9:\"1924|full\";}s:84:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-cart-e1636413348174.png\";a:1:{s:8:\"image_id\";s:9:\"1921|full\";}s:78:\"https://avada.studio/wp-content/uploads/2021/11/cm-top-left-e1636412249351.png\";a:1:{s:8:\"image_id\";s:9:\"1927|full\";}s:79:\"https://avada.studio/wp-content/uploads/2021/11/cm-top-right-e1636412303752.png\";a:1:{s:8:\"image_id\";s:9:\"1928|full\";}s:81:\"https://avada.studio/wp-content/uploads/2021/11/cm-bottom-left-e1636413502303.png\";a:1:{s:8:\"image_id\";s:9:\"1925|full\";}s:82:\"https://avada.studio/wp-content/uploads/2021/11/cm-bottom-right-e1636413593192.png\";a:1:{s:8:\"image_id\";s:9:\"1926|full\";}s:84:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-star-e1636413430481.png\";a:1:{s:8:\"image_id\";s:9:\"1923|full\";}s:91:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-blue-circle-e1636413269851.png\";a:1:{s:8:\"image_id\";s:9:\"1920|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/cyber-monday-cta/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-promo-cta.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:259;}s:4:\"tags\";a:2:{i:0;s:10:\"cyber-week\";i:1;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/11/cyber-monday-promo-cta.jpg\";}}s:9:\"item-1915\";a:10:{s:2:\"ID\";i:1915;s:10:\"post_title\";s:31:\"Black Friday CTA Container 1915\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:73:\"https://avada.studio/wp-content/uploads/2021/11/black-friday-promo-bg.png\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/black-friday-cta/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/11/black-friday-promo-cta-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;}s:4:\"tags\";a:2:{i:0;s:12:\"black-friday\";i:1;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/11/black-friday-promo-cta-800x447.jpg\";}}s:9:\"item-1786\";a:10:{s:2:\"ID\";i:1786;s:10:\"post_title\";s:24:\"Halloween Container 1786\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:76:\"https://avada.studio/wp-content/uploads/2021/10/halloween-composition-bg.png\";b:1;s:65:\"https://avada.studio/wp-content/uploads/2021/10/separator-bat.png\";a:1:{s:8:\"image_id\";s:9:\"1816|full\";}s:73:\"https://avada.studio/wp-content/uploads/2021/10/halloween-composition.png\";a:1:{s:8:\"image_id\";s:9:\"1815|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/halloween/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/10/halloween-sale-hero-400x202.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:202;}s:4:\"tags\";a:3:{i:0;s:9:\"halloween\";i:1;s:4:\"hero\";i:2;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/10/halloween-sale-hero-800x403.jpg\";}}s:9:\"item-1775\";a:10:{s:2:\"ID\";i:1775;s:10:\"post_title\";s:19:\"Cars Container 1775\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:5:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/313.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/10/317.jpg\";a:1:{s:8:\"image_id\";s:9:\"1780|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/315.jpg\";a:1:{s:8:\"image_id\";s:9:\"1778|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/320.jpg\";a:1:{s:8:\"image_id\";s:9:\"1784|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/10/319.jpg\";a:1:{s:8:\"image_id\";s:9:\"1783|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/cars-container/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2021/10/cars-01-400x202.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:202;}s:4:\"tags\";a:3:{i:0;s:4:\"cars\";i:1;s:11:\"full-height\";i:2;s:10:\"full-width\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2021/10/cars-01-800x404.jpg\";}}s:9:\"item-1753\";a:10:{s:2:\"ID\";i:1753;s:10:\"post_title\";s:23:\"Industry Container 1753\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/10/302.jpg\";a:1:{s:8:\"image_id\";s:9:\"1756|full\";}}}s:3:\"url\";s:55:\"https://avada.studio/fusion_element/industry-container/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/10/industry-01-400x206.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:206;}s:4:\"tags\";a:3:{i:0;s:3:\"cta\";i:1;s:11:\"information\";i:2;s:4:\"text\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/10/industry-01-800x412.jpg\";}}s:9:\"item-1474\";a:10:{s:2:\"ID\";i:1474;s:10:\"post_title\";s:23:\"Services Container 1474\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/242.jpg\";s:4:\"true\";}s:5:\"icons\";a:1:{i:976;s:8:\"digital-\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/services/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-30-400x230.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:230;}s:4:\"tags\";a:2:{i:0;s:10:\"icon-boxes\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-30-800x460.jpg\";}}s:9:\"item-1469\";a:10:{s:2:\"ID\";i:1469;s:10:\"post_title\";s:27:\"Architecture Container 1469\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/239.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/09/237.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/09/238.jpg\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/architecture/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-29-400x143.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:143;}s:4:\"tags\";a:3:{i:0;s:10:\"full-width\";i:1;s:10:\"info-boxes\";i:2;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-29-800x286.jpg\";}}s:8:\"item-630\";a:10:{s:2:\"ID\";i:630;s:10:\"post_title\";s:20:\"Design Container 630\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/173.jpg\";a:1:{s:8:\"image_id\";s:9:\"1285|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/174.jpg\";a:1:{s:8:\"image_id\";s:9:\"1286|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/175.jpg\";a:1:{s:8:\"image_id\";s:9:\"1287|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/design/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/container-01-03-400x401.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:401;}s:4:\"tags\";a:2:{i:0;s:4:\"grid\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/container-01-03-800x802.jpg\";}}s:8:\"item-618\";a:10:{s:2:\"ID\";i:618;s:10:\"post_title\";s:24:\"Motorcycle Container 618\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/178.jpg\";a:1:{s:8:\"image_id\";s:9:\"1315|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/motorcycle/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-02-400x278.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:278;}s:4:\"tags\";a:2:{i:0;s:7:\"feature\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-02-800x557.jpg\";}}s:8:\"item-615\";a:10:{s:2:\"ID\";i:615;s:10:\"post_title\";s:23:\"Coworking Container 615\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/179.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/09/180.png\";s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/coworking/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-03-400x237.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:237;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-03-800x473.jpg\";}}s:8:\"item-611\";a:10:{s:2:\"ID\";i:611;s:10:\"post_title\";s:22:\"Interior Container 611\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:5:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/181.jpg\";b:1;s:59:\"https://avada.studio/wp-content/uploads/2021/08/logo-11.png\";a:1:{s:8:\"image_id\";s:8:\"383|full\";}s:59:\"https://avada.studio/wp-content/uploads/2021/08/logo-10.png\";a:1:{s:8:\"image_id\";s:8:\"382|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-8.png\";a:1:{s:8:\"image_id\";s:8:\"380|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-7.png\";a:1:{s:8:\"image_id\";s:8:\"379|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/interior/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-04-400x246.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:246;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/container-04-800x491.jpg\";}}s:8:\"item-421\";a:10:{s:2:\"ID\";i:421;s:10:\"post_title\";s:20:\"Travel Container 421\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/184.jpg\";a:1:{s:8:\"image_id\";s:9:\"1335|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/183.jpg\";s:4:\"true\";}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/travel/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-05-02-400x278.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:278;}s:4:\"tags\";a:2:{i:0;s:10:\"icon-boxes\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-05-02-800x557.jpg\";}}s:8:\"item-420\";a:10:{s:2:\"ID\";i:420;s:10:\"post_title\";s:20:\"Beauty Container 420\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/187.jpg\";a:1:{s:8:\"image_id\";s:9:\"1341|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/188.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/08/189.jpg\";a:1:{s:8:\"image_id\";s:9:\"1343|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/185.jpg\";a:1:{s:8:\"image_id\";s:9:\"1338|full\";}}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/beauty/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-06-400x505.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:505;}s:4:\"tags\";a:2:{i:0;s:4:\"grid\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2021/08/container-06-800x1009.jpg\";}}s:8:\"item-413\";a:10:{s:2:\"ID\";i:413;s:10:\"post_title\";s:21:\"Fitness Container 413\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:3:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/191.jpg\";a:1:{s:8:\"image_id\";s:9:\"1346|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/193.jpg\";a:1:{s:8:\"image_id\";s:9:\"1356|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/192.jpg\";a:1:{s:8:\"image_id\";s:9:\"1355|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/fitness/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-07-400x191.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:191;}s:4:\"tags\";a:2:{i:0;s:10:\"info-boxes\";i:1;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-07-800x383.jpg\";}}s:8:\"item-409\";a:10:{s:2:\"ID\";i:409;s:10:\"post_title\";s:20:\"Surfer Container 409\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/195.jpg\";b:1;s:55:\"https://avada.studio/wp-content/uploads/2021/08/194.jpg\";a:1:{s:8:\"image_id\";s:9:\"1360|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/surfer/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-08-400x253.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:253;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-08-800x506.jpg\";}}s:8:\"item-407\";a:10:{s:2:\"ID\";i:407;s:10:\"post_title\";s:26:\"Construction Container 407\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/198.jpg\";a:1:{s:8:\"image_id\";s:9:\"1385|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/construction/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-09-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;}s:4:\"tags\";a:1:{i:0;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-09-800x449.jpg\";}}s:8:\"item-404\";a:10:{s:2:\"ID\";i:404;s:10:\"post_title\";s:20:\"Banner Container 404\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:65:\"https://avada.studio/wp-content/uploads/2021/08/bar-bg-scaled.jpg\";s:4:\"true\";}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/banner/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/08/dark-container-06-ss-400x26.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:26;}s:4:\"tags\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/08/dark-container-06-ss-800x52.jpg\";}}s:8:\"item-400\";a:10:{s:2:\"ID\";i:400;s:10:\"post_title\";s:21:\"Podcast Container 400\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/200.jpg\";a:1:{s:8:\"image_id\";s:9:\"1388|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-11/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:98:\"https://avada.studio/wp-content/uploads/2021/08/call-to-action-container-white-spacing-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:98:\"https://avada.studio/wp-content/uploads/2021/08/call-to-action-container-white-spacing-800x391.jpg\";}}s:8:\"item-391\";a:10:{s:2:\"ID\";i:391;s:10:\"post_title\";s:25:\"Testimonial Container 391\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:60:\"https://avada.studio/wp-content/uploads/2021/08/avatar-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"1390|full\";}}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/testimonial/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-12-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;}s:4:\"tags\";a:1:{i:0;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-12-800x471.jpg\";}}s:8:\"item-387\";a:10:{s:2:\"ID\";i:387;s:10:\"post_title\";s:25:\"Information Container 387\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:978;s:9:\"icon-mkb-\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-13/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-13-400x128.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:128;}s:4:\"tags\";a:2:{i:0;s:11:\"information\";i:1;s:4:\"text\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-13-800x255.jpg\";}}s:8:\"item-376\";a:10:{s:2:\"ID\";i:376;s:10:\"post_title\";s:20:\"Agency Container 376\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:5:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/202.jpg\";b:1;s:59:\"https://avada.studio/wp-content/uploads/2021/08/logo-11.png\";a:1:{s:8:\"image_id\";s:8:\"383|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-8.png\";a:1:{s:8:\"image_id\";s:8:\"380|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-9.png\";a:1:{s:8:\"image_id\";s:8:\"381|full\";}s:59:\"https://avada.studio/wp-content/uploads/2021/08/logo-10.png\";a:1:{s:8:\"image_id\";s:8:\"382|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/agency/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-14-400x197.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:197;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-14-800x394.jpg\";}}s:8:\"item-373\";a:10:{s:2:\"ID\";i:373;s:10:\"post_title\";s:26:\"Construction Container 373\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:5:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/203.jpg\";b:1;s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-9.png\";a:1:{s:8:\"image_id\";s:8:\"381|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-8.png\";a:1:{s:8:\"image_id\";s:8:\"380|full\";}s:59:\"https://avada.studio/wp-content/uploads/2021/08/logo-10.png\";a:1:{s:8:\"image_id\";s:8:\"382|full\";}s:59:\"https://avada.studio/wp-content/uploads/2021/08/logo-11.png\";a:1:{s:8:\"image_id\";s:8:\"383|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-15/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-14-02-400x179.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:179;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-14-02-800x357.jpg\";}}s:8:\"item-371\";a:10:{s:2:\"ID\";i:371;s:10:\"post_title\";s:21:\"Minimal Container 371\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-16/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-16-400x141.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:141;}s:4:\"tags\";a:2:{i:0;s:11:\"information\";i:1;s:4:\"text\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-16-800x282.jpg\";}}s:8:\"item-369\";a:10:{s:2:\"ID\";i:369;s:10:\"post_title\";s:24:\"Restaurant Container 369\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/207.jpg\";a:1:{s:8:\"image_id\";s:9:\"1402|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/restaurant/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-17-02-400x363.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:363;}s:4:\"tags\";a:1:{i:0;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-17-02-800x726.jpg\";}}s:8:\"item-364\";a:10:{s:2:\"ID\";i:364;s:10:\"post_title\";s:23:\"Statistic Container 364\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-18/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/08/container-18-02-400x74.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:74;}s:4:\"tags\";a:2:{i:0;s:10:\"statistics\";i:1;s:4:\"text\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-18-02-800x147.jpg\";}}s:8:\"item-352\";a:10:{s:2:\"ID\";i:352;s:10:\"post_title\";s:18:\"Yoga Container 352\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/209.jpg\";a:1:{s:8:\"image_id\";s:9:\"1406|full\";}}s:5:\"icons\";a:1:{i:982;s:8:\"fitness-\";}}s:3:\"url\";s:57:\"https://avada.studio/fusion_element/organic-container-02/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-19-400x222.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:222;}s:4:\"tags\";a:1:{i:0;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-19-800x443.jpg\";}}s:8:\"item-344\";a:10:{s:2:\"ID\";i:344;s:10:\"post_title\";s:26:\"Testimonials Container 344\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_element/testimonials/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/08/elegant-container-05-ss-400x154.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:154;}s:4:\"tags\";a:2:{i:0;s:12:\"testimonials\";i:1;s:4:\"text\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/08/elegant-container-05-ss-800x309.jpg\";}}s:8:\"item-341\";a:10:{s:2:\"ID\";i:341;s:10:\"post_title\";s:26:\"Architecture Container 341\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/212.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-21/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-21-02-400x191.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:191;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:10:\"full-width\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-21-02-800x382.jpg\";}}s:8:\"item-336\";a:10:{s:2:\"ID\";i:336;s:10:\"post_title\";s:21:\"Wedding Container 336\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/215.jpg\";a:1:{s:8:\"image_id\";s:9:\"1419|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/216.jpg\";a:1:{s:8:\"image_id\";s:9:\"1420|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-22/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-22-400x315.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:315;}s:4:\"tags\";a:1:{i:0;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-22-800x631.jpg\";}}s:8:\"item-324\";a:10:{s:2:\"ID\";i:324;s:10:\"post_title\";s:20:\"Banner Container 324\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-23/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2021/08/container-23-400x93.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:93;}s:4:\"tags\";a:1:{i:0;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-23-800x185.jpg\";}}s:8:\"item-320\";a:10:{s:2:\"ID\";i:320;s:10:\"post_title\";s:18:\"Tech Container 320\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/217.jpg\";a:1:{s:8:\"image_id\";s:9:\"1423|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/container-24/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-24-400x229.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:229;}s:4:\"tags\";a:2:{i:0;s:11:\"information\";i:1;s:4:\"text\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-24-800x458.jpg\";}}s:8:\"item-312\";a:10:{s:2:\"ID\";i:312;s:10:\"post_title\";s:24:\"Car Rental Container 312\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/218.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:1:{i:935;b:1;}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/car-rental/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-25-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;}s:4:\"tags\";a:2:{i:0;s:4:\"form\";i:1;s:10:\"newsletter\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/08/container-25-800x395.jpg\";}}s:8:\"item-306\";a:10:{s:2:\"ID\";i:306;s:10:\"post_title\";s:26:\"Illustration Container 306\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/221.jpg\";a:1:{s:8:\"image_id\";s:9:\"1433|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/illustration/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/08/container-26-2-400x219.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:219;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2021/08/container-26-2-800x439.jpg\";}}s:8:\"item-286\";a:10:{s:2:\"ID\";i:286;s:10:\"post_title\";s:20:\"Nature Container 286\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/236.jpg\";s:4:\"true\";}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/nature/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-28-02-400x150.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:150;}s:4:\"tags\";a:1:{i:0;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-28-02-800x299.jpg\";}}s:8:\"item-262\";a:10:{s:2:\"ID\";i:262;s:10:\"post_title\";s:21:\"Organic Container 262\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:55:\"https://avada.studio/wp-content/uploads/2021/08/222.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/08/228.jpg\";a:1:{s:8:\"image_id\";s:9:\"1445|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/230.jpg\";a:1:{s:8:\"image_id\";s:9:\"1447|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/08/229.jpg\";a:1:{s:8:\"image_id\";s:9:\"1446|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/organic/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-27-03-400x203.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:203;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:4:\"hero\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/08/container-27-03-800x407.jpg\";}}}s:7:\"columns\";a:52:{s:9:\"item-5907\";a:10:{s:2:\"ID\";i:5907;s:10:\"post_title\";s:21:\"Text Path Column 5907\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:3718;s:3:\"bb-\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/text-path-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2025/09/textpath-3-ss1.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:350;}s:4:\"tags\";a:1:{i:0;s:9:\"text-path\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2025/09/textpath-3-ss1.jpg\";}}s:9:\"item-5902\";a:10:{s:2:\"ID\";i:5902;s:10:\"post_title\";s:21:\"Text Path Column 5902\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:70:\"https://avada.studio/wp-content/uploads/2024/09/company-history-02.jpg\";a:1:{s:8:\"image_id\";s:9:\"5475|full\";}}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/text-path-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/09/textpath-col-ss1-400x405.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:405;}s:4:\"tags\";a:2:{i:0;s:8:\"business\";i:1;s:9:\"text-path\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2025/09/textpath-col-ss1.jpg\";}}s:9:\"item-5701\";a:10:{s:2:\"ID\";i:5701;s:10:\"post_title\";s:20:\"Services Column 5701\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:69:\"https://avada.studio/wp-content/uploads/2025/02/brand-strategy-01.jpg\";a:1:{s:8:\"image_id\";s:9:\"5702|full\";}}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/services-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/02/services-col-ss1-400x143.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:143;}s:4:\"tags\";a:3:{i:0;s:4:\"card\";i:1;s:3:\"cta\";i:2;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2025/02/services-col-ss1-800x286.jpg\";}}s:9:\"item-5680\";a:10:{s:2:\"ID\";i:5680;s:10:\"post_title\";s:23:\"Team Member Column 5680\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2025/02/martina-neoms-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"5681|full\";}}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/team-member-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2025/02/team-member-ss3-400x555.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:555;}s:4:\"tags\";a:1:{i:0;s:4:\"team\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2025/02/team-member-ss3.jpg\";}}s:9:\"item-5677\";a:10:{s:2:\"ID\";i:5677;s:10:\"post_title\";s:19:\"Charity Column 5677\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2025/02/charity-image-1.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5678|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/charity/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2025/02/charity-col-ss1-400x587.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:587;}s:4:\"tags\";a:3:{i:0;s:4:\"card\";i:1;s:7:\"charity\";i:2;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2025/02/charity-col-ss1.jpg\";}}s:9:\"item-5548\";a:10:{s:2:\"ID\";i:5548;s:10:\"post_title\";s:24:\"Testimonials Column 5548\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:58:\"https://avada.studio/wp-content/uploads/2023/11/user-5.jpg\";a:1:{s:8:\"image_id\";s:9:\"4750|full\";}}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/testimonials-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2024/10/testimonials-ss1-400x281.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:281;}s:4:\"tags\";a:1:{i:0;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2024/10/testimonials-ss1-800x561.jpg\";}}s:9:\"item-5528\";a:10:{s:2:\"ID\";i:5528;s:10:\"post_title\";s:17:\"Stats Column 5528\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:70:\"https://avada.studio/wp-content/uploads/2024/10/stats-col-bg-1-min.png\";a:1:{s:19:\"background_image_id\";s:9:\"5529|full\";}}}s:3:\"url\";s:42:\"https://avada.studio/fusion_element/stats/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2024/10/stats-column-ss1-400x552.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:552;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:3:\"cta\";i:2;s:10:\"statistics\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2024/10/stats-column-ss1.jpg\";}}s:9:\"item-5479\";a:10:{s:2:\"ID\";i:5479;s:10:\"post_title\";s:23:\"Team Member Column 5479\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:66:\"https://avada.studio/wp-content/uploads/2024/09/team-member-01.jpg\";a:1:{s:19:\"background_image_id\";s:9:\"5482|full\";}}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/team-member/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2024/09/team-member-ss1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:11:\"information\";i:2;s:4:\"team\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2024/09/team-member-ss1.jpg\";}}s:9:\"item-5393\";a:10:{s:2:\"ID\";i:5393;s:10:\"post_title\";s:33:\"Halloween Party Promo Column 5393\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:64:\"https://avada.studio/wp-content/uploads/2024/09/sunrays-bg-4.png\";a:1:{s:19:\"background_image_id\";s:9:\"5404|full\";}s:68:\"https://avada.studio/wp-content/uploads/2024/09/halloween-bats-1.png\";a:1:{s:8:\"image_id\";s:9:\"5396|full\";}s:73:\"https://avada.studio/wp-content/uploads/2024/09/halloween-party-5-min.png\";a:1:{s:8:\"image_id\";s:9:\"5406|full\";}s:69:\"https://avada.studio/wp-content/uploads/2024/09/bones-separator-1.png\";a:1:{s:8:\"image_id\";s:9:\"5400|full\";}}}s:3:\"url\";s:58:\"https://avada.studio/fusion_element/halloween-party-promo/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2024/09/halloween-party-ss2-400x623.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:623;}s:4:\"tags\";a:2:{i:0;s:9:\"halloween\";i:1;s:5:\"party\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2024/09/halloween-party-ss2.jpg\";}}s:9:\"item-4643\";a:10:{s:2:\"ID\";i:4643;s:10:\"post_title\";s:28:\"Cyber Week Sales Column 4643\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:73:\"https://avada.studio/wp-content/uploads/2023/10/cyberweek-maain-bg-10.png\";s:4:\"true\";s:71:\"https://avada.studio/wp-content/uploads/2023/10/cyberweek-graphic-4.png\";a:1:{s:8:\"image_id\";s:9:\"4659|full\";}}}s:3:\"url\";s:53:\"https://avada.studio/fusion_element/cyber-week-sales/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2023/10/cyber-week-sales-col-ss4-400x526.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:526;}s:4:\"tags\";a:2:{i:0;s:10:\"cyber-week\";i:1;s:4:\"sale\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/10/cyber-week-sales-col-ss4.jpg\";}}s:9:\"item-4442\";a:10:{s:2:\"ID\";i:4442;s:10:\"post_title\";s:34:\"Halloween Party Invite Column 4442\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:74:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-bg-col.png\";b:1;s:81:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-haunted-house.png\";a:1:{s:8:\"image_id\";s:9:\"4445|full\";}s:80:\"https://avada.studio/wp-content/uploads/2023/09/halloween-party-base-graphic.png\";a:1:{s:8:\"image_id\";s:9:\"4443|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:59:\"https://avada.studio/fusion_element/halloween-party-invite/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2023/09/halloween-fright-fiesta-night-400x583.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:583;}s:4:\"tags\";a:1:{i:0;s:9:\"halloween\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/09/halloween-fright-fiesta-night.jpg\";}}s:9:\"item-4399\";a:10:{s:2:\"ID\";i:4399;s:10:\"post_title\";s:18:\"Recipe Column 4399\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:67:\"https://avada.studio/wp-content/uploads/2023/08/recipe-column-1.jpg\";a:1:{s:8:\"image_id\";s:9:\"4400|full\";}}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/recipe/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/08/recipe-column-ss-1-400x293.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:293;}s:4:\"tags\";a:3:{i:0;s:4:\"card\";i:1;s:4:\"food\";i:2;s:6:\"recipe\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2023/08/recipe-column-ss-1-800x586.jpg\";}}s:9:\"item-3895\";a:10:{s:2:\"ID\";i:3895;s:10:\"post_title\";s:23:\"Testimonial Column 3895\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:61:\"https://avada.studio/wp-content/uploads/2023/02/info-bg-3.svg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:50:\"https://avada.studio/fusion_element/testimonial-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2023/02/testimonials-ss-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;}s:4:\"tags\";a:1:{i:0;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2023/02/testimonials-ss-800x481.jpg\";}}s:9:\"item-3878\";a:10:{s:2:\"ID\";i:3878;s:10:\"post_title\";s:21:\"Valentine Column 3878\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:3:{s:60:\"https://avada.studio/wp-content/uploads/2023/02/hearts-5.png\";b:1;s:60:\"https://avada.studio/wp-content/uploads/2023/02/hearts-1.png\";a:1:{s:8:\"image_id\";s:9:\"3880|full\";}s:60:\"https://avada.studio/wp-content/uploads/2023/02/hearts-2.png\";a:1:{s:8:\"image_id\";s:9:\"3881|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/valentine/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2023/02/valentine-column-ss-1-400x482.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:482;}s:4:\"tags\";a:2:{i:0;s:4:\"sale\";i:1;s:14:\"valentines-day\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2023/02/valentine-column-ss-1.jpg\";}}s:9:\"item-3700\";a:10:{s:2:\"ID\";i:3700;s:10:\"post_title\";s:24:\"CTA Business Column 3700\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:70:\"https://avada.studio/wp-content/uploads/2022/11/cta-image-hover-bg.jpg\";s:4:\"true\";}s:5:\"icons\";a:1:{i:3301;s:22:\"icon-ecommerce-square-\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/cta-business/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/12/business-cta-ss-01-400x454.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:454;}s:4:\"tags\";a:3:{i:0;s:8:\"business\";i:1;s:3:\"cta\";i:2;s:10:\"info-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/12/business-cta-ss-01.jpg\";}}s:9:\"item-3704\";a:10:{s:2:\"ID\";i:3704;s:10:\"post_title\";s:18:\"Travel Column 3704\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:77:\"https://avada.studio/wp-content/uploads/2022/11/travel-remote-work-column.png\";s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/travel-4/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/11/travel-remote-work-jobs-400x273.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:273;}s:4:\"tags\";a:1:{i:0;s:10:\"info-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/11/travel-remote-work-jobs-800x545.jpg\";}}s:9:\"item-3705\";a:10:{s:2:\"ID\";i:3705;s:10:\"post_title\";s:26:\"Services Stats Column 3705\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:69:\"https://avada.studio/wp-content/uploads/2022/11/digital-marketing.jpg\";a:1:{s:8:\"image_id\";s:9:\"3707|full\";}s:68:\"https://avada.studio/wp-content/uploads/2022/11/reports-analysis.jpg\";a:1:{s:8:\"image_id\";s:9:\"3709|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:975;s:16:\"icon-accountant-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/services-stats/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/11/service-stats-ss-1-400x454.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:454;}s:4:\"tags\";a:2:{i:0;s:8:\"services\";i:1;s:10:\"statistics\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/11/service-stats-ss-1.jpg\";}}s:9:\"item-3453\";a:10:{s:2:\"ID\";i:3453;s:10:\"post_title\";s:28:\"Corporation Info Column 3453\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:53:\"https://avada.studio/fusion_element/corporation-info/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/10/informations-ss-400x334.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:334;}s:4:\"tags\";a:1:{i:0;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/10/informations-ss.jpg\";}}s:9:\"item-3431\";a:10:{s:2:\"ID\";i:3431;s:10:\"post_title\";s:29:\"Business Info Box Column 3431\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:71:\"https://avada.studio/wp-content/uploads/2022/10/lady-at-desk-orange.jpg\";s:4:\"true\";}s:5:\"icons\";a:1:{i:980;s:8:\"finance-\";}}s:3:\"url\";s:54:\"https://avada.studio/fusion_element/business-info-box/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2022/10/business-info-box-ss-400x545.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:545;}s:4:\"tags\";a:4:{i:0;s:8:\"business\";i:1;s:10:\"icon-boxes\";i:2;s:10:\"info-boxes\";i:3;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2022/10/business-info-box-ss.jpg\";}}s:9:\"item-3350\";a:10:{s:2:\"ID\";i:3350;s:10:\"post_title\";s:19:\"Service Column 3350\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/09/498.jpg\";a:1:{s:8:\"image_id\";s:9:\"3353|full\";}}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/service/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/09/service-400x458.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:458;}s:4:\"tags\";a:1:{i:0;s:6:\"simple\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:59:\"https://avada.studio/wp-content/uploads/2022/09/service.jpg\";}}s:9:\"item-3344\";a:10:{s:2:\"ID\";i:3344;s:10:\"post_title\";s:18:\"Crypto Column 3344\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:74:\"https://avada.studio/wp-content/uploads/2022/09/buy-sell-crypto-assets.png\";s:4:\"true\";}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/crypto/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2022/09/crypto-buy-sell-digital-assets-400x448.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:448;}s:4:\"tags\";a:2:{i:0;s:10:\"info-boxes\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/09/crypto-buy-sell-digital-assets.jpg\";}}s:9:\"item-3275\";a:10:{s:2:\"ID\";i:3275;s:10:\"post_title\";s:15:\"CTA Column 3275\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:2:{s:69:\"https://avada.studio/wp-content/uploads/2022/09/column-cta-image1.jpg\";a:1:{s:8:\"image_id\";s:9:\"3277|full\";}s:69:\"https://avada.studio/wp-content/uploads/2022/06/topology-1024x725.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:2:{i:978;s:9:\"icon-mkb-\";i:982;s:8:\"fitness-\";}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:42:\"https://avada.studio/fusion_element/cta-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/09/cta-column-ss1-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;}s:4:\"tags\";a:1:{i:0;s:12:\"image-reveal\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/09/cta-column-ss1.jpg\";}}s:9:\"item-3097\";a:10:{s:2:\"ID\";i:3097;s:10:\"post_title\";s:23:\"Consultancy Column 3097\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:978;s:9:\"icon-mkb-\";}}s:3:\"url\";s:48:\"https://avada.studio/fusion_element/consultancy/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2022/08/consultancy-button-animated-400x497.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:497;}s:4:\"tags\";a:1:{i:0;s:10:\"info-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2022/08/consultancy-button-animated.jpg\";}}s:9:\"item-3045\";a:10:{s:2:\"ID\";i:3045;s:10:\"post_title\";s:24:\"Tour Booking Column 3045\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:64:\"https://avada.studio/wp-content/uploads/2022/07/tour-image-2.jpg\";a:1:{s:8:\"image_id\";s:9:\"3047|full\";}}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/tour-booking/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/07/travel-column-ss-400x480.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:480;}s:4:\"tags\";a:2:{i:0;s:10:\"info-boxes\";i:1;s:6:\"travel\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/07/travel-column-ss-800x960.jpg\";}}s:9:\"item-3041\";a:10:{s:2:\"ID\";i:3041;s:10:\"post_title\";s:20:\"Business Column 3041\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/489.jpg\";s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/business/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:71:\"https://avada.studio/wp-content/uploads/2022/07/business-ss-400x311.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:311;}s:4:\"tags\";a:1:{i:0;s:8:\"business\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:63:\"https://avada.studio/wp-content/uploads/2022/07/business-ss.jpg\";}}s:9:\"item-3038\";a:10:{s:2:\"ID\";i:3038;s:10:\"post_title\";s:27:\"Interior Design Column 3038\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:81:\"https://avada.studio/wp-content/uploads/2022/07/construction-process-hotspots.jpg\";a:1:{s:8:\"image_id\";s:9:\"3039|full\";}}}s:3:\"url\";s:47:\"https://avada.studio/fusion_element/features-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/07/kitchen-hubspots-layouts-card-400x337.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:337;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:10:\"info-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/07/kitchen-hubspots-layouts-card-800x674.jpg\";}}s:9:\"item-2909\";a:10:{s:2:\"ID\";i:2909;s:10:\"post_title\";s:19:\"Wedding Column 2909\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/450.jpg\";a:1:{s:8:\"image_id\";s:9:\"2911|full\";}s:55:\"https://avada.studio/wp-content/uploads/2022/07/452.jpg\";a:1:{s:8:\"image_id\";s:9:\"2931|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/wedding/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/07/wedding-400x487.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:487;}s:4:\"tags\";a:1:{i:0;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:59:\"https://avada.studio/wp-content/uploads/2022/07/wedding.jpg\";}}s:9:\"item-2891\";a:10:{s:2:\"ID\";i:2891;s:10:\"post_title\";s:19:\"Fitness Column 2891\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2022/07/445.jpg\";a:1:{s:8:\"image_id\";s:9:\"2893|full\";}}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/fitness-3/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/07/fitness-400x528.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:528;}s:4:\"tags\";a:1:{i:0;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:59:\"https://avada.studio/wp-content/uploads/2022/07/fitness.jpg\";}}s:9:\"item-2113\";a:10:{s:2:\"ID\";i:2113;s:10:\"post_title\";s:19:\"Twitter Column 2113\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:46:\"https://avada.studio/fusion_element/twitter-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/12/twitter-2-400x607.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:607;}s:4:\"tags\";a:1:{i:0;s:12:\"social-links\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2021/12/twitter-2.jpg\";}}s:9:\"item-1310\";a:10:{s:2:\"ID\";i:1310;s:10:\"post_title\";s:22:\"Restaurant Column 1310\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/176.jpg\";s:4:\"true\";}}s:3:\"url\";s:49:\"https://avada.studio/fusion_element/restaurant-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-23-02-400x528.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:528;}s:4:\"tags\";a:1:{i:0;s:4:\"menu\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/09/column-23-02.jpg\";}}s:8:\"item-845\";a:10:{s:2:\"ID\";i:845;s:10:\"post_title\";s:18:\"Company Column 845\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:4:{s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-1.png\";a:1:{s:8:\"image_id\";s:8:\"264|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-2.png\";a:1:{s:8:\"image_id\";s:8:\"265|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-4.png\";a:1:{s:8:\"image_id\";s:8:\"267|full\";}s:58:\"https://avada.studio/wp-content/uploads/2021/08/logo-3.png\";a:1:{s:8:\"image_id\";s:8:\"266|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/company/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/elegant-column-05-ss-400x69.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:69;}s:4:\"tags\";a:1:{i:0;s:8:\"sponsors\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/09/elegant-column-05-ss-800x138.jpg\";}}s:8:\"item-843\";a:10:{s:2:\"ID\";i:843;s:10:\"post_title\";s:19:\"Colorful Column 843\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/colorful/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-02-02-400x389.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:389;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/09/column-02-02.jpg\";}}s:8:\"item-841\";a:10:{s:2:\"ID\";i:841;s:10:\"post_title\";s:18:\"Minimal Column 841\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:44:\"https://avada.studio/fusion_element/minimal/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-03-400x212.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:212;}s:4:\"tags\";a:2:{i:0;s:9:\"checklist\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-03-800x425.jpg\";}}s:8:\"item-838\";a:10:{s:2:\"ID\";i:838;s:10:\"post_title\";s:15:\"Food Column 838\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/146.jpg\";a:1:{s:8:\"image_id\";s:9:\"1197|full\";}}}s:3:\"url\";s:41:\"https://avada.studio/fusion_element/food/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-04-02-400x503.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:503;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:6:\"recipe\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/09/column-04-02.jpg\";}}s:8:\"item-835\";a:10:{s:2:\"ID\";i:835;s:10:\"post_title\";s:17:\"Travel Column 835\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/147.jpg\";s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/travel-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-05-400x227.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:227;}s:4:\"tags\";a:1:{i:0;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-05-800x454.jpg\";}}s:8:\"item-833\";a:10:{s:2:\"ID\";i:833;s:10:\"post_title\";s:17:\"Rating Column 833\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/153.jpg\";a:1:{s:8:\"image_id\";s:9:\"1204|full\";}}}s:3:\"url\";s:43:\"https://avada.studio/fusion_element/rating/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-06-02-400x451.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:451;}s:4:\"tags\";a:1:{i:0;s:12:\"testimonials\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/09/column-06-02.jpg\";}}s:8:\"item-831\";a:10:{s:2:\"ID\";i:831;s:10:\"post_title\";s:20:\"Gardening Column 831\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/154.jpg\";a:1:{s:8:\"image_id\";s:9:\"1207|full\";}s:55:\"https://avada.studio/wp-content/uploads/2021/09/155.png\";s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/gardening/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-07-400x446.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:446;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:10:\"info-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2021/09/column-07.jpg\";}}s:8:\"item-829\";a:10:{s:2:\"ID\";i:829;s:10:\"post_title\";s:19:\"Icon Box Column 829\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:975;s:16:\"icon-accountant-\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/icon-box/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-08-02-400x350.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:350;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:10:\"icon-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/09/column-08-02.jpg\";}}s:8:\"item-823\";a:10:{s:2:\"ID\";i:823;s:10:\"post_title\";s:23:\"Illustration Column 823\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/363.jpg\";a:1:{s:8:\"image_id\";s:9:\"1907|full\";}}}s:3:\"url\";s:51:\"https://avada.studio/fusion_element/illustration-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-24-400x382.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:382;}s:4:\"tags\";a:2:{i:0;s:3:\"cta\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2021/09/column-24.jpg\";}}s:8:\"item-820\";a:10:{s:2:\"ID\";i:820;s:10:\"post_title\";s:18:\"Fitness Column 820\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:2:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/157.jpg\";s:4:\"true\";s:55:\"https://avada.studio/wp-content/uploads/2021/09/300.jpg\";a:1:{s:8:\"image_id\";s:9:\"1648|full\";}}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/fitness-2/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-10-02-400x333.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:333;}s:4:\"tags\";a:1:{i:0;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-10-02-800x665.jpg\";}}s:8:\"item-818\";a:10:{s:2:\"ID\";i:818;s:10:\"post_title\";s:20:\"Statistic Column 818\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/160.jpg\";s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/statistic/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-11-400x127.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:127;}s:4:\"tags\";a:2:{i:0;s:6:\"banner\";i:1;s:10:\"statistics\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-11-800x254.jpg\";}}s:8:\"item-807\";a:10:{s:2:\"ID\";i:807;s:10:\"post_title\";s:14:\"Art Column 807\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/165.jpg\";s:4:\"true\";}}s:3:\"url\";s:40:\"https://avada.studio/fusion_element/art/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-12-400x244.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:244;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-12-800x488.jpg\";}}s:8:\"item-789\";a:10:{s:2:\"ID\";i:789;s:10:\"post_title\";s:19:\"Info Box Column 789\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:54:\"https://avada.studio/wp-content/uploads/2021/09/84.jpg\";s:4:\"true\";}}s:3:\"url\";s:45:\"https://avada.studio/fusion_element/info-box/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-13-400x386.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:386;}s:4:\"tags\";a:3:{i:0;s:4:\"card\";i:1;s:3:\"cta\";i:2;s:10:\"info-boxes\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2021/09/column-13.jpg\";}}s:8:\"item-721\";a:10:{s:2:\"ID\";i:721;s:10:\"post_title\";s:18:\"Camping Column 721\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:7:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/167.jpg\";b:1;}s:5:\"menus\";a:0:{}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:0:{}s:12:\"off_canvases\";a:0:{}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/camping/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-14-400x508.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:508;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2021/09/column-14.jpg\";}}s:8:\"item-708\";a:10:{s:2:\"ID\";i:708;s:10:\"post_title\";s:18:\"Medical Column 708\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/168.jpg\";a:1:{s:8:\"image_id\";s:9:\"1251|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/medical/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-15-400x487.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:487;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2021/09/column-15.jpg\";}}s:8:\"item-695\";a:10:{s:2:\"ID\";i:695;s:10:\"post_title\";s:18:\"Finance Column 695\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"icons\";a:1:{i:975;s:16:\"icon-accountant-\";}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/finance/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-16-400x247.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:247;}s:4:\"tags\";a:2:{i:0;s:10:\"icon-boxes\";i:1;s:11:\"information\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-16-800x495.jpg\";}}s:8:\"item-686\";a:10:{s:2:\"ID\";i:686;s:10:\"post_title\";s:18:\"Product Column 686\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/171.png\";a:1:{s:8:\"image_id\";s:9:\"1258|full\";}}}s:3:\"url\";s:44:\"https://avada.studio/fusion_element/product/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-17-400x574.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:574;}s:4:\"tags\";a:2:{i:0;s:4:\"card\";i:1;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2021/09/column-17.jpg\";}}s:8:\"item-660\";a:10:{s:2:\"ID\";i:660;s:10:\"post_title\";s:23:\"Consultation Column 660\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:49:\"https://avada.studio/fusion_element/consultation/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-18-02-400x151.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:151;}s:4:\"tags\";a:1:{i:0;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-18-02-800x301.jpg\";}}s:8:\"item-652\";a:10:{s:2:\"ID\";i:652;s:10:\"post_title\";s:20:\"Subscribe Column 652\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:5:\"forms\";a:1:{i:651;s:4:\"true\";}}s:3:\"url\";s:46:\"https://avada.studio/fusion_element/subscribe/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-19-400x147.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:147;}s:4:\"tags\";a:1:{i:0;s:10:\"newsletter\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-19-800x295.jpg\";}}s:8:\"item-646\";a:10:{s:2:\"ID\";i:646;s:10:\"post_title\";s:19:\"Discover Column 646\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:45:\"https://avada.studio/fusion_element/discover/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-20-400x242.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:242;}s:4:\"tags\";a:1:{i:0;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:69:\"https://avada.studio/wp-content/uploads/2021/09/column-20-800x485.jpg\";}}s:8:\"item-644\";a:10:{s:2:\"ID\";i:644;s:10:\"post_title\";s:16:\"Hours Column 644\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:2:{s:6:\"images\";a:1:{s:55:\"https://avada.studio/wp-content/uploads/2021/09/172.jpg\";s:4:\"true\";}s:5:\"icons\";a:1:{i:982;s:8:\"fitness-\";}}s:3:\"url\";s:42:\"https://avada.studio/fusion_element/hours/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-21-02-400x504.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:504;}s:4:\"tags\";a:1:{i:0;s:14:\"business-hours\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/09/column-21-02.jpg\";}}s:8:\"item-640\";a:10:{s:2:\"ID\";i:640;s:10:\"post_title\";s:14:\"CTA Column 640\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:40:\"https://avada.studio/fusion_element/cta/\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/09/column-22-02-400x291.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:291;}s:4:\"tags\";a:1:{i:0;s:3:\"cta\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/09/column-22-02.jpg\";}}}s:10:\"post_cards\";a:39:{s:9:\"item-5822\";a:10:{s:2:\"ID\";i:5822;s:10:\"post_title\";s:22:\"Project Post Card 5822\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:72:\"https://avada.studio/fusion_element/project-2/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2025/04/portfolio-postcard-ss3-400x495.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:495;}s:4:\"tags\";a:2:{i:0;s:9:\"portfolio\";i:1;s:16:\"single-portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2025/04/portfolio-postcard-ss3.jpg\";}}s:9:\"item-5774\";a:10:{s:2:\"ID\";i:5774;s:10:\"post_title\";s:30:\"Agency Projects Post Card 5774\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:78:\"https://avada.studio/fusion_element/agency-projects/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2025/04/agency-projects-ss1-400x177.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:177;}s:4:\"tags\";a:3:{i:0;s:6:\"agency\";i:1;s:9:\"portfolio\";i:2;s:8:\"services\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2025/04/agency-projects-ss1-800x354.jpg\";}}s:9:\"item-5661\";a:10:{s:2:\"ID\";i:5661;s:10:\"post_title\";s:22:\"Project Post Card 5661\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:70:\"https://avada.studio/fusion_element/project/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2025/02/vintage-pc-ss3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;}s:4:\"tags\";a:2:{i:0;s:12:\"multipurpose\";i:1;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2025/02/vintage-pc-ss3.jpg\";}}s:9:\"item-5556\";a:10:{s:2:\"ID\";i:5556;s:10:\"post_title\";s:24:\"Blog Post Post Card 5556\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_element/blog-post-3/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2024/10/blog-post-card-ss3-400x491.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:491;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:12:\"multipurpose\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2024/10/blog-post-card-ss3.jpg\";}}s:9:\"item-5537\";a:10:{s:2:\"ID\";i:5537;s:10:\"post_title\";s:24:\"Blog Post Post Card 5537\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_element/blog-post-2/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2024/10/blog-post-card-ss2.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:579;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:12:\"multipurpose\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2024/10/blog-post-card-ss2.jpg\";}}s:9:\"item-5510\";a:10:{s:2:\"ID\";i:5510;s:10:\"post_title\";s:24:\"Paintings Post Card 5510\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:72:\"https://avada.studio/fusion_element/paintings/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2024/10/painting-postcard-ss1-400x510.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:510;}s:4:\"tags\";a:2:{i:0;s:12:\"multipurpose\";i:1;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2024/10/painting-postcard-ss1.jpg\";}}s:9:\"item-5266\";a:10:{s:2:\"ID\";i:5266;s:10:\"post_title\";s:28:\"Shop Products Post Card 5266\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:76:\"https://avada.studio/fusion_element/shop-products/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2024/06/product-postcard-ss1.jpg\";s:5:\"width\";i:395;s:6:\"height\";i:589;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2024/06/product-postcard-ss1.jpg\";}}s:9:\"item-4907\";a:10:{s:2:\"ID\";i:4907;s:10:\"post_title\";s:22:\"Product Post Card 4907\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:72:\"https://avada.studio/fusion_element/product-4/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/12/product-ss-400x551.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:551;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:62:\"https://avada.studio/wp-content/uploads/2023/12/product-ss.jpg\";}}s:9:\"item-4889\";a:10:{s:2:\"ID\";i:4889;s:10:\"post_title\";s:29:\"Blog Post Date Post Card 4889\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:77:\"https://avada.studio/fusion_element/blog-post-date/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/12/blog-post-card-date-400x169.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:169;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2023/12/blog-post-card-date-800x338.jpg\";}}s:9:\"item-4671\";a:10:{s:2:\"ID\";i:4671;s:10:\"post_title\";s:22:\"Product Post Card 4671\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:72:\"https://avada.studio/fusion_element/product-3/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2023/10/product-ss-400x445.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:445;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:62:\"https://avada.studio/wp-content/uploads/2023/10/product-ss.jpg\";}}s:9:\"item-4663\";a:10:{s:2:\"ID\";i:4663;s:10:\"post_title\";s:19:\"Blog Post Card 4663\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:69:\"https://avada.studio/fusion_element/blog-2/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2023/10/blog-ss-400x423.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:423;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:59:\"https://avada.studio/wp-content/uploads/2023/10/blog-ss.jpg\";}}s:9:\"item-4361\";a:10:{s:2:\"ID\";i:4361;s:10:\"post_title\";s:23:\"Art Work Post Card 4361\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:71:\"https://avada.studio/fusion_element/art-work/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2023/08/art-work-post-card-1-400x565.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:565;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/08/art-work-post-card-1.jpg\";}}s:9:\"item-4185\";a:10:{s:2:\"ID\";i:4185;s:10:\"post_title\";s:29:\"Blog Post Card Post Card 4185\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:79:\"https://avada.studio/fusion_element/blog-post-card-2/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2023/06/post-card-ss-400x472.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:472;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2023/06/post-card-ss.jpg\";}}s:9:\"item-4161\";a:10:{s:2:\"ID\";i:4161;s:10:\"post_title\";s:31:\"Clothing Product Post Card 4161\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:79:\"https://avada.studio/fusion_element/clothing-product/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2023/06/clothing-product-pc-ss-2-400x753.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:753;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2023/06/clothing-product-pc-ss-2.jpg\";}}s:9:\"item-3332\";a:10:{s:2:\"ID\";i:3332;s:10:\"post_title\";s:29:\"Customer Story Post Card 3332\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:77:\"https://avada.studio/fusion_element/customer-story/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2022/09/abstract-consumer-story-400x631.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:631;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/09/abstract-consumer-story.jpg\";}}s:9:\"item-3297\";a:10:{s:2:\"ID\";i:3297;s:10:\"post_title\";s:32:\"Stationary Mockup Post Card 3297\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:80:\"https://avada.studio/fusion_element/stationary-mockup/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2022/09/stationary-postcard-ss-400x607.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:607;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/09/stationary-postcard-ss.jpg\";}}s:9:\"item-3293\";a:10:{s:2:\"ID\";i:3293;s:10:\"post_title\";s:19:\"Blog Post Card 3293\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:92:\"https://avada.theme-fusion.com/corporation/wp-content/uploads/sites/170/2022/08/fallback.jpg\";s:4:\"true\";}}s:3:\"url\";s:67:\"https://avada.studio/fusion_element/blog/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:74:\"https://avada.studio/wp-content/uploads/2022/09/blog-post-card-400x473.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:473;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:66:\"https://avada.studio/wp-content/uploads/2022/09/blog-post-card.jpg\";}}s:9:\"item-3290\";a:10:{s:2:\"ID\";i:3290;s:10:\"post_title\";s:31:\"Product Category Post Card 3290\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:79:\"https://avada.studio/fusion_element/product-category/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:93:\"https://avada.studio/wp-content/uploads/2022/09/product-category-camping-shop-now-400x408.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:408;}s:4:\"tags\";a:2:{i:0;s:7:\"product\";i:1;s:16:\"product-category\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2022/09/product-category-camping-shop-now.jpg\";}}s:9:\"item-3268\";a:10:{s:2:\"ID\";i:3268;s:10:\"post_title\";s:24:\"Blog Post Post Card 3268\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:72:\"https://avada.studio/fusion_element/blog-post/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/09/blog-post-card-ss-400x297.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:297;}s:4:\"tags\";b:0;s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2022/09/blog-post-card-ss-800x594.jpg\";}}s:9:\"item-2939\";a:10:{s:2:\"ID\";i:2939;s:10:\"post_title\";s:25:\"Case Study Post Card 2939\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:75:\"https://avada.studio/fusion_element/case-study-2/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/07/futurist-portfolio-case-study-400x254.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:254;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2022/07/futurist-portfolio-case-study-800x507.jpg\";}}s:9:\"item-2803\";a:10:{s:2:\"ID\";i:2803;s:10:\"post_title\";s:26:\"Photography Post Card 2803\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:74:\"https://avada.studio/fusion_element/photography/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/06/photography-post-card-400x589.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:589;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/06/photography-post-card.jpg\";}}s:9:\"item-2801\";a:10:{s:2:\"ID\";i:2801;s:10:\"post_title\";s:20:\"Small Post Card 2801\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:68:\"https://avada.studio/fusion_element/small/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2022/06/small-post-card-400x184.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:184;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:67:\"https://avada.studio/wp-content/uploads/2022/06/small-post-card.jpg\";}}s:9:\"item-2796\";a:10:{s:2:\"ID\";i:2796;s:10:\"post_title\";s:19:\"Shop Post Card 2796\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:67:\"https://avada.studio/fusion_element/shop/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2022/06/skin-care-cream-postcard-400x561.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:561;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:76:\"https://avada.studio/wp-content/uploads/2022/06/skin-care-cream-postcard.jpg\";}}s:9:\"item-2794\";a:10:{s:2:\"ID\";i:2794;s:10:\"post_title\";s:24:\"Education Post Card 2794\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:72:\"https://avada.studio/fusion_element/education/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/06/education-postcard-400x570.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:570;}s:4:\"tags\";a:1:{i:0;s:3:\"lms\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/06/education-postcard.jpg\";}}s:9:\"item-2786\";a:10:{s:2:\"ID\";i:2786;s:10:\"post_title\";s:21:\"Travel Post Card 2786\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";a:1:{s:6:\"images\";a:1:{s:60:\"https://avada.studio/wp-content/uploads/2022/06/topology.jpg\";s:4:\"true\";}}s:3:\"url\";s:71:\"https://avada.studio/fusion_element/travel-3/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2022/06/travel-ss.jpg\";s:5:\"width\";i:387;s:6:\"height\";i:644;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:61:\"https://avada.studio/wp-content/uploads/2022/06/travel-ss.jpg\";}}s:9:\"item-2777\";a:10:{s:2:\"ID\";i:2777;s:10:\"post_title\";s:25:\"Case Study Post Card 2777\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:73:\"https://avada.studio/fusion_element/case-study/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2022/06/material-arq-postcard-400x477.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:477;}s:4:\"tags\";a:2:{i:0;s:4:\"blog\";i:1;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:73:\"https://avada.studio/wp-content/uploads/2022/06/material-arq-postcard.jpg\";}}s:9:\"item-2556\";a:10:{s:2:\"ID\";i:2556;s:10:\"post_title\";s:29:\"Search Results Post Card 2556\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:80:\"https://avada.studio/fusion_element/search-results-02/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2022/04/search-post-card.png\";s:5:\"width\";i:400;s:6:\"height\";i:534;}s:4:\"tags\";a:1:{i:0;s:14:\"search-results\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:68:\"https://avada.studio/wp-content/uploads/2022/04/search-post-card.png\";}}s:9:\"item-2544\";a:10:{s:2:\"ID\";i:2544;s:10:\"post_title\";s:29:\"Search Results Post Card 2544\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:80:\"https://avada.studio/fusion_element/search-results-01/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:78:\"https://avada.studio/wp-content/uploads/2022/04/search-01-postcard-400x521.png\";s:5:\"width\";i:400;s:6:\"height\";i:521;}s:4:\"tags\";a:1:{i:0;s:14:\"search-results\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:70:\"https://avada.studio/wp-content/uploads/2022/04/search-01-postcard.png\";}}s:9:\"item-1773\";a:10:{s:2:\"ID\";i:1773;s:10:\"post_title\";s:24:\"Portfolio Post Card 1773\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:82:\"https://avada.studio/fusion_element/portfolio-post-card/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:72:\"https://avada.studio/wp-content/uploads/2021/10/portfolio-01-400x319.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:319;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:64:\"https://avada.studio/wp-content/uploads/2021/10/portfolio-01.jpg\";}}s:8:\"item-865\";a:10:{s:2:\"ID\";i:865;s:10:\"post_title\";s:21:\"Product Post Card 865\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:83:\"https://avada.studio/fusion_element/product-post-card-03/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:87:\"https://avada.studio/wp-content/uploads/2021/09/elegant-product-postcard-02-400x366.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:366;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:79:\"https://avada.studio/wp-content/uploads/2021/09/elegant-product-postcard-02.jpg\";}}s:8:\"item-864\";a:10:{s:2:\"ID\";i:864;s:10:\"post_title\";s:21:\"Product Post Card 864\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:83:\"https://avada.studio/fusion_element/product-post-card-02/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/09/yoga-purple-product-postcard-400x447.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:447;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/09/yoga-purple-product-postcard.jpg\";}}s:8:\"item-861\";a:10:{s:2:\"ID\";i:861;s:10:\"post_title\";s:21:\"Product Post Card 861\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:83:\"https://avada.studio/fusion_element/product-post-card-01/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:88:\"https://avada.studio/wp-content/uploads/2021/09/watch-green-product-postcard-400x456.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:456;}s:4:\"tags\";a:1:{i:0;s:7:\"product\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:80:\"https://avada.studio/wp-content/uploads/2021/09/watch-green-product-postcard.jpg\";}}s:8:\"item-859\";a:10:{s:2:\"ID\";i:859;s:10:\"post_title\";s:30:\"Product Category Post Card 859\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:94:\"https://avada.studio/fusion_element/product-categories-post-card-01/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:85:\"https://avada.studio/wp-content/uploads/2021/09/camping-category-postcard-400x435.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:435;}s:4:\"tags\";a:2:{i:0;s:7:\"product\";i:1;s:16:\"product-category\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:77:\"https://avada.studio/wp-content/uploads/2021/09/camping-category-postcard.jpg\";}}s:8:\"item-797\";a:10:{s:2:\"ID\";i:797;s:10:\"post_title\";s:24:\"Case Study Post Card 797\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:93:\"https://avada.studio/fusion_element/elegant-portfolio-post-card-01/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:98:\"https://avada.studio/wp-content/uploads/2021/09/creative-image-desc-portfolio-postcard-400x254.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:254;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:98:\"https://avada.studio/wp-content/uploads/2021/09/creative-image-desc-portfolio-postcard-800x507.jpg\";}}s:8:\"item-793\";a:10:{s:2:\"ID\";i:793;s:10:\"post_title\";s:18:\"Blog Post Card 793\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:88:\"https://avada.studio/fusion_element/organic-blog-post-card-02/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:83:\"https://avada.studio/wp-content/uploads/2021/09/blue-card-blog-postcard-400x454.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:454;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:75:\"https://avada.studio/wp-content/uploads/2021/09/blue-card-blog-postcard.jpg\";}}s:8:\"item-792\";a:10:{s:2:\"ID\";i:792;s:10:\"post_title\";s:18:\"Blog Post Card 792\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:88:\"https://avada.studio/fusion_element/organic-blog-post-card-01/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2021/09/make-today-great-blog-postcard-400x576.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:576;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/09/make-today-great-blog-postcard.jpg\";}}s:8:\"item-758\";a:10:{s:2:\"ID\";i:758;s:10:\"post_title\";s:24:\"Split Blog Post Card 758\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:86:\"https://avada.studio/fusion_element/split-blog-post-card-02/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/green-cake-blog-postcard-400x178.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:178;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:84:\"https://avada.studio/wp-content/uploads/2021/09/green-cake-blog-postcard-800x356.jpg\";}}s:8:\"item-757\";a:10:{s:2:\"ID\";i:757;s:10:\"post_title\";s:18:\"Blog Post Card 757\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:85:\"https://avada.studio/fusion_element/dark-blog-post-card-01/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:90:\"https://avada.studio/wp-content/uploads/2021/09/square-card-dark-gray-postcard-400x418.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:418;}s:4:\"tags\";a:1:{i:0;s:4:\"blog\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:82:\"https://avada.studio/wp-content/uploads/2021/09/square-card-dark-gray-postcard.jpg\";}}s:8:\"item-698\";a:10:{s:2:\"ID\";i:698;s:10:\"post_title\";s:24:\"Case Study Post Card 698\";s:9:\"post_type\";s:14:\"fusion_element\";s:11:\"avada_media\";s:0:\"\";s:3:\"url\";s:86:\"https://avada.studio/fusion_element/portfolio-case-study-01/?awb-studio-post-card=true\";s:9:\"thumbnail\";a:3:{s:3:\"url\";s:89:\"https://avada.studio/wp-content/uploads/2021/09/aesthetic-portfolio-postcards-400x538.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:538;}s:4:\"tags\";a:1:{i:0;s:9:\"portfolio\";}s:7:\"plugins\";b:0;s:9:\"locations\";b:0;s:6:\"retina\";a:1:{s:3:\"url\";s:81:\"https://avada.studio/wp-content/uploads/2021/09/aesthetic-portfolio-postcards.jpg\";}}}}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("17043","_transient_timeout_imunify_security_rules_1782962736_3174410","1783039024","off"),
("17044","_transient_imunify_security_rules_1782962736_3174410","a:2:{s:7:\"version\";s:7:\"0.950.0\";s:5:\"rules\";a:2:{s:14:\"TEST-HEARTBEAT\";a:11:{s:3:\"cve\";s:14:\"TEST-HEARTBEAT\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:0.1000000000000000055511151231257827021181583404541015625;s:4:\"tags\";a:0:{}s:4:\"mode\";s:4:\"pass\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:2:{s:4:\"type\";s:13:\"probabilistic\";s:5:\"value\";s:6:\"0.0001\";}}}s:9:\"TEST-RULE\";a:11:{s:3:\"cve\";s:8:\"TEST-CVE\";s:11:\"description\";s:0:\"\";s:8:\"cve_link\";s:0:\"\";s:8:\"severity\";d:2;s:4:\"tags\";a:0:{}s:4:\"mode\";s:5:\"block\";s:6:\"target\";s:4:\"core\";s:4:\"slug\";s:0:\"\";s:8:\"versions\";s:7:\">=1.0.0\";s:6:\"action\";s:4:\"init\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:14:\"ARGS:test-rule\";s:4:\"type\";s:6:\"equals\";s:5:\"value\";s:36:\"b3d45e60-53a5-4959-b911-5178baaef7ac\";}}}}}","off"),
("17045","_transient_timeout_imunify_disabled_rules","1783027275","off"),
("17046","_transient_imunify_disabled_rules","a:3:{s:10:\"file_mtime\";i:1780373903;s:9:\"file_size\";i:114;s:5:\"rules\";a:0:{}}","off"),
("17257","_site_transient_timeout_community-events-10df4e5dd17a9ee8843de47129df262e","1783054169","off"),
("17258","_site_transient_community-events-10df4e5dd17a9ee8843de47129df262e","a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"195.15.255.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp Mannheim 2026\";s:3:\"url\";s:35:\"https://mannheim.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-07-03 17:00:00\";s:8:\"end_date\";s:19:\"2026-07-04 00:00:00\";s:20:\"start_unix_timestamp\";i:1783090800;s:18:\"end_unix_timestamp\";i:1783116000;s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Mannheim, Germany\";s:7:\"country\";s:2:\"DE\";s:8:\"latitude\";d:49.48201040000000006102709448896348476409912109375;s:9:\"longitude\";d:8.4674385000000000900399754755198955535888671875;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:25:\"WordCamp Switzerland 2026\";s:3:\"url\";s:38:\"https://switzerland.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-09-11 00:00:00\";s:8:\"end_date\";s:19:\"2026-09-12 00:00:00\";s:20:\"start_unix_timestamp\";i:1789077600;s:18:\"end_unix_timestamp\";i:1789164000;s:8:\"location\";a:4:{s:8:\"location\";s:29:\"Murten, Fribourg, Switzerland\";s:7:\"country\";s:2:\"CH\";s:8:\"latitude\";d:46.93916800000000222325979848392307758331298828125;s:9:\"longitude\";d:7.13664689999999968250676829484291374683380126953125;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Pisa 2026\";s:3:\"url\";s:31:\"https://pisa.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-11-13 00:00:00\";s:8:\"end_date\";s:19:\"2026-11-14 00:00:00\";s:20:\"start_unix_timestamp\";i:1794524400;s:18:\"end_unix_timestamp\";i:1794610800;s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Pisa, Italy\";s:7:\"country\";s:2:\"IT\";s:8:\"latitude\";d:43.72022869999999983292582328431308269500732421875;s:9:\"longitude\";d:10.4009534000000005704578143195249140262603759765625;}}}}","off"),
("17428","_transient_timeout_wpr_performance_monitoring_exists","1783018733","off"),
("17429","_transient_wpr_performance_monitoring_exists","1","off"),
("17430","_transient_timeout_wpr_rocket_cache_exists","1783018733","off"),
("17431","_transient_wpr_rocket_cache_exists","1","off"),
("17432","_transient_timeout_wpr_preconnect_external_domains_exists","1783018733","off"),
("17433","_transient_wpr_preconnect_external_domains_exists","1","off"),
("17434","_transient_timeout_wpr_preload_fonts_exists","1783018733","off"),
("17435","_transient_wpr_preload_fonts_exists","1","off"),
("17436","_transient_timeout_wpr_rucss_used_css_exists","1783018733","off"),
("17437","_transient_wpr_rucss_used_css_exists","1","off"),
("17438","_transient_timeout_wpr_above_the_fold_exists","1783018733","off"),
("17439","_transient_wpr_above_the_fold_exists","1","off"),
("17440","_transient_timeout_wpr_lazy_render_content_exists","1783018733","off"),
("17441","_transient_wpr_lazy_render_content_exists","1","off"),
("17442","_transient_timeout_avada_dashboard_data","1783018734","off"),
("17443","_transient_avada_dashboard_data","a:5:{s:7:\"on_sale\";b:0;s:5:\"price\";s:3:\"$69\";s:9:\"video_url\";s:43:\"https://www.youtube.com/watch?v=b_HWpHZJDU8\";s:13:\"avada_version\";s:6:\"7.15.5\";s:13:\"bypass_active\";b:0;}","off"),
("17445","_transient_timeout_rocket_preload_check_duration","1783015196","off"),
("17446","_transient_rocket_preload_check_duration","0.51177787780762","off"),
("17451","_transient_timeout_fusion_dynamic_js_filenames","1783019535","off"),
("17452","_transient_fusion_dynamic_js_filenames","a:14:{s:36:\"20431490e07b6ad2f7eafa358ae4e85736bb\";s:32:\"6d58ca3074e73df26a5efe19bd7f86ff\";s:36:\"2063824719e2523f71a58b8e3bc554eb5ee0\";s:32:\"6d58ca3074e73df26a5efe19bd7f86ff\";s:35:\"952527fca1d8e57f1f7f7a074b601ce35d7\";s:32:\"870fe814c94186e11648169cb8e05335\";s:35:\"968e611d2f0781cfce3aa943514ec0c032a\";s:32:\"870fe814c94186e11648169cb8e05335\";s:36:\"164610175be4c7575fc1cb06b724a232eaef\";s:32:\"870fe814c94186e11648169cb8e05335\";s:36:\"1651edeeb28ffa4ec1d550130460592e6f1c\";s:32:\"870fe814c94186e11648169cb8e05335\";s:36:\"1644124f3a1eb187ad035293eb1dee3ace7d\";s:32:\"672a0dee61a9444c0bd000023794914f\";s:35:\"964a86893fade95eb1c8115b92d8555e14c\";s:32:\"870fe814c94186e11648169cb8e05335\";s:36:\"1653195379089a45a2ccb610e13ba5bd6ffb\";s:32:\"672a0dee61a9444c0bd000023794914f\";s:36:\"164920a16dd6a78d475417112eb1573a357a\";s:32:\"870fe814c94186e11648169cb8e05335\";s:36:\"16442ddc1a670d3db184d11f66065140d117\";s:32:\"83d653427ba8381a14172acce498a506\";s:36:\"1686470ccaf8679215493a737335e450d551\";s:32:\"83d653427ba8381a14172acce498a506\";s:36:\"1653b3147e64c528cda1bfb9891ee937270c\";s:32:\"83d653427ba8381a14172acce498a506\";s:33:\"5eb642f307319b25b7576215c43704f55\";s:32:\"037a55006c4503ba6421159a76d91d48\";}","off"),
("17457","duplicator_expire_search-replace-wpcode","{\"expire\":1784225544,\"value\":{\"wp_version\":\"5.5\",\"php_version\":\"7.0\"}}","on"),
("17458","duplicator_expire_wp-mail-smtp","{\"expire\":1784225545,\"value\":{\"wp_version\":\"5.5\",\"php_version\":\"7.4\"}}","on"),
("17459","duplicator_expire_all-in-one-seo-pack","{\"expire\":1784225545,\"value\":{\"wp_version\":\"5.7\",\"php_version\":\"7.2\"}}","on"),
("17461","_transient_timeout_avada_premium_plugins_info","1783102416","off"),
("17462","_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:17:\"https://avada.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:4:\"5.13\";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:4:\"5.13\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:17:\"https://avada.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:17:\"https://avada.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:4:\"3.13\";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:4:\"3.13\";s:6:\"Author\";s:11:\"ThemeFusion\";s:9:\"AuthorURI\";s:17:\"https://avada.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:17:\"https://avada.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:17:\"https://avada.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:23:\"https://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.7.58\";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.7.58\";s:6:\"Author\";s:10:\"ThemePunch\";s:9:\"AuthorURI\";s:23:\"https://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:\"8.2\";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:\"8.2\";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:37:\"https://www.advancedcustomfields.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.8.5\";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.8.5\";s:6:\"Author\";s:13:\"Elliot Condon\";s:9:\"AuthorURI\";s:37:\"https://www.advancedcustomfields.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:5:\"3.6.3\";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:5:\"3.6.3\";s:6:\"Author\";s:16:\"Brainstorm Force\";s:9:\"AuthorURI\";s:31:\"https://www.brainstormforce.com\";}s:12:\"filebird-pro\";a:18:{s:4:\"name\";s:8:\"FileBird\";s:11:\"plugin_name\";s:8:\"FileBird\";s:4:\"slug\";s:12:\"filebird-pro\";s:13:\"plugin_author\";s:10:\"Ninja Team\";s:17:\"plugin_author_url\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";s:5:\"image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:9:\"image_url\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966046-a7930180-2d8d-11eb-9695-a4e6bd9c870e.jpg\";s:12:\"external_url\";s:0:\"\";s:7:\"premium\";b:1;s:14:\"latest_version\";s:5:\"6.5.4\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:109:\"https://updates.theme-fusion.com/wp-content/uploads/2020/11/99966169-d3ae8280-2d8d-11eb-895e-0191ae051d45.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"6.5.4\";s:6:\"Author\";s:10:\"Ninja Team\";s:9:\"AuthorURI\";s:54:\"https://ninjateam.org/wordpress-media-library-folders/\";}s:6:\"leadin\";a:15:{s:4:\"name\";s:7:\"HubSpot\";s:11:\"plugin_name\";s:7:\"HubSpot\";s:4:\"slug\";s:6:\"leadin\";s:13:\"plugin_author\";s:7:\"HubSpot\";s:17:\"plugin_author_url\";s:23:\"https://www.hubspot.com\";s:5:\"image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:9:\"image_url\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:84:\"https://updates.theme-fusion.com/wp-content/uploads/2019/10/hubspot_plugin_thumb.jpg\";s:11:\"has_package\";b:0;}s:11:\"woocommerce\";a:15:{s:4:\"name\";s:11:\"WooCommerce\";s:11:\"plugin_name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:13:\"plugin_author\";s:10:\"Automattic\";s:17:\"plugin_author_url\";s:23:\"https://woocommerce.com\";s:5:\"image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:9:\"image_url\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:12:\"external_url\";s:54:\"https://downloads.wordpress.org/plugin/woocommerce.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:88:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/woocommerce_plugin_thumb.png\";s:11:\"has_package\";b:0;}s:19:\"the-events-calendar\";a:15:{s:4:\"name\";s:19:\"The Events Calendar\";s:11:\"plugin_name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:13:\"plugin_author\";s:18:\"Modern Tribe, Inc.\";s:17:\"plugin_author_url\";s:18:\"http://m.tri.be/1x\";s:5:\"image\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:9:\"image_url\";s:92:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/events_calendar_plugin_thumb.png\";s:12:\"external_url\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.4.6.7.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:13:\"wordpress-seo\";a:15:{s:4:\"name\";s:9:\"Yoast SEO\";s:11:\"plugin_name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:13:\"plugin_author\";s:10:\"Team Yoast\";s:17:\"plugin_author_url\";s:18:\"https://yoast.com/\";s:5:\"image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:9:\"image_url\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:12:\"external_url\";s:56:\"https://downloads.wordpress.org/plugin/wordpress-seo.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";b:0;s:6:\"banner\";b:0;s:11:\"tf_cs_image\";s:69:\"https://updates.theme-fusion.com/wp-content/uploads/2018/03/yoast.png\";s:11:\"has_package\";b:0;}s:7:\"bbpress\";a:15:{s:4:\"name\";s:7:\"bbPress\";s:11:\"plugin_name\";s:7:\"bbPress\";s:4:\"slug\";s:7:\"bbpress\";s:13:\"plugin_author\";s:21:\"The bbPress Community\";s:17:\"plugin_author_url\";s:19:\"https://bbpress.org\";s:5:\"image\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:9:\"image_url\";s:71:\"https://updates.theme-fusion.com/wp-content/uploads/2017/12/bbpress.png\";s:12:\"external_url\";s:57:\"https://downloads.wordpress.org/plugin/bbpress.2.5.14.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";N;s:6:\"banner\";N;s:11:\"tf_cs_image\";N;s:11:\"has_package\";b:0;}s:3:\"pwa\";a:15:{s:4:\"name\";s:3:\"PWA\";s:11:\"plugin_name\";s:3:\"PWA\";s:4:\"slug\";s:3:\"pwa\";s:13:\"plugin_author\";s:23:\"PWA Plugin Contributors\";s:17:\"plugin_author_url\";s:49:\"https://github.com/xwp/pwa-wp/graphs/contributors\";s:5:\"image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:9:\"image_url\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_880_660.jpg\";s:12:\"external_url\";s:46:\"https://downloads.wordpress.org/plugin/pwa.zip\";s:7:\"premium\";b:0;s:14:\"latest_version\";s:0:\"\";s:8:\"required\";b:0;s:4:\"icon\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_256_256.jpg\";s:6:\"banner\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_1544_500.jpg\";s:11:\"tf_cs_image\";s:75:\"https://updates.theme-fusion.com/wp-content/uploads/2019/01/pwa_840_438.jpg\";s:11:\"has_package\";b:0;}}","off"),
("17467","_site_transient_timeout_wp_theme_files_patterns-ec972e64ded4898155efa5c07763a364","1783018220","off"),
("17468","_site_transient_wp_theme_files_patterns-ec972e64ded4898155efa5c07763a364","a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}","off"),
("17469","_site_transient_timeout_wp_theme_files_patterns-885fd70eb0d689e1abc13c8d466d7a06","1783018220","off"),
("17470","_site_transient_wp_theme_files_patterns-885fd70eb0d689e1abc13c8d466d7a06","a:2:{s:7:\"version\";s:4:\"7.13\";s:8:\"patterns\";a:0:{}}","off"),
("17486","_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a","1783028061","off"),
("17487","_site_transient_poptags_40cd750bba9870f18aada2478b24840a","O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:9839;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:5058;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2909;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:2880;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2801;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2303;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2203;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:2008;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1856;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1755;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1747;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:1695;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1637;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1626;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1570;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1522;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1513;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1442;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1374;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:1344;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1329;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1324;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:1292;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1201;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1168;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1155;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1155;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:1140;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1127;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:1105;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:1049;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1046;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:1021;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:1016;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:1004;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:981;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:966;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:939;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:928;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:924;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:866;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:837;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:834;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:809;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:805;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:800;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:784;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:776;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:768;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:763;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:749;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:748;}s:7:\"chatbot\";a:3:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:737;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:737;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:731;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:727;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:727;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:715;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:711;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:701;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:685;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:683;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:682;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:677;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:672;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:664;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:662;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:653;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:643;}s:10:\"automation\";a:3:{s:4:\"name\";s:10:\"automation\";s:4:\"slug\";s:10:\"automation\";s:5:\"count\";i:632;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:624;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:624;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:618;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:616;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:615;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:589;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:585;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:581;}s:9:\"live-chat\";a:3:{s:4:\"name\";s:9:\"live chat\";s:4:\"slug\";s:9:\"live-chat\";s:5:\"count\";i:576;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:575;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:574;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:572;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:563;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:557;}s:7:\"booking\";a:3:{s:4:\"name\";s:7:\"booking\";s:4:\"slug\";s:7:\"booking\";s:5:\"count\";i:555;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:551;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:548;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:547;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:540;}s:4:\"gdpr\";a:3:{s:4:\"name\";s:4:\"GDPR\";s:4:\"slug\";s:4:\"gdpr\";s:5:\"count\";i:539;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:538;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:532;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:526;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:520;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:514;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:504;}s:13:\"accessibility\";a:3:{s:4:\"name\";s:13:\"accessibility\";s:4:\"slug\";s:13:\"accessibility\";s:5:\"count\";i:491;}s:8:\"products\";a:3:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:483;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:476;}s:7:\"reviews\";a:3:{s:4:\"name\";s:7:\"reviews\";s:4:\"slug\";s:7:\"reviews\";s:5:\"count\";i:475;}}","off"),
("17491","_site_transient_timeout_theme_roots","1783019153","off"),
("17492","_site_transient_theme_roots","a:5:{s:17:\"Avada-Child-Theme\";s:7:\"/themes\";s:5:\"Avada\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}","off"),
("17495","_transient_timeout_GFCache_565a5cf9886c6bbe5fcfadfd481f0bb4","1783622187","off"),
("17496","_transient_GFCache_565a5cf9886c6bbe5fcfadfd481f0bb4","a:93:{i:0;a:5:{s:3:\"key\";s:25:\"gravitycrm/gravitycrm.php\";s:4:\"name\";s:10:\"gravitycrm\";s:5:\"title\";s:11:\"Gravity CRM\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:0:\"\";}i:1;a:5:{s:3:\"key\";s:29:\"gravityforms/gravityforms.php\";s:4:\"name\";s:12:\"gravityforms\";s:5:\"title\";s:13:\"Gravity Forms\";s:14:\"last_published\";b:0;s:14:\"version_latest\";b:0;}i:2;a:5:{s:3:\"key\";s:34:\"gravityforms-beta/gravityforms.php\";s:4:\"name\";s:17:\"gravityforms-beta\";s:5:\"title\";s:20:\"Gravity Forms (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:12:\"3.0.0-beta.1\";}i:3;a:5:{s:3:\"key\";s:35:\"gravityforms2checkout/2checkout.php\";s:4:\"name\";s:21:\"gravityforms2checkout\";s:5:\"title\";s:16:\"2Checkout Add-On\";s:14:\"last_published\";s:19:\"2024-09-18 16:51:17\";s:14:\"version_latest\";s:5:\"2.4.1\";}i:4;a:5:{s:3:\"key\";s:45:\"gravityformsactivecampaign/activecampaign.php\";s:4:\"name\";s:26:\"gravityformsactivecampaign\";s:5:\"title\";s:21:\"ActiveCampaign Add-On\";s:14:\"last_published\";s:19:\"2024-02-28 19:26:46\";s:14:\"version_latest\";s:5:\"2.2.0\";}i:5;a:5:{s:3:\"key\";s:57:\"gravityformsadvancedpostcreation/advancedpostcreation.php\";s:4:\"name\";s:32:\"gravityformsadvancedpostcreation\";s:5:\"title\";s:29:\"Advanced Post Creation Add-On\";s:14:\"last_published\";s:19:\"2025-03-18 17:19:44\";s:14:\"version_latest\";s:7:\"1.6.1.1\";}i:6;a:5:{s:3:\"key\";s:33:\"gravityformsagilecrm/agilecrm.php\";s:4:\"name\";s:20:\"gravityformsagilecrm\";s:5:\"title\";s:16:\"Agile CRM Add-On\";s:14:\"last_published\";s:19:\"2024-01-24 15:22:55\";s:14:\"version_latest\";s:5:\"1.6.0\";}i:7;a:5:{s:3:\"key\";s:31:\"gravityformsakismet/akismet.php\";s:4:\"name\";s:19:\"gravityformsakismet\";s:5:\"title\";s:14:\"Akismet Add-On\";s:14:\"last_published\";s:19:\"2024-03-13 11:31:56\";s:14:\"version_latest\";s:5:\"1.1.0\";}i:8;a:5:{s:3:\"key\";s:41:\"gravityformsauthorizenet/authorizenet.php\";s:4:\"name\";s:24:\"gravityformsauthorizenet\";s:5:\"title\";s:20:\"Authorize.net Add-On\";s:14:\"last_published\";s:19:\"2021-03-24 11:24:21\";s:14:\"version_latest\";s:4:\"2.11\";}i:9;a:5:{s:3:\"key\";s:29:\"gravityformsaweber/aweber.php\";s:4:\"name\";s:18:\"gravityformsaweber\";s:5:\"title\";s:13:\"AWeber Add-On\";s:14:\"last_published\";s:19:\"2025-02-19 18:26:47\";s:14:\"version_latest\";s:5:\"4.2.0\";}i:10;a:5:{s:3:\"key\";s:35:\"gravityformsbatchbook/batchbook.php\";s:4:\"name\";s:21:\"gravityformsbatchbook\";s:5:\"title\";s:16:\"Batchbook Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:3:\"1.3\";}i:11;a:5:{s:3:\"key\";s:29:\"gravityformsbreeze/breeze.php\";s:4:\"name\";s:18:\"gravityformsbreeze\";s:5:\"title\";s:13:\"Breeze Add-On\";s:14:\"last_published\";s:19:\"2025-03-05 16:09:27\";s:14:\"version_latest\";s:5:\"1.7.0\";}i:12;a:5:{s:3:\"key\";s:27:\"gravityformsbrevo/brevo.php\";s:4:\"name\";s:17:\"gravityformsbrevo\";s:5:\"title\";s:12:\"Brevo Add-On\";s:14:\"last_published\";s:19:\"2025-02-18 18:48:13\";s:14:\"version_latest\";s:5:\"1.0.0\";}i:13;a:5:{s:3:\"key\";s:32:\"gravityformsbrevo-beta/brevo.php\";s:4:\"name\";s:22:\"gravityformsbrevo-beta\";s:5:\"title\";s:19:\"Brevo Add-On (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}i:14;a:5:{s:3:\"key\";s:47:\"gravityformscampaignmonitor/campaignmonitor.php\";s:4:\"name\";s:27:\"gravityformscampaignmonitor\";s:5:\"title\";s:23:\"Campaign Monitor Add-On\";s:14:\"last_published\";s:19:\"2025-03-10 20:07:15\";s:14:\"version_latest\";s:5:\"4.1.1\";}i:15;a:5:{s:3:\"key\";s:33:\"gravityformscampfire/campfire.php\";s:4:\"name\";s:20:\"gravityformscampfire\";s:5:\"title\";s:15:\"Campfire Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:5:\"1.2.2\";}i:16;a:5:{s:3:\"key\";s:37:\"gravityformscapsulecrm/capsulecrm.php\";s:4:\"name\";s:22:\"gravityformscapsulecrm\";s:5:\"title\";s:18:\"Capsule CRM Add-On\";s:14:\"last_published\";s:19:\"2024-01-10 15:20:47\";s:14:\"version_latest\";s:5:\"1.8.0\";}i:17;a:5:{s:3:\"key\";s:23:\"gravityformscf7/cf7.php\";s:4:\"name\";s:15:\"gravityformscf7\";s:5:\"title\";s:16:\"CF7 to GF Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";}i:18;a:5:{s:3:\"key\";s:45:\"gravityformschainedselects/chainedselects.php\";s:4:\"name\";s:26:\"gravityformschainedselects\";s:5:\"title\";s:22:\"Chained Selects Add-On\";s:14:\"last_published\";s:19:\"2025-02-06 18:21:00\";s:14:\"version_latest\";s:7:\"1.8.1.1\";}i:19;a:5:{s:3:\"key\";s:50:\"gravityformschainedselects-beta/chainedselects.php\";s:4:\"name\";s:31:\"gravityformschainedselects-beta\";s:5:\"title\";s:29:\"Chained Selects Add-On (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:12:\"1.0-beta-1.3\";}i:20;a:5:{s:3:\"key\";s:39:\"gravityformscleverreach/cleverreach.php\";s:4:\"name\";s:23:\"gravityformscleverreach\";s:5:\"title\";s:18:\"CleverReach Add-On\";s:14:\"last_published\";s:19:\"2023-04-13 17:46:11\";s:14:\"version_latest\";s:5:\"1.9.0\";}i:21;a:5:{s:3:\"key\";s:23:\"gravityformscli/cli.php\";s:4:\"name\";s:15:\"gravityformscli\";s:5:\"title\";s:17:\"Gravity Forms CLI\";s:14:\"last_published\";s:19:\"2024-03-20 17:51:46\";s:14:\"version_latest\";s:3:\"1.7\";}i:22;a:5:{s:3:\"key\";s:47:\"gravityformsconstantcontact/constantcontact.php\";s:4:\"name\";s:27:\"gravityformsconstantcontact\";s:5:\"title\";s:23:\"Constant Contact Add-On\";s:14:\"last_published\";s:19:\"2022-10-26 18:00:26\";s:14:\"version_latest\";s:7:\"1.8.0.1\";}i:23;a:5:{s:3:\"key\";s:55:\"gravityformsconversationalforms/conversationalforms.php\";s:4:\"name\";s:31:\"gravityformsconversationalforms\";s:5:\"title\";s:27:\"Conversational Forms Add-On\";s:14:\"last_published\";s:19:\"2025-03-12 13:58:03\";s:14:\"version_latest\";s:5:\"1.7.1\";}i:24;a:5:{s:3:\"key\";s:37:\"gravityformsconvertkit/convertkit.php\";s:4:\"name\";s:22:\"gravityformsconvertkit\";s:5:\"title\";s:10:\"Kit Add-On\";s:14:\"last_published\";s:19:\"2024-10-16 15:13:31\";s:14:\"version_latest\";s:5:\"2.0.1\";}i:25;a:5:{s:3:\"key\";s:31:\"gravityformscoupons/coupons.php\";s:4:\"name\";s:19:\"gravityformscoupons\";s:5:\"title\";s:14:\"Coupons Add-On\";s:14:\"last_published\";s:19:\"2025-07-15 15:53:10\";s:14:\"version_latest\";s:7:\"3.5.1.1\";}i:26;a:5:{s:3:\"key\";s:39:\"gravityformsdebug/gravityformsdebug.php\";s:4:\"name\";s:17:\"gravityformsdebug\";s:5:\"title\";s:12:\"Debug Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:10:\"1.0.beta12\";}i:27;a:5:{s:3:\"key\";s:25:\"gravityformsdrip/drip.php\";s:4:\"name\";s:16:\"gravityformsdrip\";s:5:\"title\";s:11:\"Drip Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";}i:28;a:5:{s:3:\"key\";s:31:\"gravityformsdropbox/dropbox.php\";s:4:\"name\";s:19:\"gravityformsdropbox\";s:5:\"title\";s:14:\"Dropbox Add-On\";s:14:\"last_published\";s:19:\"2024-05-28 17:11:32\";s:14:\"version_latest\";s:7:\"3.3.1.1\";}i:29;a:5:{s:3:\"key\";s:36:\"gravityformsdropbox-beta/dropbox.php\";s:4:\"name\";s:24:\"gravityformsdropbox-beta\";s:5:\"title\";s:21:\"Dropbox Add-On (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:12:\"2.0-beta-1.1\";}i:30;a:5:{s:3:\"key\";s:41:\"gravityformsemailoctopus/emailoctopus.php\";s:4:\"name\";s:24:\"gravityformsemailoctopus\";s:5:\"title\";s:19:\"EmailOctopus Add-On\";s:14:\"last_published\";s:19:\"2024-03-13 16:10:58\";s:14:\"version_latest\";s:5:\"2.0.0\";}i:31;a:5:{s:3:\"key\";s:25:\"gravityformsemma/emma.php\";s:4:\"name\";s:16:\"gravityformsemma\";s:5:\"title\";s:11:\"Emma Add-On\";s:14:\"last_published\";s:19:\"2025-03-11 16:52:37\";s:14:\"version_latest\";s:5:\"1.8.0\";}i:32;a:5:{s:3:\"key\";s:33:\"gravityformsfeedback/feedback.php\";s:4:\"name\";s:20:\"gravityformsfeedback\";s:5:\"title\";s:15:\"Feedback Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";}i:33;a:5:{s:3:\"key\";s:37:\"gravityformsfreshbooks/freshbooks.php\";s:4:\"name\";s:22:\"gravityformsfreshbooks\";s:5:\"title\";s:17:\"FreshBooks Add-On\";s:14:\"last_published\";s:19:\"2021-05-07 14:13:59\";s:14:\"version_latest\";s:3:\"2.8\";}i:34;a:5:{s:3:\"key\";s:39:\"gravityformsgeolocation/geolocation.php\";s:4:\"name\";s:23:\"gravityformsgeolocation\";s:5:\"title\";s:18:\"Geolocation Add-On\";s:14:\"last_published\";s:19:\"2025-10-21 16:49:55\";s:14:\"version_latest\";s:5:\"1.5.2\";}i:35;a:5:{s:3:\"key\";s:39:\"gravityformsgetresponse/getresponse.php\";s:4:\"name\";s:23:\"gravityformsgetresponse\";s:5:\"title\";s:18:\"GetResponse Add-On\";s:14:\"last_published\";s:19:\"2024-06-03 17:05:42\";s:14:\"version_latest\";s:5:\"1.9.1\";}i:36;a:5:{s:3:\"key\";s:47:\"gravityformsgoogleanalytics/googleanalytics.php\";s:4:\"name\";s:27:\"gravityformsgoogleanalytics\";s:5:\"title\";s:23:\"Google Analytics Add-On\";s:14:\"last_published\";s:19:\"2024-07-03 12:59:02\";s:14:\"version_latest\";s:5:\"2.4.1\";}i:37;a:5:{s:3:\"key\";s:37:\"gravityformsgoogledocs/googledocs.php\";s:4:\"name\";s:22:\"gravityformsgoogledocs\";s:5:\"title\";s:11:\"Google Docs\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";}i:38;a:5:{s:3:\"key\";s:41:\"gravityformsgooglesheets/googlesheets.php\";s:4:\"name\";s:24:\"gravityformsgooglesheets\";s:5:\"title\";s:20:\"Google Sheets Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";}i:39;a:5:{s:3:\"key\";s:35:\"gravityformsgutenberg/gutenberg.php\";s:4:\"name\";s:21:\"gravityformsgutenberg\";s:5:\"title\";s:31:\"Gutenberg Add-On (Experimental)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";}i:40;a:5:{s:3:\"key\";s:35:\"gravityformshelpscout/helpscout.php\";s:4:\"name\";s:21:\"gravityformshelpscout\";s:5:\"title\";s:17:\"Help Scout Add-On\";s:14:\"last_published\";s:19:\"2024-04-18 15:43:26\";s:14:\"version_latest\";s:7:\"2.4.0.2\";}i:41;a:5:{s:3:\"key\";s:33:\"gravityformshighrise/highrise.php\";s:4:\"name\";s:20:\"gravityformshighrise\";s:5:\"title\";s:15:\"Highrise Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:3:\"1.3\";}i:42;a:5:{s:3:\"key\";s:31:\"gravityformshipchat/hipchat.php\";s:4:\"name\";s:19:\"gravityformshipchat\";s:5:\"title\";s:14:\"HipChat Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:3:\"1.2\";}i:43;a:5:{s:3:\"key\";s:31:\"gravityformshubspot/hubspot.php\";s:4:\"name\";s:19:\"gravityformshubspot\";s:5:\"title\";s:14:\"HubSpot Add-On\";s:14:\"last_published\";s:19:\"2025-02-20 18:33:26\";s:14:\"version_latest\";s:5:\"3.0.3\";}i:44;a:5:{s:3:\"key\";s:33:\"gravityformsicontact/icontact.php\";s:4:\"name\";s:20:\"gravityformsicontact\";s:5:\"title\";s:15:\"iContact Add-On\";s:14:\"last_published\";s:19:\"2024-12-11 17:54:00\";s:14:\"version_latest\";s:5:\"1.8.0\";}i:45;a:5:{s:3:\"key\";s:31:\"gravityformsklaviyo/klaviyo.php\";s:4:\"name\";s:19:\"gravityformsklaviyo\";s:5:\"title\";s:14:\"Klaviyo Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:12:\"0.1.0-beta.1\";}i:46;a:5:{s:3:\"key\";s:31:\"gravityformslogging/logging.php\";s:4:\"name\";s:19:\"gravityformslogging\";s:5:\"title\";s:14:\"Logging Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:5:\"1.3.1\";}i:47;a:5:{s:3:\"key\";s:31:\"gravityformsmadmimi/madmimi.php\";s:4:\"name\";s:19:\"gravityformsmadmimi\";s:5:\"title\";s:15:\"Mad Mimi Add-On\";s:14:\"last_published\";s:19:\"2024-05-20 15:25:08\";s:14:\"version_latest\";s:5:\"1.5.0\";}i:48;a:5:{s:3:\"key\";s:35:\"gravityformsmailchimp/mailchimp.php\";s:4:\"name\";s:21:\"gravityformsmailchimp\";s:5:\"title\";s:16:\"Mailchimp Add-On\";s:14:\"last_published\";s:19:\"2024-12-12 18:59:01\";s:14:\"version_latest\";s:5:\"5.7.2\";}i:49;a:5:{s:3:\"key\";s:37:\"gravityformsmailerlite/mailerlite.php\";s:4:\"name\";s:22:\"gravityformsmailerlite\";s:5:\"title\";s:17:\"MailerLite Add-On\";s:14:\"last_published\";s:19:\"2024-08-13 15:46:07\";s:14:\"version_latest\";s:5:\"1.1.1\";}i:50;a:5:{s:3:\"key\";s:42:\"gravityformsmailerlite-beta/mailerlite.php\";s:4:\"name\";s:27:\"gravityformsmailerlite-beta\";s:5:\"title\";s:24:\"MailerLite Add-On (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}i:51;a:5:{s:3:\"key\";s:31:\"gravityformsmailgun/mailgun.php\";s:4:\"name\";s:19:\"gravityformsmailgun\";s:5:\"title\";s:14:\"Mailgun Add-On\";s:14:\"last_published\";s:19:\"2024-03-28 17:09:12\";s:14:\"version_latest\";s:5:\"1.4.0\";}i:52;a:5:{s:3:\"key\";s:31:\"gravityformsmailjet/mailjet.php\";s:4:\"name\";s:19:\"gravityformsmailjet\";s:5:\"title\";s:14:\"Mailjet Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";}i:53;a:5:{s:3:\"key\";s:37:\"gravityformsmoderation/moderation.php\";s:4:\"name\";s:22:\"gravityformsmoderation\";s:5:\"title\";s:17:\"Moderation Add-On\";s:14:\"last_published\";s:19:\"2024-10-31 13:25:24\";s:14:\"version_latest\";s:5:\"1.3.0\";}i:54;a:5:{s:3:\"key\";s:29:\"gravityformsmollie/mollie.php\";s:4:\"name\";s:18:\"gravityformsmollie\";s:5:\"title\";s:13:\"Mollie Add-On\";s:14:\"last_published\";s:19:\"2025-09-04 18:26:08\";s:14:\"version_latest\";s:5:\"1.8.2\";}i:55;a:5:{s:3:\"key\";s:29:\"gravityformsnotion/notion.php\";s:4:\"name\";s:18:\"gravityformsnotion\";s:5:\"title\";s:13:\"Notion Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";}i:56;a:5:{s:3:\"key\";s:45:\"gravityformspartialentries/partialentries.php\";s:4:\"name\";s:26:\"gravityformspartialentries\";s:5:\"title\";s:22:\"Partial Entries Add-On\";s:14:\"last_published\";s:19:\"2022-04-07 16:02:52\";s:14:\"version_latest\";s:5:\"1.8.1\";}i:57;a:5:{s:3:\"key\";s:29:\"gravityformspaypal/paypal.php\";s:4:\"name\";s:18:\"gravityformspaypal\";s:5:\"title\";s:31:\"PayPal Payments Standard Add-On\";s:14:\"last_published\";s:19:\"2021-04-28 12:27:43\";s:14:\"version_latest\";s:3:\"3.5\";}i:58;a:5:{s:3:\"key\";s:59:\"gravityformspaypalexpresscheckout/paypalexpresscheckout.php\";s:4:\"name\";s:33:\"gravityformspaypalexpresscheckout\";s:5:\"title\";s:30:\"PayPal Express Checkout Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:0:\"\";}i:59;a:5:{s:3:\"key\";s:51:\"gravityformspaypalpaymentspro/paypalpaymentspro.php\";s:4:\"name\";s:29:\"gravityformspaypalpaymentspro\";s:5:\"title\";s:26:\"PayPal Payments Pro Add-On\";s:14:\"last_published\";s:19:\"2021-05-05 14:28:16\";s:14:\"version_latest\";s:3:\"2.7\";}i:60;a:5:{s:3:\"key\";s:35:\"gravityformspaypalpro/paypalpro.php\";s:4:\"name\";s:21:\"gravityformspaypalpro\";s:5:\"title\";s:17:\"PayPal Pro Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:5:\"1.8.4\";}i:61;a:5:{s:3:\"key\";s:33:\"gravityformspicatcha/picatcha.php\";s:4:\"name\";s:20:\"gravityformspicatcha\";s:5:\"title\";s:15:\"Picatcha Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:3:\"2.0\";}i:62;a:5:{s:3:\"key\";s:25:\"gravityformspipe/pipe.php\";s:4:\"name\";s:16:\"gravityformspipe\";s:5:\"title\";s:11:\"Pipe Add-On\";s:14:\"last_published\";s:19:\"2023-11-08 16:04:19\";s:14:\"version_latest\";s:5:\"1.4.0\";}i:63;a:5:{s:3:\"key\";s:27:\"gravityformspolls/polls.php\";s:4:\"name\";s:17:\"gravityformspolls\";s:5:\"title\";s:12:\"Polls Add-On\";s:14:\"last_published\";s:19:\"2025-10-30 17:19:15\";s:14:\"version_latest\";s:5:\"4.4.0\";}i:64;a:5:{s:3:\"key\";s:29:\"gravityformspopups/popups.php\";s:4:\"name\";s:18:\"gravityformspopups\";s:5:\"title\";s:13:\"Popups Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";}i:65;a:5:{s:3:\"key\";s:33:\"gravityformspostmark/postmark.php\";s:4:\"name\";s:20:\"gravityformspostmark\";s:5:\"title\";s:15:\"Postmark Add-On\";s:14:\"last_published\";s:19:\"2024-03-27 18:00:52\";s:14:\"version_latest\";s:5:\"1.4.0\";}i:66;a:5:{s:3:\"key\";s:25:\"gravityformsppcp/ppcp.php\";s:4:\"name\";s:16:\"gravityformsppcp\";s:5:\"title\";s:22:\"PayPal Checkout Add-On\";s:14:\"last_published\";s:19:\"2025-12-08 17:16:42\";s:14:\"version_latest\";s:5:\"4.0.2\";}i:67;a:5:{s:3:\"key\";s:30:\"gravityformsppcp-beta/ppcp.php\";s:4:\"name\";s:21:\"gravityformsppcp-beta\";s:5:\"title\";s:22:\"PayPal Checkout (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:10:\"2.0-beta-3\";}i:68;a:5:{s:3:\"key\";s:33:\"gravityformsppcp-release/ppcp.php\";s:4:\"name\";s:24:\"gravityformsppcp-release\";s:5:\"title\";s:25:\"PayPal Checkout (Release)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:5:\"2.0.2\";}i:69;a:5:{s:3:\"key\";s:25:\"gravityformsquiz/quiz.php\";s:4:\"name\";s:16:\"gravityformsquiz\";s:5:\"title\";s:11:\"Quiz Add-On\";s:14:\"last_published\";s:19:\"2025-06-12 17:11:17\";s:14:\"version_latest\";s:5:\"4.3.1\";}i:70;a:5:{s:3:\"key\";s:35:\"gravityformsrecaptcha/recaptcha.php\";s:4:\"name\";s:21:\"gravityformsrecaptcha\";s:5:\"title\";s:16:\"reCAPTCHA Add-On\";s:14:\"last_published\";s:19:\"2025-11-13 16:51:52\";s:14:\"version_latest\";s:5:\"2.2.2\";}i:71;a:5:{s:3:\"key\";s:31:\"gravityformsrestapi/restapi.php\";s:4:\"name\";s:19:\"gravityformsrestapi\";s:5:\"title\";s:15:\"Rest API Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:10:\"2.0-beta-2\";}i:72;a:5:{s:3:\"key\";s:37:\"gravityformssalesforce/salesforce.php\";s:4:\"name\";s:22:\"gravityformssalesforce\";s:5:\"title\";s:17:\"Salesforce Add-On\";s:14:\"last_published\";s:19:\"2025-12-02 17:03:22\";s:14:\"version_latest\";s:5:\"2.0.0\";}i:73;a:5:{s:3:\"key\";s:42:\"gravityformssalesforce-beta/salesforce.php\";s:4:\"name\";s:27:\"gravityformssalesforce-beta\";s:5:\"title\";s:24:\"Salesforce Add-On (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:12:\"1.0.0-beta-1\";}i:74;a:5:{s:3:\"key\";s:33:\"gravityformssendgrid/sendgrid.php\";s:4:\"name\";s:20:\"gravityformssendgrid\";s:5:\"title\";s:15:\"SendGrid Add-On\";s:14:\"last_published\";s:19:\"2024-04-04 19:54:46\";s:14:\"version_latest\";s:5:\"1.6.0\";}i:75;a:5:{s:3:\"key\";s:35:\"gravityformssignature/signature.php\";s:4:\"name\";s:21:\"gravityformssignature\";s:5:\"title\";s:16:\"Signature Add-On\";s:14:\"last_published\";s:19:\"2025-04-28 16:35:11\";s:14:\"version_latest\";s:7:\"4.9.1.2\";}i:76;a:5:{s:3:\"key\";s:27:\"gravityformsslack/slack.php\";s:4:\"name\";s:17:\"gravityformsslack\";s:5:\"title\";s:12:\"Slack Add-On\";s:14:\"last_published\";s:19:\"2024-03-05 14:04:15\";s:14:\"version_latest\";s:5:\"2.2.0\";}i:77;a:5:{s:3:\"key\";s:29:\"gravityformssquare/square.php\";s:4:\"name\";s:18:\"gravityformssquare\";s:5:\"title\";s:13:\"Square Add-On\";s:14:\"last_published\";s:19:\"2025-10-16 18:51:46\";s:14:\"version_latest\";s:5:\"2.5.1\";}i:78;a:5:{s:3:\"key\";s:29:\"gravityformsstripe/stripe.php\";s:4:\"name\";s:18:\"gravityformsstripe\";s:5:\"title\";s:13:\"Stripe Add-On\";s:14:\"last_published\";s:19:\"2025-12-02 18:58:02\";s:14:\"version_latest\";s:5:\"6.0.3\";}i:79;a:5:{s:3:\"key\";s:34:\"gravityformsstripe-beta/stripe.php\";s:4:\"name\";s:23:\"gravityformsstripe-beta\";s:5:\"title\";s:17:\"Stripe 6.0 (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:10:\"6.0-beta-1\";}i:80;a:5:{s:3:\"key\";s:29:\"gravityformssurvey/survey.php\";s:4:\"name\";s:18:\"gravityformssurvey\";s:5:\"title\";s:13:\"Survey Add-On\";s:14:\"last_published\";s:19:\"2025-10-14 15:10:00\";s:14:\"version_latest\";s:5:\"4.2.2\";}i:81;a:5:{s:3:\"key\";s:29:\"gravityformstrello/trello.php\";s:4:\"name\";s:18:\"gravityformstrello\";s:5:\"title\";s:13:\"Trello Add-On\";s:14:\"last_published\";s:19:\"2024-05-15 16:01:12\";s:14:\"version_latest\";s:7:\"2.2.0.2\";}i:82;a:5:{s:3:\"key\";s:35:\"gravityformsturnstile/turnstile.php\";s:4:\"name\";s:21:\"gravityformsturnstile\";s:5:\"title\";s:27:\"Cloudflare Turnstile Add-On\";s:14:\"last_published\";s:19:\"2025-04-22 18:11:19\";s:14:\"version_latest\";s:5:\"1.5.0\";}i:83;a:5:{s:3:\"key\";s:29:\"gravityformstwilio/twilio.php\";s:4:\"name\";s:18:\"gravityformstwilio\";s:5:\"title\";s:13:\"Twilio Add-On\";s:14:\"last_published\";s:19:\"2024-06-27 14:43:19\";s:14:\"version_latest\";s:5:\"3.1.1\";}i:84;a:5:{s:3:\"key\";s:49:\"gravityformsuserregistration/userregistration.php\";s:4:\"name\";s:28:\"gravityformsuserregistration\";s:5:\"title\";s:24:\"User Registration Add-On\";s:14:\"last_published\";s:19:\"2024-10-30 08:25:21\";s:14:\"version_latest\";s:5:\"5.5.0\";}i:85;a:5:{s:3:\"key\";s:37:\"gravityformsversioning/versioning.php\";s:4:\"name\";s:22:\"gravityformsversioning\";s:5:\"title\";s:17:\"Versioning Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.1-alpha.1\";}i:86;a:5:{s:3:\"key\";s:33:\"gravityformswebhooks/webhooks.php\";s:4:\"name\";s:20:\"gravityformswebhooks\";s:5:\"title\";s:15:\"Webhooks Add-On\";s:14:\"last_published\";s:19:\"2021-05-06 21:12:03\";s:14:\"version_latest\";s:5:\"1.7.0\";}i:87;a:5:{s:3:\"key\";s:31:\"gravityformswpforms/wpforms.php\";s:4:\"name\";s:19:\"gravityformswpforms\";s:5:\"title\";s:24:\"WPForms Migration Add-On\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:13:\"0.1.0-alpha.1\";}i:88;a:5:{s:3:\"key\";s:29:\"gravityformszapier/zapier.php\";s:4:\"name\";s:18:\"gravityformszapier\";s:5:\"title\";s:13:\"Zapier Add-On\";s:14:\"last_published\";s:19:\"2024-03-06 18:58:07\";s:14:\"version_latest\";s:5:\"4.5.1\";}i:89;a:5:{s:3:\"key\";s:34:\"gravityformszapier-beta/zapier.php\";s:4:\"name\";s:23:\"gravityformszapier-beta\";s:5:\"title\";s:24:\"Zapier 4.0 Add-On (Beta)\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:10:\"4.0-beta-2\";}i:90;a:5:{s:3:\"key\";s:31:\"gravityformszohocrm/zohocrm.php\";s:4:\"name\";s:19:\"gravityformszohocrm\";s:5:\"title\";s:15:\"Zoho CRM Add-On\";s:14:\"last_published\";s:19:\"2024-09-03 17:08:58\";s:14:\"version_latest\";s:7:\"2.4.0.2\";}i:91;a:5:{s:3:\"key\";s:27:\"gravitysmtp/gravitysmtp.com\";s:4:\"name\";s:11:\"gravitysmtp\";s:5:\"title\";s:12:\"Gravity SMTP\";s:14:\"last_published\";s:19:\"2025-06-20 15:29:10\";s:14:\"version_latest\";s:5:\"2.2.0\";}i:92;a:5:{s:3:\"key\";s:19:\"testing/testing.php\";s:4:\"name\";s:7:\"testing\";s:5:\"title\";s:7:\"Testing\";s:14:\"last_published\";b:0;s:14:\"version_latest\";s:5:\"1.www\";}}","off"),
("17500","_site_transient_timeout_wp_rocket_update_data","1783060610","off"),
("17501","_site_transient_wp_rocket_update_data","O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:20:\"rocket_update_failed\";a:1:{i:0;s:245:\"An unexpected error occurred. Something may be wrong with WP-Rocket.me or this server&#8217;s configuration. If you continue to have problems, <a href=\"https://wp-rocket.me/support/?utm_source=wp_plugin&utm_medium=wp_rocket\">contact support</a>.\";}}s:10:\"error_data\";a:1:{s:20:\"rocket_update_failed\";a:1:{s:8:\"response\";s:55:\"{\"version\":\"3.21.3\",\"details_url\":\"\",\"download_url\":\"\"}\";}}s:18:\"\0*\0additional_data\";a:0:{}}","off"),
("17502","_site_transient_update_plugins","O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1783017411;s:8:\"response\";a:2:{s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:6:\"6.11.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/instagram-feed.6.11.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-256x256.png?rev=2700807\";s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2700807\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/instagram-feed/assets/banner-1544x500.png?rev=2679382\";s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2679382\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:52:\"wpconsent-cookies-banner-privacy-suite/wpconsent.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:52:\"w.org/plugins/wpconsent-cookies-banner-privacy-suite\";s:4:\"slug\";s:38:\"wpconsent-cookies-banner-privacy-suite\";s:6:\"plugin\";s:52:\"wpconsent-cookies-banner-privacy-suite/wpconsent.php\";s:11:\"new_version\";s:5:\"1.1.7\";s:3:\"url\";s:69:\"https://wordpress.org/plugins/wpconsent-cookies-banner-privacy-suite/\";s:7:\"package\";s:87:\"https://downloads.wordpress.org/plugin/wpconsent-cookies-banner-privacy-suite.1.1.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/wpconsent-cookies-banner-privacy-suite/assets/icon-256x256.png?rev=3232030\";s:2:\"1x\";s:91:\"https://ps.w.org/wpconsent-cookies-banner-privacy-suite/assets/icon-128x128.png?rev=3232030\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:94:\"https://ps.w.org/wpconsent-cookies-banner-privacy-suite/assets/banner-1544x500.jpg?rev=3232516\";s:2:\"1x\";s:93:\"https://ps.w.org/wpconsent-cookies-banner-privacy-suite/assets/banner-772x250.jpg?rev=3232516\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{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.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.7.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:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.5.9\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:8:\"1.5.16.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/duplicator.1.5.16.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=2906985\";s:2:\"1x\";s:63:\"https://ps.w.org/duplicator/assets/icon-128x128.png?rev=2906985\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/duplicator/assets/banner-1544x500.png?rev=2906985\";s:2:\"1x\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=2906985\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:25:\"float-menu/float-menu.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/float-menu\";s:4:\"slug\";s:10:\"float-menu\";s:6:\"plugin\";s:25:\"float-menu/float-menu.php\";s:11:\"new_version\";s:5:\"7.2.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/float-menu/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/float-menu.7.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/float-menu/assets/icon-256x256.png?rev=1632632\";s:2:\"1x\";s:63:\"https://ps.w.org/float-menu/assets/icon-128x128.png?rev=1632632\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/float-menu/assets/banner-1544x500.png?rev=3250235\";s:2:\"1x\";s:65:\"https://ps.w.org/float-menu/assets/banner-772x250.png?rev=3250235\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.3\";}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:35:\"insert-headers-and-footers/ihaf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/insert-headers-and-footers\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:6:\"plugin\";s:35:\"insert-headers-and-footers/ihaf.php\";s:11:\"new_version\";s:5:\"2.3.6\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/insert-headers-and-footers/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.3.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=2758516\";s:2:\"1x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=2758516\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/insert-headers-and-footers/assets/banner-1544x500.png?rev=2758516\";s:2:\"1x\";s:81:\"https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=2758516\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:33:\"fusion-builder/fusion-builder.php\";O:8:\"stdClass\":9:{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:4:\"3.13\";s:6:\"tested\";s:3:\"6.8\";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\":9:{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:4:\"5.13\";s:6:\"tested\";s:3:\"6.8\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:2:{s:2:\"1x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";s:2:\"2x\";s:86:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada-icon-transparent.png\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";s:7:\"default\";s:76:\"https://updates.theme-fusion.com/wp-content/uploads/2017/01/avada_banner.jpg\";}}}s:7:\"checked\";a:15:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"6.8.2\";s:19:\"akismet/akismet.php\";s:3:\"5.7\";s:33:\"fusion-builder/fusion-builder.php\";s:6:\"3.13.0\";s:27:\"fusion-core/fusion-core.php\";s:6:\"5.13.0\";s:32:\"duplicate-page/duplicatepage.php\";s:5:\"4.5.9\";s:25:\"duplicator/duplicator.php\";s:8:\"1.5.16.1\";s:33:\"duplicator-pro/duplicator-pro.php\";s:6:\"4.5.10\";s:25:\"float-menu/float-menu.php\";s:5:\"7.2.4\";s:29:\"gravityforms/gravityforms.php\";s:6:\"2.10.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"imunify-security/imunify-security.php\";s:5:\"4.0.1\";s:33:\"instagram-feed/instagram-feed.php\";s:6:\"6.11.0\";s:35:\"insert-headers-and-footers/ihaf.php\";s:5:\"2.3.6\";s:52:\"wpconsent-cookies-banner-privacy-suite/wpconsent.php\";s:5:\"1.1.6\";s:23:\"wp-rocket/wp-rocket.php\";s:6:\"3.21.3\";}}","off"),
("17503","_transient_timeout_wpr_dynamic_lists_delayjs","1783622211","off"),
("17504","_transient_wpr_dynamic_lists_delayjs","O:8:\"stdClass\":3:{s:7:\"plugins\";O:8:\"stdClass\":266:{s:36:\"ffc21030-519a-4853-8cea-49f959e82731\";O:8:\"stdClass\":9:{s:5:\"title\";s:51:\"Additional Variation Images Gallery for WooCommerce\";s:9:\"condition\";s:47:\"woo-variation-gallery/woo-variation-gallery.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:45:\"/woo-variation-gallery/assets/js/slick.min.js\";i:3;s:48:\"/woo-variation-gallery/assets/js/frontend.min.js\";i:4;s:33:\"/wp-includes/js/underscore.min.js\";i:5;s:23:\"variation_custom_fields\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Prevents delay in the loading of product images.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:def67a2c1ddd6df2353e4772b6fd4e5b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724424735;}s:36:\"0e7dc253-acd0-4421-877f-a7101d848717\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Advanced Ads\";s:9:\"condition\";s:29:\"advanced-ads/advanced-ads.php\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"/uploads/(.*).js\";i:3;s:18:\"advanced_ads_ready\";i:4;s:14:\"advadsCfpQueue\";i:5;s:11:\"adsbygoogle\";i:6;s:16:\"adservice.google\";i:7;s:17:\"/advanced-ads(.*)\";i:8;s:12:\"advads_items\";i:9;s:19:\"advads_tracking_ads\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:189:\"The latest versions of Advanced Ads include automatic compatibility with Delay JS. So please update them first: Advanced Ads 1.27.0, Advanced Ads Pro 2.13.0, and Advanced Ads Tracking 2.1.0\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:4b82cc7379d46c6272f5d556bb264eec\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724424826;}s:36:\"a4d5c058-9120-47ee-977c-f30f83fb1a75\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:a076fbb79772f497349a76ee74a7f708\";s:5:\"title\";s:52:\"All-in-one Compliance for GDPR / CCPA Cookie Consent\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:13:\"iubenda_cs.js\";i:1;s:8:\"var _iub\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:55:\"iubenda-cookie-law-solution/iubenda_cookie_solution.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"88457e92-0f24-458e-b7b5-bab59074ebef\";O:8:\"stdClass\":10:{s:5:\"title\";s:6:\"Amelia\";s:9:\"condition\";s:31:\"ameliabooking/ameliabooking.php\";s:10:\"exclusions\";a:3:{i:0;s:41:\"/wp-content/plugins/ameliabooking/(.*).js\";i:1;s:18:\"var hasAmeliaEvent\";i:2;s:23:\"var ameliaShortcodeData\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:49:\"Display booking options without user interaction.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:93ea6597c3cbd06e93a46b9f5368732d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1758013982;}s:36:\"79a5082f-821a-4a4b-a0e3-caaf22cf3f75\";O:8:\"stdClass\":9:{s:5:\"title\";s:17:\"AMO Team Showcase\";s:9:\"condition\";s:39:\"amo-team-showcase/amo-team-showcase.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:40:\"/amo-team-showcase/public/js/wookmark.js\";i:3;s:56:\"/amo-team-showcase/public/js/amo-team-showcase-public.js\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:11:\"amoTeamVars\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:24:\"To display team members.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:9bdceaa1bb89135730a3b2aa4db94c22\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724425072;}s:36:\"90c7fd90-3adf-4cb7-8a92-845bdbd95d27\";O:8:\"stdClass\":9:{s:5:\"title\";s:46:\"Anti-Spam by CleanTalk - Prevent console error\";s:9:\"condition\";s:36:\"cleantalk-spam-protect/cleantalk.php\";s:10:\"exclusions\";a:2:{i:0;s:17:\"ctPublicFunctions\";i:1;s:8:\"ctPublic\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Prevent console error\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ed2ade77cd44e21b1703b093c002a903\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724425107;}s:36:\"e054f840-700a-4549-bbba-485473a53f71\";O:8:\"stdClass\":9:{s:5:\"title\";s:39:\"AnWP Football Leagues - Calendar Widget\";s:9:\"condition\";s:53:\"football-leagues-by-anwppro/anwp-football-leagues.php\";s:10:\"exclusions\";a:6:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:33:\"/football-leagues-by-anwppro/(.*)\";i:2;s:49:\"/football-leagues-by-anwppro-premium-premium/(.*)\";i:3;s:16:\"window.AnWPFLPro\";i:4;s:22:\"window.AnWPFLTabulator\";i:5;s:48:\"/elementor/assets/lib/flatpickr/flatpickr.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Display FL Calendar Widget\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e7581089f33fdf0a970d5c5deb16ff50\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724425139;}s:36:\"1d058cae-4460-4354-bab3-a96445650bd8\";O:8:\"stdClass\":9:{s:5:\"title\";s:22:\"AnyWhere Elementor Pro\";s:9:\"condition\";s:49:\"anywhere-elementor-pro/anywhere-elementor-pro.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:38:\"/anywhere-elementor-pro/build/index.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:20:\"Make links clickable\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b739df50f3f5bf400075f17dca652517\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724425158;}s:36:\"8a1614c7-55b1-4b6d-88e5-6e8ddc630dae\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:46741e77eaf4d13a0c80be6b86379758\";s:5:\"title\";s:17:\"Astra - Pro Addon\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:32:\"/astra-addon/astra-addon-(.*).js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"astra-addon/astra-addon.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"24bc7cdf-0c51-4d93-a74d-57344689a4f6\";O:8:\"stdClass\":10:{s:5:\"title\";s:34:\"Beaver Builder - Background Images\";s:9:\"condition\";s:37:\"bb-theme-builder/bb-theme-builder.php\";s:10:\"exclusions\";a:2:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:50:\"/wp-content/uploads/bb-plugin/cache/(.*)-layout.js\";}s:7:\"summary\";s:96:\"When Delay JavaScript Execution is enabled, background images don\'t show until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:b509b5b21236c81836daf74954b9109e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1737120060;}s:36:\"37d96403-f9ea-4481-b2f8-374d7c93e61a\";O:8:\"stdClass\":10:{s:5:\"title\";s:19:\"Beaver Builder Lite\";s:9:\"condition\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/uploads/bb-plugin/\";i:3;s:25:\"/bb-plugin/js/yui3.min.js\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:33:\"/bb-plugin/js/fl-slideshow.min.js\";}s:7:\"summary\";s:80:\"To show parallax background, slideshow background and some animations instantly.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:3fab17e6c8338e2dcc7a5c8a06abf093\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1737118681;}s:36:\"f83dbf3b-783e-4ef9-9b18-8a469ca7102d\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Bloom\";s:9:\"condition\";s:15:\"bloom/bloom.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:7:\"/bloom/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e57cdfbc09f4e0f7445c279d9f580bdd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1685189070;}s:36:\"a95fbc8a-c32d-4a4b-90b4-ab6d203501a6\";O:8:\"stdClass\":10:{s:5:\"title\";s:32:\"Bold Builder - Load Page Content\";s:9:\"condition\";s:34:\"bold-page-builder/bold-builder.php\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:71:\"/plugins/bold-page-builder/content_elements_misc/js/content_elements.js\";}s:7:\"summary\";s:110:\"When Delay JavaScript Execution is enabled, the Bold Builder page content doesn\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:b4e303b649e8a20c016a51f35647cf35\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1754073080;}s:36:\"135aadd2-cd4a-44ae-8dcf-801f3f2316c0\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:055ef01accbad6378e3d1a4965600964\";s:5:\"title\";s:6:\"Booked\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:8:\"/booked/\";i:1;s:31:\"/js/jquery/ui/datepicker.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:17:\"booked/booked.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"ddfee9b0-e5a9-4d3f-8c21-b999cbb61c33\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Bookly\";s:9:\"condition\";s:51:\"bookly-responsive-appointment-booking-tool/main.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:53:\"/bookly-responsive-appointment-booking-tool/frontend/\";i:3;s:13:\"window.bookly\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:38:\"To load the booking form on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:492f9b0d55f3bf07c68e915ea1dfb72a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427886;}s:36:\"7a013fd6-0881-4dbe-8e93-33edefe7f717\";O:8:\"stdClass\":8:{s:5:\"title\";s:14:\"Borlabs Cookie\";s:9:\"condition\";s:33:\"borlabs-cookie/borlabs-cookie.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"borlabsCookieConfig\";i:3;s:21:\"borlabs-cookie.min.js\";i:4;s:27:\"borlabsCookieContentBlocker\";i:5;s:16:\"BorlabsCookieBox\";i:6;s:12:\"allFbWidgets\";i:7;s:34:\"/borlabs-cookie/assets/javascript/\";i:8;s:21:\"borlabs-cookie-config\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e1ec2daca513de476bd3dae79366e9ab\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1702497952;}s:36:\"3999e680-4049-4494-945c-768cecc1a2c4\";O:8:\"stdClass\":10:{s:5:\"title\";s:5:\"Brizy\";s:9:\"condition\";s:15:\"brizy/brizy.php\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:58:\"/brizy/public/editor-build/(.*)-wp/editor/js/group-(.*).js\";i:2;s:55:\"/brizy/public/editor-build/(.*)-wp/editor/js/preview.js\";i:3;s:10:\"Brizy.emit\";i:4;s:55:\"/brizy/public/editor-build/prod/editor/js/group-(.*).js\";i:5;s:57:\"/brizy-pro/public/editor-build/prod/js/preview.pro.min.js\";i:6;s:8:\"Brz.emit\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:134:\"Prevents partially loading the slider. When Delay JavaScript Execution is enabled, the page content don\'t load until user interaction.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:43019d66af7b41e65bb602c01e10c6a0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1744729591;}s:36:\"af4d9357-3def-42a1-86b7-419553444b4d\";O:8:\"stdClass\":9:{s:5:\"title\";s:52:\"Carousel Upsells and Related Product for WooCommerce\";s:9:\"condition\";s:91:\"carousel-upsells-and-related-product-for-woocommerce/ffxf-woo-glide-related-and-upsells.php\";s:10:\"exclusions\";a:2:{i:0;s:76:\"/carousel-upsells-and-related-product-for-woocommerce/assets/js/glide.min.js\";i:1;s:22:\"carusel_poduct_related\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:75:\"To load the carousel products with the correct spacing without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5c317f9f244597d8f236ecb7d8e41752\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428163;}s:36:\"fd98f80b-c23b-410d-9dc3-a8ce3e993ac1\";O:8:\"stdClass\":10:{s:5:\"title\";s:9:\"Chaty Pro\";s:9:\"condition\";s:23:\"chaty-pro/cht-icons.php\";s:10:\"exclusions\";a:3:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:37:\"/chaty-pro/js/cht-front-script.min.js\";i:2;s:26:\"/chaty-pro/js/mailcheck.js\";}s:7:\"summary\";s:61:\"Makes the chat widget load without need for user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:b96ceb22b2d39fb4efd313c0820815ea\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1741370727;}s:36:\"a3008eca-48a0-472d-9a07-5dca76f92a44\";O:8:\"stdClass\":10:{s:5:\"title\";s:42:\"Click to Chat - HoliThemes – Load Widget\";s:9:\"condition\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:28:\"/click-to-chat-for-whatsapp/\";}s:7:\"summary\";s:94:\"Allow the Click to Chat widget (free version) from HoliThemes to load without user interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:a972e5b5e65713a2ac6902079728cce0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1747894280;}s:36:\"a9bfc345-2da1-413e-bbe7-800245df5f1f\";O:8:\"stdClass\":10:{s:5:\"title\";s:46:\"Click to Chat Pro - HoliThemes – Load Widget\";s:9:\"condition\";s:39:\"click-to-chat-pro/click-to-chat-pro.php\";s:10:\"exclusions\";a:1:{i:0;s:19:\"/click-to-chat-pro/\";}s:7:\"summary\";s:91:\"Allow the Click to Chat widget (Pro version) by HoliThemes to load without user interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:9bc0ad7f761a99e2bf2c3df3fa43dc5a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1747894256;}s:36:\"1d866d90-5451-43ba-a4d1-75b64f9235e1\";O:8:\"stdClass\":9:{s:5:\"title\";s:26:\"clickskeks.at Cookiebanner\";s:9:\"condition\";s:20:\"clickskeks/index.php\";s:10:\"exclusions\";a:1:{i:0;s:10:\"clickskeks\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:43:\"Load the cookie banner without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:0a3a29603ebac8fe0808f64f5c8edbb2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428285;}s:36:\"866ceb37-0285-4ce6-9f2a-9a99b03ad0c1\";O:8:\"stdClass\":10:{s:5:\"title\";s:40:\"CMSMasters Elementor Addon - Mobile Menu\";s:9:\"condition\";s:57:\"cmsmasters-elementor-addon/cmsmasters-elementor-addon.php\";s:10:\"exclusions\";a:17:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:11:\"/elementor/\";i:2;s:15:\"/elementor-pro/\";i:3;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:28:\"/happy-elementor-addons-pro/\";i:7;s:43:\"/header-footer-elementor/inc/js/frontend.js\";i:8;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:9;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:10;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:11;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:12;s:81:\"/cmsmasters-elementor-addon/assets/lib/perfect-scrollbar/perfect-scrollbar.min.js\";i:13;s:69:\"/cmsmasters-elementor-addon/assets/lib/basicScroll/basicScroll.min.js\";i:14;s:60:\"/cmsmasters-elementor-addon/assets/js/webpack.runtime.min.js\";i:15;s:53:\"/cmsmasters-elementor-addon/assets/js/frontend.min.js\";i:16;s:33:\"elementorCmsmastersFrontendConfig\";}s:7:\"summary\";s:135:\"Mobile menu won\'t open without these exclusions.\r\n\r\nUsed the same exclusions as Elementor, as that\'s a required plugin to use this one.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:0e953e89f00b7ba303c8cc9c26eae84e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1744056425;}s:36:\"bd275cce-a8ba-48a1-aa37-b9106a287075\";O:8:\"stdClass\":10:{s:5:\"title\";s:47:\"CommerceGurus CommerceKit - Load featured image\";s:9:\"condition\";s:55:\"commercegurus-commercekit/commercegurus-commercekit.php\";s:10:\"exclusions\";a:3:{i:0;s:46:\"/wp-content/plugins/commercegurus-commercekit/\";i:1;s:18:\"cgkit_attr_gallery\";i:2;s:15:\"commercekit_ajs\";}s:7:\"summary\";s:72:\"The featured product images don\'t load until user interaction with page.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:e081beb69f2208167beb93dfbe596591\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1758734403;}s:36:\"c09695cc-2387-4416-881a-c0b392188a26\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Complianz\";s:9:\"condition\";s:33:\"complianz-gdpr/complianz-gpdr.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"complianz\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:a766f95208154cd69a3e15150a42f325\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1685188788;}s:36:\"bfb36984-e2a1-40ba-a8cd-f29b0b6f720f\";O:8:\"stdClass\":8:{s:5:\"title\";s:17:\"Complianz Premium\";s:9:\"condition\";s:49:\"complianz-gdpr-premium/complianz-gpdr-premium.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:9:\"complianz\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:89d54385816dd2d5ae92cfda9d95bbfd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1712163685;}s:36:\"b5e146fc-0b7c-4c6c-a631-8da246d3bd89\";O:8:\"stdClass\":9:{s:5:\"title\";s:36:\"Conerstone Builder - Fix mobile menu\";s:9:\"condition\";s:27:\"cornerstone/cornerstone.php\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:46:\"/cornerstone/assets/js/site/cs-classic.(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:104:\"Fix the issue with the hamburger menu, when Delay JavaScript execution is enabled the menu doesn\'t open.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f8f8c81535b5e0073aa3c56b6dd3df5b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428497;}s:36:\"368bc394-b74e-4b62-b359-cd967f78c6ea\";O:8:\"stdClass\":9:{s:5:\"title\";s:54:\"ConsentMagic Pro - Show popup without user interaction\";s:9:\"condition\";s:39:\"consent-magic-pro/consent-magic-pro.php\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:57:\"/wp-content/plugins/consent-magic-pro/js/cs-public.min.js\";i:2;s:42:\"/wp-content/plugins/pixelyoursite-pro/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Load the consent popup without user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:9e0701a214f49a057f17b00e39df2e7e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428306;}s:36:\"7e551e3b-fbe4-4235-87a9-b476bc9e2020\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Content Egg\";s:9:\"condition\";s:27:\"content-egg/content-egg.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:42:\"/content-egg/res/js/morrisjs/morris.min.js\";i:3;s:43:\"/content-egg/res/js/morrisjs/raphael.min.js\";i:4;s:11:\"Morris.Area\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:25:\"Show charts on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:949b1b923d51d10a2fb67a2a39d166b3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428456;}s:36:\"7fbca6c5-9239-4550-a755-6f041f867a57\";O:8:\"stdClass\":9:{s:5:\"title\";s:42:\"Cookie Notice & Compliance for GDPR / CCPA\";s:9:\"condition\";s:31:\"cookie-notice/cookie-notice.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:15:\"/cookie-notice/\";i:3;s:10:\"var cnArgs\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:38:\"Loads the cookie notice on the screen.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:213d0f883ae27aefb3a7937656bbd11e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428382;}s:36:\"26722567-fe35-44b5-a5a7-fb0f3a38c3f2\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Cookiebot CMP\";s:9:\"condition\";s:23:\"cookiebot/cookiebot.php\";s:10:\"exclusions\";a:1:{i:0;s:21:\"consent.cookiebot.com\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:46:\"Resolves issue with links not being clickable.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1d10ad30bbcf0fd4b26e9625a07abcfc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428418;}s:36:\"1547249a-ce0c-40e4-91f6-148a5f9652d7\";O:8:\"stdClass\":8:{s:5:\"title\";s:34:\"CookieYes Lite - Show on page load\";s:9:\"condition\";s:35:\"cookie-law-info/cookie-law-info.php\";s:10:\"exclusions\";a:1:{i:0;s:47:\"/cookie-law-info/lite/frontend/js/script.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:29d4d4ccd077232b111581043bbd8d81\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1721422981;}s:36:\"74110e36-89e5-440d-bec3-7133da3277c2\";O:8:\"stdClass\":9:{s:5:\"title\";s:23:\"Coupon Referral Program\";s:9:\"condition\";s:51:\"coupon-referral-program/coupon-referral-program.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:25:\"/coupon-referral-program/\";i:3;s:42:\"/wp-includes/js/jquery/ui/draggable.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:133:\"Fixes non-breaking dependency error.\r\n\r\nAlso requires excluding the following from JavaScript deferring:\r\n\r\n/coupon-referral-program/\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:edcf103293ceab711e999d419d038ca1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428687;}s:36:\"408fa396-20f2-4b1f-820d-52882af281cc\";O:8:\"stdClass\":9:{s:5:\"title\";s:37:\"CozyStay Core - Fix background images\";s:9:\"condition\";s:31:\"cozystay-core/cozystay-core.php\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:58:\"/cozystay-core/assets/scripts/front/parallax-bundle.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:32:\"Fixes background images loading.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:872b5eef05c1fc3b00cda07ee966938d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428721;}s:36:\"919e07d3-df99-4ebd-a119-dca6c7cb4e22\";O:8:\"stdClass\":10:{s:5:\"title\";s:34:\"CP Live - Show Videos on Page Load\";s:9:\"condition\";s:19:\"cp-live/cp-live.php\";s:10:\"exclusions\";a:6:{i:0;s:28:\"/cp-library/build/src/app.js\";i:1;s:34:\"/feather-icons/(.*)/feather.min.js\";i:2;s:40:\"/wp-includes/js/dist/vendor/react.min.js\";i:3;s:44:\"/wp-includes/js/dist/vendor/react-dom.min.js\";i:4;s:35:\"/wp-includes/js/dist/element.min.js\";i:5;s:39:\"/wp-includes/js/dist/escape-html.min.js\";}s:7:\"summary\";s:93:\"When Delay JavaScript Execution is enabled, videos don\'t show on page until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:a589057eec49aeea28adecba9585059f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1744115729;}s:36:\"ed63e02f-d6c5-481a-bcb9-aae15f72aa21\";O:8:\"stdClass\":9:{s:5:\"title\";s:29:\"Crisp - Live Chat and Chatbot\";s:9:\"condition\";s:15:\"crisp/crisp.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:20:\"CRISP_RUNTIME_CONFIG\";i:3;s:4:\"l.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:36:\"Allow the chat icon to be displayed.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:c3e26264dcfd25802805b4fd1a2a449c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428819;}s:36:\"a8eb622b-279c-4f84-86e0-785e9497add7\";O:8:\"stdClass\":9:{s:5:\"title\";s:24:\"Custom Twitter Feeds pro\";s:9:\"condition\";s:48:\"custom-twitter-feeds-pro/custom-twitter-feed.php\";s:10:\"exclusions\";a:1:{i:0;s:47:\"/custom-twitter-feeds-pro/js/ctf-scripts.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Allow Twitter feed pro to display a Twitter feed\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6e4bf949e12f0bebfefb48f6c316102a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428839;}s:36:\"1624ef15-e25b-406d-bdf9-d4b78d7a59e7\";O:8:\"stdClass\":8:{s:5:\"title\";s:39:\"Customer Reviews for WooCommerce Plugin\";s:9:\"condition\";s:38:\"customer-reviews-woocommerce/ivole.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:43:\"/customer-reviews-woocommerce/js/colcade.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1f893b343e72ce55e6c9013fbda172fa\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1704734788;}s:36:\"b0614843-afed-4377-9d8d-e869221be331\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"Depicter Slider\";s:9:\"condition\";s:21:\"depicter/depicter.php\";s:10:\"exclusions\";a:1:{i:0;s:10:\"/depicter/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:77c42a041f1c40d128f4bb3714a6d20d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1713878881;}s:36:\"396cc03a-8946-4ee8-ab15-7e48261df79a\";O:8:\"stdClass\":8:{s:5:\"title\";s:26:\"Divi - Carousel Module 2.0\";s:9:\"condition\";s:16:\"dg-divi-carousel\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:37:\"/wp-content/plugins/dg-divi-carousel/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:fcd789b7d02699f89720aa5ff3627912\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1709126476;}s:36:\"c15fe3b3-0eaa-48f9-bf04-0e778b1f8c63\";O:8:\"stdClass\":8:{s:5:\"title\";s:14:\"Divi - Supreme\";s:9:\"condition\";s:53:\"supreme-modules-for-divi/supreme-modules-for-divi.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:21:\"/js/magnific-popup.js\";i:6;s:8:\"var DIVI\";i:7;s:26:\"/supreme-modules-for-divi/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b5489ae4d8b949f536d6dd2e5b0c1a95\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738701;}s:36:\"dd31451b-989a-4517-b02a-e2c2e2023366\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Divi Den Pro\";s:9:\"condition\";s:15:\"ddpro/ddpro.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:54:\"/ddpro/build/freddie/js/freddieScriptPageTransition.js\";i:3;s:48:\"/ddpro/build/freddie/js/freddieScriptsHeaders.js\";i:4;s:49:\"/ddpro/build/freddie/js/freddieScriptsContents.js\";i:5;s:40:\"/ddpro/build/freddie/js/gsap/gsap.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:55:\"Fires animations and content created with Divi Den Pro.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5caed322df984bbfd3ecb506cf12b688\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429225;}s:36:\"2b006370-cc90-42c1-9656-a30fbfbc91c6\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Divi Mobile\";s:9:\"condition\";s:27:\"divi-mobile/divi-mobile.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"divi-menu\";i:3;s:6:\"dm_nav\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:46:\"Avoid double click when using the mobile menu.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:402d9b241b04934dd30f32e7ba490e63\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429325;}s:36:\"666bbed9-7ce3-457c-ad6e-b5e056d05010\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Divi Overlays\";s:9:\"condition\";s:31:\"divi-overlays/divi-overlays.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:8:\"var DIVI\";i:6;s:15:\"/divi-overlays/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:39:\"Enable modals to be displayed on screen\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1c828c93d87298d2a27c76e13d0880ba\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429242;}s:36:\"42a404af-7792-44be-9baa-565dc3baf25d\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Divi Pixel\";s:9:\"condition\";s:25:\"divi-pixel/divi-pixel.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:43:\"/divi-pixel/dist/public/js/hamburger.min.js\";i:4;s:42:\"/divi-pixel/dist/vendor/js/easypiechart.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:14:\"Page Preloader\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:dd2494945a487a6cc74d3ab1b2137ccb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429347;}s:36:\"85f5c099-c481-4c38-bbb9-8b76113bdfd5\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"Divi Supreme Pro\";s:9:\"condition\";s:61:\"supreme-modules-pro-for-divi/supreme-modules-pro-for-divi.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"elm.style.display\";i:3;s:76:\"/supreme-modules-pro-for-divi/includes/modules/ImageCarousel/frontend.min.js\";i:4;s:60:\"/supreme-modules-pro-for-divi/public/js/swiper-bundle.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:42:\"Avoid white screen before user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3d5f0ae7751702fd1bb490fcf991a334\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429378;}s:36:\"0b78d762-c7be-45de-9aae-0c5078ec0619\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:b5fc0101608d0b0627268dc49e3e1f8f\";s:5:\"title\";s:12:\"Divi Toolbox\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:20:\"jQuery(\'.preloader\')\";i:3;s:42:\"/divi-toolbox/assets/js/toolbox-scripts.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"divi-toolbox/divi-toolbox.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"fe4f05d8-f90a-4547-9717-1b51a2dc8c5f\";O:8:\"stdClass\":10:{s:5:\"title\";s:29:\"Divi Torque - Carousel Images\";s:9:\"condition\";s:35:\"addons-for-divi/addons-for-divi.php\";s:10:\"exclusions\";a:9:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:55:\"/plugins/addons-for-divi/assets/libs/slick/slick.min.js\";i:2;s:69:\"/plugins/addons-for-divi/assets/libs/magnific-popup/magnific-popup.js\";i:3;s:46:\"/plugins/addons-for-divi/assets/js/frontend.js\";i:4;s:65:\"/plugins/addons-for-divi/assets/libs/counter-up/counter-up.min.js\";i:5;s:30:\"/themes/Divi/js/scripts.min.js\";i:6;s:78:\"/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/easypiechart.js\";i:7;s:79:\"/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/jquery.mobile.js\";i:8;s:25:\"cdn.userway.org/widget.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:175:\"When Delay JavaScript Execution is enabled, carousel images have incorrect dimensions until user interaction with page.\r\n\r\nhttps://github.com/wp-media/rucss-backend/issues/213\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:0c5e37ad7075d749ed195f856431d4e7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1751983104;}s:36:\"9714d442-1c18-4b5d-a840-9eae2054f047\";O:8:\"stdClass\":10:{s:5:\"title\";s:28:\"Divi Torque - Gallery Images\";s:9:\"condition\";s:35:\"addons-for-divi/addons-for-divi.php\";s:10:\"exclusions\";a:8:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:59:\"/wp-content/plugins/diviflash/public/js/lib/packery.pkgd.js\";i:2;s:68:\"/wp-content/plugins/diviflash/public/js/lib/imagesloaded.pkgd.min.js\";i:3;s:53:\"/wp-content/plugins/diviflash/public/js/df-packery.js\";i:4;s:30:\"/themes/Divi/js/scripts.min.js\";i:5;s:78:\"/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/easypiechart.js\";i:6;s:79:\"/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/jquery.mobile.js\";i:7;s:25:\"cdn.userway.org/widget.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:164:\"When Delay JavaScript Execution is enabled, the gallery images do not show until user interaction with page.\r\n\r\nhttps://github.com/wp-media/rucss-backend/issues/214\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:a6b73cee8978dfce1c881b8301445741\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1751983856;}s:36:\"aa07b744-a9cc-4de2-8caf-c203da1a8517\";O:8:\"stdClass\":10:{s:5:\"title\";s:23:\"DiviMenus - Mobile Menu\";s:9:\"condition\";s:23:\"divimenus/divimenus.php\";s:10:\"exclusions\";a:2:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:41:\"/divimenus/scripts/frontend-bundle.min.js\";}s:7:\"summary\";s:106:\"When Delay JavaScript Execution is enabled, the mobile menu loads as open until interaction with the page.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:5041c45e48cd10836174e158078bdce6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1745522929;}s:36:\"31a34440-1383-40c4-8920-effcf99f2165\";O:8:\"stdClass\":9:{s:5:\"title\";s:17:\"Dracula Dark Mode\";s:9:\"condition\";s:36:\"dracula-dark-mode-premium/plugin.php\";s:10:\"exclusions\";a:9:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:68:\"/wp-content/plugins/dracula-dark-mode-premium/assets/js/dark-mode.js\";i:2;s:67:\"/wp-content/plugins/dracula-dark-mode-premium/assets/js/frontend.js\";i:3;s:44:\"/wp-includes/js/dist/vendor/react-dom.min.js\";i:4;s:40:\"/wp-includes/js/dist/vendor/react.min.js\";i:5;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:6;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:7;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:8;s:15:\"draculaDarkMode\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:90:\"Show dark mode toggle button and apply styles without need for user interaction with page.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5e8a5d8d3830136d84d0f3676f1bf5a5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429514;}s:36:\"8baba0f8-4449-47d8-a87d-9b6a116e7684\";O:8:\"stdClass\":8:{s:5:\"title\";s:48:\"Dynamic Pricing & Discounts Lite for WooCommerce\";s:9:\"condition\";s:85:\"woo-dynamic-pricing-discounts-lite/dynamic-pricing-discounts-lite-for-woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:79:\"/woo-dynamic-pricing-discounts-lite/assets/OwlCarousel/dist/owl.carousel.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:185062bf08db42515488e1853d1f4917\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677857247;}s:36:\"0fa129f2-5869-4db7-9bf0-69e4b3549ee2\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:27478327aa44075a86176fad95640d76\";s:5:\"title\";s:39:\"Dynamic Product Gallery for WooCommerce\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/woocommerce-dynamic-gallery/\";i:3;s:21:\"a3revWCDynamicGallery\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:62:\"woocommerce-dynamic-gallery/wc_dynamic_gallery_woocommerce.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"9958c6be-2f67-4791-95c3-a7ad96d599c0\";O:8:\"stdClass\":9:{s:5:\"title\";s:47:\"Dynamic Product Gallery Premium for WooCommerce\";s:9:\"condition\";s:66:\"woocommerce-dynamic-gallery-pro/wc_dynamic_gallery_woocommerce.php\";s:10:\"exclusions\";a:5:{i:0;s:55:\"/jquery-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:55:\"/jquery-migrate(.*)(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:2;s:74:\"/woocommerce-dynamic-gallery-pro/assets/js/mygallery/jquery.a3-dgallery.js\";i:3;s:18:\"settings_defaults_\";i:4;s:21:\"a3revWCDynamicGallery\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:50:\"Load the gallery content without user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:11dc02a76019f00422f4ac85f47f5135\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429541;}s:36:\"ce26ed21-1be5-481f-80d4-31edfac6d890\";O:8:\"stdClass\":9:{s:5:\"title\";s:43:\"Dynamic.ooo - Dynamic Content for Elementor\";s:9:\"condition\";s:63:\"dynamic-content-for-elementor/dynamic-content-for-elementor.php\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:38:\"/dynamic-content-for-elementor/assets/\";i:8;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:9;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:20:\"Show dynamic content\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:d2bd5b348abe016bdc722acce7755062\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429557;}s:36:\"6a3161a6-1a6f-457a-a9ee-54b376981927\";O:8:\"stdClass\":9:{s:5:\"title\";s:22:\"Easy Table of Contents\";s:9:\"condition\";s:49:\"easy-table-of-contents/easy-table-of-contents.php\";s:10:\"exclusions\";a:1:{i:0;s:46:\"/easy-table-of-contents/assets/js/front.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:69:\"Avoid the Easy Table of Contents to briefly open when the page loads.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ee1dec033c6481a77fe88de5bef1a02d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429629;}s:36:\"25a534a0-2c1f-4cf4-9e19-7941bc032b3a\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"Ecwid Ecommerce Shopping Cart\";s:9:\"condition\";s:43:\"ecwid-shopping-cart/ecwid-shopping-cart.php\";s:10:\"exclusions\";a:11:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:23:\"app.ecwid.com/script.js\";i:3;s:35:\"/ecwid-shopping-cart/js/frontend.js\";i:4;s:38:\"/ecwid-shopping-cart/js/static-page.js\";i:5;s:20:\"ecwidParamswindow.ec\";i:6;s:13:\"jQuery.mobile\";i:7;s:7:\"xSearch\";i:8;s:13:\"xCategoriesV2\";i:9;s:15:\"xProductBrowser\";i:10;s:10:\"Ecwid.init\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:41c8f5f0ab00cb39654aedd783d194e0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1704734846;}s:36:\"a0d681db-991a-4220-8f05-c54a4857aa42\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"Element Pack Pro\";s:9:\"condition\";s:47:\"bdthemes-element-pack/bdthemes-element-pack.php\";s:10:\"exclusions\";a:10:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:66:\"/bdthemes-element-pack/assets/js/modules/ep-static-carousel.min.js\";i:2;s:66:\"/bdthemes-element-pack/assets/js/modules/ep-custom-carousel.min.js\";i:3;s:60:\"/bdthemes-element-pack/assets/js/modules/ep-slideshow.min.js\";i:4;s:67:\"/bdthemes-element-pack/assets/js/modules/ep-product-carousel.min.js\";i:5;s:58:\"/bdthemes-element-pack/assets/js/modules/ep-stacker.min.js\";i:6;s:49:\"/bdthemes-element-pack/assets/js/bdt-uikit.min.js\";i:7;s:53:\"/bdthemes-element-pack/assets/js/common/helper.min.js\";i:8;s:60:\"/bdthemes-element-pack/assets/vendor/js/ScrollTrigger.min.js\";i:9;s:51:\"/bdthemes-element-pack/assets/vendor/js/gsap.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:46:\"Fix issues with gallery and product carousels.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ced76c4da718a667537dc6c9d5e0244d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429901;}s:36:\"40464325-5bae-4a20-bc97-553499e09a73\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Elementor\";s:9:\"condition\";s:23:\"elementor/elementor.php\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:28:\"/happy-elementor-addons-pro/\";i:8;s:43:\"/header-footer-elementor/inc/js/frontend.js\";i:9;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:10;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:11;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:12;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1d15783218a3137bec4ee8df5353e218\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694425872;}s:36:\"ac86b64c-c80a-4053-894d-6caa8b4fdce8\";O:8:\"stdClass\":8:{s:5:\"title\";s:25:\"Elementor  Loop Carrousel\";s:9:\"condition\";s:23:\"elementor/elementor.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:3;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:4;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:5;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:0eb8d0bbd1c7ca05ac133ea634f676b7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694442056;}s:36:\"a8fc9fd1-f6d3-41eb-abe9-ef176de6d7e2\";O:8:\"stdClass\":9:{s:5:\"title\";s:39:\"Elementor - Lazy Load Background Images\";s:9:\"condition\";s:23:\"elementor/elementor.php\";s:10:\"exclusions\";a:1:{i:0;s:19:\"lazyloadRunObserver\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Start background images so they load immediately\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:bf248cb2876558452a566c5dd89262b8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430300;}s:36:\"1948aff5-7850-4979-91fa-0ce181484508\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"Elementor Custom Skin\";s:9:\"condition\";s:35:\"ele-custom-skin/ele-custom-skin.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:31:\"/ele-custom-skin(.*)/assets/js/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:55:\"Fixes console error when Elementor scripts are excluded\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:de658ae6c2d05a5a4a947efecf5e0c16\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429916;}s:36:\"25708299-c596-4416-8ad8-740aee0f2752\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Elementor Pro\";s:9:\"condition\";s:31:\"elementor-pro/elementor-pro.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:28:\"/happy-elementor-addons-pro/\";i:8;s:43:\"/header-footer-elementor/inc/js/frontend.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:336:\"Show elements, galleries, and start animations. \r\n\r\nWhen User Cache is active the following exclusions will resolve console errors:\r\n\r\n/wp-includes/js/underscore.min.js\r\n/wp-includes/js/jquery/ui/core.min.js\r\n/wp-includes/js/backbone.min.js\r\nelementorAdminBarConfig\r\nelementorCommonConfig\r\nelementorWebCliConfig\r\nelementorDevToolsConfig\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:030ad23e3851ed7adfa7b9b6c13cf5a6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430189;}s:36:\"f34dd874-4b34-41e6-a31c-ece3c1efbffc\";O:8:\"stdClass\":9:{s:5:\"title\";s:26:\"Elementor Pro - SmartMenus\";s:9:\"condition\";s:31:\"elementor-pro/elementor-pro.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:61:\"/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js\";i:3;s:59:\"/elementor-pro/assets/js/preloaded-elements-handlers.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Fixes the mobile menu\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:305581ad4294a30eeb1247982f626005\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430219;}s:36:\"111cc8b2-0be9-438b-9aa3-7f1e301a5697\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5ae9f5d99224d5ebc7d0c0bbf5b99787\";s:5:\"title\";s:26:\"Elementor Pro - User Cache\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:33:\"/wp-includes/js/underscore.min.js\";i:1;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:2;s:31:\"/wp-includes/js/backbone.min.js\";i:3;s:23:\"elementorAdminBarConfig\";i:4;s:21:\"elementorCommonConfig\";i:5;s:21:\"elementorWebCliConfig\";i:6;s:23:\"elementorDevToolsConfig\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"elementor-pro/elementor-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c1713bf8-e0c3-4cb5-8b3f-841b06aa87ed\";O:8:\"stdClass\":8:{s:5:\"title\";s:27:\"ElementsKit Lite - Megamenu\";s:9:\"condition\";s:37:\"elementskit-lite/elementskit-lite.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:17:\"/elementskit(.*)/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b91fed2fc4478dbb7067742c1ee4691b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683270249;}s:36:\"236c2a9e-9668-4a80-9b66-d2222d812dd6\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"Elfsight Slider CC\";s:9:\"condition\";s:41:\"elfsight-slider-cc/elfsight-slider-cc.php\";s:10:\"exclusions\";a:1:{i:0;s:45:\"/elfsight-slider-cc/assets/elfsight-slider.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Load slider on page loading\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b0e259c84df5e120d6113dd0eef9da4b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430233;}s:36:\"706ff35d-8e33-4b04-a986-346faff704e9\";O:8:\"stdClass\":9:{s:5:\"title\";s:30:\"Essential Addons for Elementor\";s:9:\"condition\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:55:\"/essential-addons(-for)?-elementor(-lite)?/.*(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:31:\"Start the carousel on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:417192424139d89fb2a5b1ee1f2b9613\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430272;}s:36:\"b38556dc-2bc4-430f-9c55-7191cf7773db\";O:8:\"stdClass\":9:{s:5:\"title\";s:34:\"Essential Addons for Elementor Pro\";s:9:\"condition\";s:56:\"essential-addons-elementor/essential_adons_elementor.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:55:\"/essential-addons(-for)?-elementor(-lite)?/.*(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:31:\"Start the carousel on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:057757d0593ad9d2dc58124f0077a5df\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430280;}s:36:\"719b988f-0d60-40c2-ba46-88f943119cb1\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Essential Grid\";s:9:\"condition\";s:33:\"essential-grid/essential-grid.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"/essential-grid/\";i:3;s:15:\"lightboxOptions\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:30:\"Load grid without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:c8e6c490f6438f566ade600c33531a85\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430960;}s:36:\"47d3d2ab-160d-4b07-ac25-8250b9e6a951\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"EventON Lite\";s:9:\"condition\";s:24:\"eventon-lite/eventon.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:28:\"/eventon-lite/assets/js/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:37:\"Load the events calendar on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:dafd19fa48a1fef890dc4348052fcb75\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430313;}s:36:\"219968d7-cf1f-4ee0-917a-db35dcc93a3e\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:49ff465628fc3cb6d7f23ff81d9b8339\";s:5:\"title\";s:7:\"FacetWP\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:36:\"/facetwp/assets/js/dist/front.min.js\";i:1;s:11:\"window.FWP_\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:17:\"facetwp/index.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"acce5701-5917-48d5-83ab-3e626aa420c5\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:78a1c88a56fa957c802074b6418c6fac\";s:5:\"title\";s:21:\"FacetWP - Flyout menu\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:34:\"/facetwp-flyout/assets/js/front.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:33:\"facetwp-flyout/facetwp-flyout.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"081461cf-dbd0-42f3-9557-10cdc16cf145\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"FiboFilters Premium\";s:9:\"condition\";s:31:\"fibofilters-pro/fibofilters.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:41:\"/fibofilters-pro/build/front-pro/front.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:49:\"Display filter without need for user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:d9f62725f1470d35c3f220645bc2e473\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431277;}s:36:\"f2a5b95f-1a22-46d2-8b72-42a53e46ae3f\";O:8:\"stdClass\":10:{s:5:\"title\";s:40:\"FiboSearch - Ajax Search for WooCommerce\";s:9:\"condition\";s:59:\"ajax-search-for-woocommerce/ajax-search-for-woocommerce.php\";s:10:\"exclusions\";a:4:{i:0;s:32:\"/wp-includes/js/jquery/jquery.js\";i:1;s:40:\"/wp-includes/js/jquery/jquery-migrate.js\";i:2;s:48:\"/ajax-search-for-woocommerce/assets/js/search.js\";i:3;s:52:\"/ajax-search-for-woocommerce/assets/js/search.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:77:\"Avoid search modals moving to the top when adding keyword in the input field.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:5d7555892a3a9968fde3fa3a335fc3d8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1775676297;}s:36:\"7d1404e9-be76-449c-87aa-919557abe82d\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"FlexBlock\";s:9:\"condition\";s:37:\"flo-flex-builder/flo-flex-builder.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:41:\"/flo-flex-builder/dist/flex-public.min.js\";i:2;s:9:\"flexDebug\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:44:\"Fire animations and show images on pageload.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ad46179e8b0584abaf52056b846da227\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431336;}s:36:\"b9c6a2dc-b226-4e2c-b85e-29ee55b8f751\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Fluent Forms\";s:9:\"condition\";s:25:\"fluentform/fluentform.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:29:\"/fluentform/public/js/(.*).js\";i:2;s:32:\"/fluentformpro/public/js/(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:89:\"Fixes files upload field.\r\n\r\n*Requires exlcuding jQuery from JavaScript deferring as well\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:567a2b15db30ef6bd4904e4317139aac\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431366;}s:36:\"10874f8a-2855-4e80-bc46-e484589b76a8\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Flying Images\";s:9:\"condition\";s:27:\"nazy-load/flying-images.php\";s:10:\"exclusions\";a:1:{i:0;s:12:\"flyingImages\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:61:\"Fixes images not being loaded until there is user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e78c153103f698b2b34892332d6b3b62\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431386;}s:36:\"53958499-dacd-41d6-93bc-1534fe7d9eda\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"FooGallery Premium\";s:9:\"condition\";s:33:\"foogallery-premium/foogallery.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:57:\"/plugins/foobox-image-lightbox/free/js/foobox.free.min.js\";i:3;s:88:\"/plugins/foogallery-premium/pro/extensions/default-templates/shared/js/foogallery.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Prevents delay in the loading of product images.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5a0e40a6c5783856893b803189de1404\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431261;}s:36:\"7870d704-2024-4622-838c-fad37d5c6753\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"Formidable Forms\";s:9:\"condition\";s:25:\"formidable/formidable.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:7:\"frmSigs\";i:3;s:45:\"/formidable-signature/js/frm.signature.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:76:\"Prevent the delay of the function and the file that processes the signature.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ebb5efb57b19ae60e734e456ca2df3f8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431311;}s:36:\"3f24f9b3-e59e-400f-a784-999f93f60fab\";O:8:\"stdClass\":10:{s:5:\"title\";s:10:\"Forminator\";s:9:\"condition\";s:25:\"forminator/forminator.php\";s:10:\"exclusions\";a:10:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:15:\"forminatorFront\";i:3;s:42:\"/forminator/build/front/front.multi.min.js\";i:4;s:52:\"/forminator/assets/js/library/jquery.validate.min.js\";i:5;s:58:\"/forminator/assets/forminator-ui/js/forminator-form.min.js\";i:6;s:55:\"/forminator/assets/forminator-ui/js/select2.full.min.js\";i:7;s:43:\"/wp-includes/js/jquery/ui/datepicker.min.js\";i:8;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";i:9;s:49:\"/forminator/assets/js/library/intlTelInput.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:32:\"Display form without interaction\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:0b08523445b8869a67ca40e777704692\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1769789399;}s:36:\"cef612ad-2a33-4e0c-b2d2-0831bb35e682\";O:8:\"stdClass\":10:{s:5:\"title\";s:16:\"Funnelforms Free\";s:9:\"condition\";s:37:\"funnelforms-free/Funnelforms-free.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/funnelforms-free/res/frontend/scripts/frontend.js\";}s:7:\"summary\";s:68:\"When Delay JavaScript Execution is enabled, the Form doesn’t load.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:2cc4ab9bdadb915b68d466b87f5f2934\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1750261265;}s:36:\"2e1a34f6-21cd-46d1-af05-8ba575170f44\";O:8:\"stdClass\":9:{s:5:\"title\";s:58:\"Gallery Slider for WooCommerce - Pro - Fix Product Gallery\";s:9:\"condition\";s:49:\"woo-gallery-slider-pro/woo-gallery-slider-pro.php\";s:10:\"exclusions\";a:6:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:66:\"/woo-gallery-slider-pro/public/js/woo-gallery-slider-public.min.js\";i:2;s:54:\"/woo-gallery-slider-pro/public/js/swiper-bundle.min.js\";i:3;s:45:\"/woo-gallery-slider-pro/public/js/zoom.min.js\";i:4;s:56:\"/woo-gallery-slider-pro/public/js/jquery.fancybox.min.js\";i:5;s:46:\"/woo-gallery-slider-pro/public/js/video.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:38:\"Makes the gallery to load at page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:04761f78cbc0a1ed05c65d7e20ddda5b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1732823624;}s:36:\"3a600ded-3454-48fb-9811-46afa2ab3c05\";O:8:\"stdClass\":9:{s:5:\"title\";s:22:\"GDPR Cookie Compliance\";s:9:\"condition\";s:37:\"gdpr-cookie-compliance/moove-gdpr.php\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:44:\"/gdpr-cookie-compliance/dist/scripts/main.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:37:\"Show the consent banner on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5759bf0d47ac3457485314b381a9b528\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431440;}s:36:\"e21aaa5e-7354-471d-ab86-85f99f48830c\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"GDPR Cookie Consent\";s:9:\"condition\";s:49:\"webtoffee-gdpr-cookie-consent/cookie-law-info.php\";s:10:\"exclusions\";a:4:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:36:\"/public/js/cookie-law-info-public.js\";i:3;s:8:\"Cli_Data\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:37:\"Show the consent banner on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ffb40036ab0583218561de7c28c6bd9b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431421;}s:36:\"1f8bdec1-9c4c-4080-8ac0-5f8b49967047\";O:8:\"stdClass\":9:{s:5:\"title\";s:28:\"GetPaid - Fix console errors\";s:9:\"condition\";s:23:\"invoicing/invoicing.php\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:64:\"/invoicing/vendor/ayecode/wp-ayecode-ui/assets/js/select2.min.js\";i:2;s:73:\"/invoicing/vendor/ayecode/wp-ayecode-ui/assets/js/bootstrap.bundle.min.js\";}s:7:\"summary\";s:58:\"It fixes some errors with jQuery in the browser\'s console.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6756935a144cf0a74b252db5f8229ee9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1728404861;}s:36:\"c11ca4ea-1a23-49ee-9a6b-1e549de50ea2\";O:8:\"stdClass\":9:{s:5:\"title\";s:25:\"Getwid - Gutenberg Blocks\";s:9:\"condition\";s:17:\"getwid/getwid.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:37:\"/wp-includes/js/jquery/ui/tabs.min.js\";i:3;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:67:\"Fixes tabs when jQuery is excluded from Delay JavaScript Execution.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3877953c5ec1e66db92ad844ae8ebafc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431639;}s:36:\"79b33eb9-bc92-4d8a-afd8-1c61e70bed8f\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"GiveWP\";s:9:\"condition\";s:13:\"give/give.php\";s:10:\"exclusions\";a:5:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:28:\"/give/assets/dist/js/give.js\";i:2;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:3;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:4;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Closes the preloader.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:0fb3af06fc5c710a670220b054c292c5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431653;}s:36:\"3773bb33-b168-4f68-9963-512da24ac4da\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"GoodLayers Core\";s:9:\"condition\";s:35:\"goodlayers-core/goodlayers-core.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:34:\"/goodlayers-core/plugins/script.js\";i:3;s:43:\"/goodlayers-core/include/js/page-builder.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5f124509a56ca2e0644246919ec70434\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1704734904;}s:36:\"2adabe9b-6e03-4a67-959f-492813d40f69\";O:8:\"stdClass\":9:{s:5:\"title\";s:38:\"Google Tag Manager for WooCommerce PRO\";s:9:\"condition\";s:47:\"gtm-ecommerce-woo-pro/gtm-ecommerce-woo-pro.php\";s:10:\"exclusions\";a:1:{i:0;s:54:\"/gtm-ecommerce-woo-pro/assets/gtm-ecommerce-woo-pro.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Fire tracker on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e54fd4313007b6fedf8ab4df0e05277a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431759;}s:36:\"7bf261ac-89d4-492f-8a3d-1c5809b9579a\";O:8:\"stdClass\":8:{s:5:\"title\";s:13:\"Gravity Forms\";s:9:\"condition\";s:29:\"gravityforms/gravityforms.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:14:\"/gravityforms/\";i:2;s:5:\"gform\";i:3;s:9:\"recaptcha\";i:4;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:5;s:40:\"/wp-includes/js/plupload/plupload.min.js\";i:6;s:37:\"/wp-includes/js/plupload/moxie.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7a1c1606d094f6bff83c0ee155908367\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1694457903;}s:36:\"fbaf4a19-f675-441a-b75c-7fd748a59827\";O:8:\"stdClass\":9:{s:5:\"title\";s:30:\"Gravity Forms Page Transitions\";s:9:\"condition\";s:43:\"gp-page-transitions/gp-page-transitions.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:32:\"/plugins/gp-page-transitions/js/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:96:\"To load the form without interaction - Gravity Forms one-click exclusion should also be checked.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:53ef8d0ee1f9fdf0bbf87676e449eef5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432081;}s:36:\"12340193-5c35-4b0d-b0bc-bea690cf1cae\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Green Forms\";s:9:\"condition\";s:27:\"green-forms/green-forms.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:13:\"leform.min.js\";i:2;s:24:\"leform_customjs_handlers\";i:3;s:15:\"leform_ajax_url\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Load forms without any delay\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:2f3112dd98c39aeb6bde618c9026a29f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432097;}s:36:\"4d20b427-47cf-4cdf-91c7-ff53602d3b2a\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0eb769dddc58f998e913345841b1d0b3\";s:5:\"title\";s:6:\"GTM4WP\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:9:\"dataLayer\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"a2b3c237-728c-49d6-882a-e3885444e9b4\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"GTranslate\";s:9:\"condition\";s:25:\"gtranslate/gtranslate.php\";s:10:\"exclusions\";a:2:{i:0;s:20:\"translate.google.com\";i:1;s:26:\"googleTranslateElementInit\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:68:\"To enable immediate translation on the page without user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3b085ccda851ccf129d9506462f0cd65\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432146;}s:36:\"79dfc946-6b96-4b6d-bcaf-8cae6330581a\";O:8:\"stdClass\":10:{s:5:\"title\";s:48:\"GTranslate - Show language switcher on page load\";s:9:\"condition\";s:25:\"gtranslate/gtranslate.php\";s:10:\"exclusions\";a:3:{i:0;s:25:\"window.gtranslateSettings\";i:1;s:21:\"/gtranslate/js/dwf.js\";i:2;s:23:\"/gtranslate/js/flags.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:39:\"To show language switcher on page load.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:0aedfaa0f543c47c4b0fcf57307c6691\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1737550549;}s:36:\"40cd9336-e73f-4a61-a7f6-27ec1ca6892c\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"HBook\";s:9:\"condition\";s:15:\"hbook/hbook.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:7:\"/hbook/\";i:3;s:20:\"hb_booking_form_data\";i:4;s:11:\"hb_max_date\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Render the form on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e1f17c1eac230219e6fec3ac07406a0d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432162;}s:36:\"52cec6ac-f2a4-415f-83f4-ca0db789401d\";O:8:\"stdClass\":10:{s:5:\"title\";s:15:\"hCaptcha for WP\";s:9:\"condition\";s:40:\"hcaptcha-for-forms-and-more/hcaptcha.php\";s:10:\"exclusions\";a:5:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:2;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:3;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:4;s:8:\"hcaptcha\";}s:7:\"summary\";s:40:\"Load hcaptcha without error on page load\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:19677c6ace86eadfd1269341071f3481\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1770201198;}s:36:\"192224c7-df72-4e3d-8f13-3206ac5b2e90\";O:8:\"stdClass\":9:{s:5:\"title\";s:37:\"Helper - OpenAI Chatbot for WordPress\";s:9:\"condition\";s:17:\"/helper/index.php\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:24:\"/helper/js/helper.min.js\";i:2;s:9:\"mdpHelper\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:53:\"Allow for chatbot icon load without user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:07311d992a8a9d6af91e4766d2cb9ac9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433592;}s:36:\"99cfbb2e-5678-42c2-928f-5cb09d7e43da\";O:8:\"stdClass\":9:{s:5:\"title\";s:39:\"HUSKY - Products Filter for WooCommerce\";s:9:\"condition\";s:37:\"woocommerce-products-filter/index.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/woocommerce-products-filter/(.*)\";i:3;s:4:\"woof\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:60:\"Avoid console error (no impact on the functionality of WOOF)\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:269c5766fba124a838ac012a4b5a1a13\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432177;}s:36:\"b98640e1-c483-4032-99fe-4fa96093d261\";O:8:\"stdClass\":10:{s:5:\"title\";s:6:\"Hustle\";s:9:\"condition\";s:27:\"wordpress-popup/popover.php\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:33:\"/wp-includes/js/underscore.min.js\";i:2;s:36:\"/wp-content/plugins/wordpress-popup/\";}s:7:\"summary\";s:67:\"When Delay JavaScript Execution is enabled, the Popup doesn\'t load.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:d9fc141690ff6b022b7f15b533daac7f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1759750548;}s:36:\"3a964eac-4aeb-49a7-9fd6-4c31b2645dee\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:d457acfec0f86aac6733f1446f4fc94f\";s:5:\"title\";s:18:\"Instagram Feed Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:41:\"/instagram-feed-pro/js/sbi-scripts.min.js\";i:3;s:23:\"sb_instagram_js_options\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"instagram-feed-pro/instagram-feed.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"8f9f4788-1b8d-468b-b291-1fcbd48618b9\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:513b0c0ec8e12130af9b4bbbb17d7275\";s:5:\"title\";s:20:\"Interactive Geo Maps\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:66:\"/interactive-geo-maps-premium/assets/public/map-service/app.min.js\";i:3;s:54:\"/interactive-geo-maps/assets/public/map-service/app.js\";i:4;s:9:\"iMapsData\";i:5;s:21:\"cdn.amcharts.com/lib/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:45:\"interactive-geo-maps/interactive-geo-maps.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"cf650ca3-afa0-4a13-9e4f-f7cca19abac6\";O:8:\"stdClass\":8:{s:5:\"title\";s:12:\"Ivory Search\";s:9:\"condition\";s:41:\"add-search-to-menu/add-search-to-menu.php\";s:10:\"exclusions\";a:2:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:49:\"/add-search-to-menu/public/js/ivory-search.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7430e9d2c985ae0a3339a7b7e1acc318\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677852711;}s:36:\"17a5dd54-1f5e-4d57-a56d-a8a970651954\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"JetBlocks\";s:9:\"condition\";s:25:\"jet-blocks/jet-blocks.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/jet-blocks/assets/js/jet-blocks.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:68:\"Enable dropdown on hover on the Cart and enable Mobile Sticky Header\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1c8a1e1ba89a601f88654f094139b469\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432217;}s:36:\"b6f78c90-9823-459a-8dc1-1257e5f0d4e3\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"JetBlog\";s:9:\"condition\";s:21:\"jet-blog/jet-blog.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:15:\"/elementor-pro/\";i:3;s:11:\"/elementor/\";i:4;s:10:\"/jet-blog/\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:18:\"hasJetBlogPlaylist\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:74:\"News ticker to work on pageload (in addition to any other Jet exclusions).\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:dac9ec782180f33d0fcc7c4e0e569b9d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432242;}s:36:\"e17173d8-6ef8-4e27-ba0f-379c9aea7eda\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"JetElements\";s:9:\"condition\";s:29:\"jet-elements/jet-elements.php\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:14:\"/jet-elements/\";i:7;s:18:\"hasJetBlogPlaylist\";i:8;s:11:\"jetElements\";i:9;s:26:\"/wp-includes/js/jquery/ui/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:30:\"Load JetElements on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:0fe8895d1da5247b73a5d0b482df4ac4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432253;}s:36:\"cfd77501-9c9e-4f11-b994-0178a592fc08\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"JetEngine\";s:9:\"condition\";s:25:\"jet-engine/jet-engine.php\";s:10:\"exclusions\";a:1:{i:0;s:12:\"/jet-engine/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:bc998e71546860c8c7f70c45a6c18972\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1686208296;}s:36:\"f320c661-4a2b-4299-bada-110f9e931e3c\";O:8:\"stdClass\":9:{s:5:\"title\";s:41:\"JetFormBuilder - Load without interaction\";s:9:\"condition\";s:35:\"jetformbuilder/jet-form-builder.php\";s:10:\"exclusions\";a:11:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:16:\"/jetformbuilder/\";i:2;s:26:\"var JetFormBuilderSettings\";i:3;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:4;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:5;s:27:\"/jet-plugins/jet-plugins.js\";i:6;s:11:\"/elementor/\";i:7;s:15:\"/elementor-pro/\";i:8;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:9;s:26:\"ElementorProFrontendConfig\";i:10;s:23:\"elementorFrontendConfig\";}s:7:\"summary\";s:75:\"The form is loaded without interaction, and styles are applied immediately.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5ad00a39ed79f888daca19429bc59989\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1730300985;}s:36:\"36fed829-a2d9-41b5-94f6-2c3b9f07a94e\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"JetMenu\";s:9:\"condition\";s:21:\"jet-menu/jet-menu.php\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:15:\"/elementor-pro/\";i:3;s:11:\"/elementor/\";i:4;s:42:\"/jet-blog/assets/js/lib/slick/slick.min.js\";i:5;s:14:\"/jet-elements/\";i:6;s:10:\"/jet-menu/\";i:7;s:23:\"elementorFrontendConfig\";i:8;s:26:\"ElementorProFrontendConfig\";i:9;s:18:\"hasJetBlogPlaylist\";i:10;s:17:\"JetEngineSettings\";i:11;s:21:\"jetMenuPublicSettings\";i:12;s:37:\"/jet-reviews/assets/js/lib/vue.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:33:\"Mobile menu to show on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:433a3173f2d06f7d02c7b91c06ed215d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432268;}s:36:\"580cfed7-f034-4e39-bc7a-cdd01923ce87\";O:8:\"stdClass\":10:{s:5:\"title\";s:8:\"JetPopup\";s:9:\"condition\";s:23:\"jet-popup/jet-popup.php\";s:10:\"exclusions\";a:6:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:46:\"/jet-popup/assets/js/lib/anime-js/anime.min.js\";i:2;s:42:\"/jet-popup/assets/js/jet-popup-frontend.js\";i:3;s:17:\"/jet-woo-builder/\";i:4;s:16:\"var jetPopupData\";i:5;s:19:\"JetEngine.popupData\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:18:\"To show the pop up\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:51714cfdb43f231a1c93e7cffb1007ab\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1755872236;}s:36:\"d9cd2730-12e2-42d7-a082-6f0efcd466cc\";O:8:\"stdClass\":10:{s:5:\"title\";s:17:\"JetProductGallery\";s:9:\"condition\";s:51:\"jet-woo-product-gallery/jet-woo-product-gallery.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:56:\"/jet-woo-product-gallery/assets/lib/swiper/swiper.min.js\";i:3;s:65:\"/jet-woo-product-gallery/assets/js/jet-woo-product-gallery.min.js\";i:4;s:9:\"JetSwiper\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:60:\"To avoid issues with the product gallery on the product page\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:df3bc4b6a8a9f28a5ba24cb7496bbc72\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1740662940;}s:36:\"544aa37b-4d52-4182-99e8-abe23585da14\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"JetReviews\";s:9:\"condition\";s:27:\"jet-reviews/jet-reviews.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:46:\"/jet-reviews/assets/js/jet-reviews-frontend.js\";i:3;s:37:\"/jet-reviews/assets/js/lib/vue.min.js\";i:4;s:16:\"jetReviewsWidget\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:39:\"To show the reviews on the product page\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5921fc95965ac7fccb7296957bd9abff\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432349;}s:36:\"963c7804-eede-4570-bd63-67066588b758\";O:8:\"stdClass\":9:{s:5:\"title\";s:32:\"JetSearch - Search results popup\";s:9:\"condition\";s:25:\"jet-search/jet-search.php\";s:10:\"exclusions\";a:4:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/jet-search/assets/lib/chosen/chosen.jquery.min.js\";i:2;s:35:\"/jet-search/assets/js/jet-search.js\";i:3;s:49:\"/jet-search/assets/lib/jet-plugins/jet-plugins.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:57:\"To display the list of results when using the search box.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:13e8760379022187de982df2226a5be4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432367;}s:36:\"a8460089-34b4-4f8f-8694-5d92fa48aa82\";O:8:\"stdClass\":10:{s:5:\"title\";s:15:\"JetSmartFilters\";s:9:\"condition\";s:39:\"jet-smart-filters/jet-smart-filters.php\";s:10:\"exclusions\";a:5:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:38:\"/jet-smart-filters/assets/js/public.js\";i:2;s:26:\"jet-smart-filters-js-extra\";i:3;s:49:\"/jet-engine/assets/lib/jet-plugins/jet-plugins.js\";i:4;s:23:\"jetOffcanvasInitialized\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:98:\"When Delay JavaScript Execution is enabled, the right filters doesn\'t load until user interaction.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:0cd63a514de1f1acb88e2bde65c4bc8d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1756996542;}s:36:\"fe3c4915-6f8b-49b7-aa9c-c97b264d9f12\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"JetSticky\";s:9:\"condition\";s:51:\"jetsticky-for-elementor/jetsticky-for-elementor.php\";s:10:\"exclusions\";a:1:{i:0;s:25:\"/jetsticky-for-elementor/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:46:\"Allows sticky menu and sidebar to be displayed\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:a346b60514ef52afeffc6e2ef2793da3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432399;}s:36:\"853479dc-fff5-47cf-9a60-bf9b00f71fc4\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"JetTabs for Elementor\";s:9:\"condition\";s:21:\"jet-tabs/jet-tabs.php\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:11:\"/elementor/\";i:2;s:15:\"/elementor-pro/\";i:3;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:63:\"/wp-content/plugins/jet-tabs/assets/js/jet-tabs-frontend.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:45:\"To make the tab functionality work correctly.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:d887a6ffea25d759e8aecdb6b78917f7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432416;}s:36:\"b7f89562-230c-4f63-8360-7aad6df31e02\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"JetTricks\";s:9:\"condition\";s:25:\"jet-tricks/jet-tricks.php\";s:10:\"exclusions\";a:1:{i:0;s:12:\"/jet-tricks/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:22:\"To display animations.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:829272546b040d5aaeeeaf976b6cd4ec\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432431;}s:36:\"90451e2a-553a-4496-9fa4-cffedbe69d43\";O:8:\"stdClass\":9:{s:5:\"title\";s:28:\"JetWoo Widgets For Elementor\";s:9:\"condition\";s:35:\"jet-woo-builder/jet-woo-builder.php\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:58:\"/jetwoo-widgets-for-elementor/assets/js/jet-woo-widgets.js\";i:7;s:49:\"/jet-woo-builder/assets/js/jet-woo-builder.min.js\";i:8;s:42:\"/jet-woo-builder/assets/js/frontend.min.js\";i:9;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:34:\"Load JetWoo carousel on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f44f3dbd09149f57db370e4132b057db\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432447;}s:36:\"944718c2-48c6-4f53-aaa2-460d07e033cc\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"JetWooBuilder\";s:9:\"condition\";s:35:\"jet-woo-builder/jet-woo-builder.php\";s:10:\"exclusions\";a:11:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:3;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:4;s:15:\"/elementor-pro/\";i:5;s:11:\"/elementor/\";i:6;s:23:\"elementorFrontendConfig\";i:7;s:26:\"ElementorProFrontendConfig\";i:8;s:17:\"JetEngineSettings\";i:9;s:17:\"/jet-woo-builder/\";i:10;s:65:\"/jet-woo-builder-custom-quantity-selectors-main/assets/js/main.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:36:\"Add quantity buttons to add to cart.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ed318a971f8a047bed5b02ad546a9c18\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432462;}s:36:\"b7807939-54f8-4d5c-8363-a42a154d9592\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"Joinchat\";s:9:\"condition\";s:31:\"creame-whatsapp-me/joinchat.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:45:\"/creame-whatsapp-me/public/js/joinchat.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:131:\"When Delay JavaScript Execution is enabled, the icon to open new chat does not display for mobile unless we apply these exclusions.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1c3ec728d37052f3a3055d415618342f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1727103514;}s:36:\"8cdeadfc-f686-4c58-bf01-8d6ad43dfef8\";O:8:\"stdClass\":10:{s:5:\"title\";s:33:\"Kadence Blocks Pro - Load Content\";s:9:\"condition\";s:41:\"kadence-blocks-pro/kadence-blocks-pro.php\";s:10:\"exclusions\";a:1:{i:0;s:57:\"/plugins/kadence-blocks-pro/includes/assets/js/aos.min.js\";}s:7:\"summary\";s:97:\"When Delay JavaScript Execution is enabled, the page content doesn\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:ea96ffb0858920541f6a6144f7d2289f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1754052401;}s:36:\"46d50db6-61ae-4703-aeaa-39f12a46f872\";O:8:\"stdClass\":10:{s:5:\"title\";s:14:\"Kadence Slider\";s:9:\"condition\";s:33:\"kadence-slider/kadence-slider.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:41:\"/plugins/kadence-slider/js/min/ksp-min.js\";}s:7:\"summary\";s:89:\"When Delay JavaScript Execution is enabled, the slides don\'t show until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:6a6b1a4de6dc21770d6d044b7dd7a2e4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1759413099;}s:36:\"f5b62f59-1dae-4cdf-ac3f-f5e846fc9918\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:9562e253cd4ac2b1e1f70e32cb4e32dc\";s:5:\"title\";s:12:\"Layer Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:62:\"/LayerSlider/assets/static/layerslider/js/layerslider.utils.js\";i:3;s:77:\"/LayerSlider/assets/static/layerslider/js/layerslider.kreaturamedia.jquery.js\";i:4;s:68:\"/LayerSlider/assets/static/layerslider/js/layerslider.transitions.js\";i:5;s:15:\"initLayerSlider\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"LayerSlider/layerslider.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"e2be718d-83a2-4fa0-bc98-f0df52be3dc1\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"LoftLoader Pro\";s:9:\"condition\";s:33:\"loftloader-pro/loftloader-pro.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"loftloader.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:101:\"Prevent the page from getting stuck in the loader and load the page content without user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1425e2735306796fe1539d9184a77e10\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432664;}s:36:\"cfa18552-656e-453c-9e14-c07522dc6598\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"MailUp for WordPress\";s:9:\"condition\";s:56:\"mailup-email-and-newsletter-subscription-form/mailup.php\";s:10:\"exclusions\";a:2:{i:0;s:73:\"/mailup-email-and-newsletter-subscription-form/public/js/mailup-public.js\";i:1;s:15:\"mailup-js-extra\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:41:\"Enables subscription from to be submitted\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:0bf67b8ba84771e1a367fe24590ef09c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433004;}s:36:\"c5330c66-ba7b-45b1-87e4-ce590ab005dd\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Maintenance\";s:9:\"condition\";s:27:\"maintenance/maintenance.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:13:\"/maintenance/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Removes the preload spinner without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:10d0de28911c5f66463b9c8783f8148a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433020;}s:36:\"62f6663a-a15f-4bca-b9b5-79f1770e2c5a\";O:8:\"stdClass\":9:{s:5:\"title\";s:33:\"MapifyLite- Show map on page load\";s:9:\"condition\";s:26:\"mapifylite/mapify_lite.php\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:58:\"/plugins/mapifylite/assets/vendor/leaflet-1.7.1/leaflet.js\";i:2;s:80:\"/plugins/mapifylite/assets/vendor/leaflet/markercluster/leaflet.markercluster.js\";i:3;s:79:\"/plugins/mapifylite/assets/vendor/leaflet/locatecontrol/L.Control.Locate.min.js\";i:4;s:44:\"/plugins/mapifylite/assets/vendor/tooltip.js\";i:5;s:44:\"/plugins/mapifylite/assets/js/dist/bundle.js\";i:6;s:7:\"var map\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Load map on pageload.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:48c30c0f37b64accf88126d4ef58e17b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432876;}s:36:\"267aef71-afa0-4848-b6f8-3e1ca15c3a23\";O:8:\"stdClass\":9:{s:5:\"title\";s:15:\"Maps Marker Pro\";s:9:\"condition\";s:35:\"maps-marker-pro/maps-marker-pro.php\";s:10:\"exclusions\";a:2:{i:0;s:36:\"/maps-marker-pro/js/mapsmarkerpro.js\";i:1;s:17:\"var mapsMarkerPro\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Load map on pageload.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:9460789bdfe77425c895f130991a4cb4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432891;}s:36:\"b5a88b63-e906-49b3-8134-420139915ea6\";O:8:\"stdClass\":8:{s:5:\"title\";s:13:\"Master Popups\";s:9:\"condition\";s:31:\"master-popups/master-popups.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:65:\"/plugins/master-popups/assets/public/js/master-popups-libs.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:8fd7bd2c8b0a33e62798573abd12be63\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681305305;}s:36:\"4be41549-bf4d-4c49-8346-0f8a3b88fdba\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Master Slider\";s:9:\"condition\";s:31:\"master-slider/master-slider.php\";s:10:\"exclusions\";a:1:{i:0;s:12:\"masterslider\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:45:\"Prevents Master Slider to be initially hidden\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:de888634cc4bd51576eed319d5a528fd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432981;}s:36:\"087bee18-7cd1-4c10-8acc-19e1b7c4f4cd\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Max Mega Menu\";s:9:\"condition\";s:21:\"megamenu/megamenu.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:34:\"/wp-includes/js/hoverIntent.min.js\";i:3;s:27:\"/megamenu/js/maxmegamenu.js\";i:4;s:12:\"var megamenu\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:92:\"For the Pro version this file may need to be excluded too:\r\n\r\n/megamenu-pro/assets/public.js\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b71309a89bf3c8b558b6fca5d6531919\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433045;}s:36:\"cf22f0b9-01f4-409e-8a93-ad6743095abd\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Meta Slider\";s:9:\"condition\";s:23:\"ml-slider/ml-slider.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/ml-slider/\";i:3;s:14:\"var metaslider\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Shows the slider on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:94a7bae84ef2816494be4af66c577bfc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433102;}s:36:\"beb2e088-1354-42db-b803-13e725e8916c\";O:8:\"stdClass\":10:{s:5:\"title\";s:7:\"MetForm\";s:9:\"condition\";s:19:\"metform/metform.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:32:\"/metform/public/assets/js/htm.js\";i:2;s:32:\"/metform/public/assets/js/app.js\";i:3;s:44:\"/wp-includes/js/dist/vendor/react-dom.min.js\";i:4;s:40:\"/wp-includes/js/dist/vendor/react.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Allows the form to load without user interaction\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:0aa559d4482eb485c12cd1ad71418523\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1774038905;}s:36:\"bb2cbc0d-20da-415e-8218-c17f1db53579\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Monarch\";s:9:\"condition\";s:19:\"monarch/monarch.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:22:\"dt-place-monarch-icons\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b7335d6d6d5c5134ea10ac2d9b04226c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677853476;}s:36:\"a98d6a80-4610-4ede-bd33-c3e15bed0a95\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:4f8651262425ef6d7c223c68a2ec2063\";s:5:\"title\";s:16:\"Monster Insights\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:13:\"__gtagTracker\";i:1;s:24:\"monsterinsights_frontend\";i:2;s:62:\"/google-analytics-for-wordpress/assets/js/frontend-gtag.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"26e1a36e-7a03-449e-8ecc-e42c41ca291c\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Motion.page\";s:9:\"condition\";s:25:\"motionpage/motionpage.php\";s:10:\"exclusions\";a:4:{i:0;s:40:\"/motionpage/core/includes/assets/js/(.*)\";i:1;s:45:\"/motionpage/core/includes/assets/js/gsap/(.*)\";i:2;s:26:\"/motionpage/assets/js/(.*)\";i:3;s:31:\"/motionpage/assets/js/gsap/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:43:\"Fixes any issue with Motion.page animations\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f8fc66b302dec2327bdec0434a3b275b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433236;}s:36:\"459fd663-7f80-45fd-8308-d3484981e161\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Ninja Forms\";s:9:\"condition\";s:27:\"ninja-forms/ninja-forms.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/wp-includes/js/underscore.min.js\";i:3;s:31:\"/wp-includes/js/backbone.min.js\";i:4;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:5;s:44:\"/ninja-forms/assets/js/min/front-end-deps.js\";i:6;s:39:\"/ninja-forms/assets/js/min/front-end.js\";i:7;s:3:\"nf-\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:25:\"Show the form on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1d3ae9c1a96d5062616968b81eef319d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433463;}s:36:\"c97440dd-7592-40e7-8c98-dac20d39808f\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Ninja Tables\";s:9:\"condition\";s:29:\"ninja-tables/ninja-tables.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:25:\"/ninja-tables(.*)/assets/\";i:3;s:25:\"/ninja-tables(.*)/public/\";i:4;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";i:5;s:21:\"ninja_table_instance_\";i:6;s:13:\"ninja_filter_\";i:7;s:31:\"ninja_table_ready_init_table_id\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Show the table on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:723a588dcd49285ea9f7404e2379b47f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433481;}s:36:\"ebc01f06-8c35-47fa-9c63-8959c5cbd915\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"NotificationX\";s:9:\"condition\";s:31:\"notificationx/notificationx.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/notificationx/assets/public/js/(.*).js\";i:3;s:16:\"notificationXArr\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Show the pop-up notification\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f41a52ab1dd50a81cd3a5e341af0007c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433494;}s:36:\"5fcd4cb7-1916-4995-973e-6d9def619e12\";O:8:\"stdClass\":10:{s:5:\"title\";s:11:\"Nova Blocks\";s:9:\"condition\";s:27:\"nova-blocks/nova-blocks.php\";s:10:\"exclusions\";a:5:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:25:\"/js/dist/dom-ready.min.js\";i:2;s:10:\"has-loaded\";i:3;s:9:\"wf-active\";i:4;s:11:\"nova-blocks\";}s:7:\"summary\";s:106:\"Allows rendering the layout on page load for themes based on the Nova Blocks framework (Pixelgrade themes)\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:72b8526ce363ca9b7e5d82b245379cbb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1733813516;}s:36:\"3aaf4a1b-591a-48b7-8d60-e6d65c0f94c9\";O:8:\"stdClass\":9:{s:5:\"title\";s:23:\"Ocean Elementor Widgets\";s:9:\"condition\";s:51:\"ocean-elementor-widgets/ocean-elementor-widgets.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:25:\"/ocean-elementor-widgets/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:66:\"Avoid console errors (Elements added with this plugin should work)\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:be8fc72a8b8e8eb5958be13737cff47c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433526;}s:36:\"90bfaf32-fa1d-4b48-bf64-3bf6f2c7c93b\";O:8:\"stdClass\":10:{s:5:\"title\";s:28:\"Ocean Extra - Load Preloader\";s:9:\"condition\";s:27:\"ocean-extra/ocean-extra.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:58:\"/ocean-extra/includes/preloader/assets/js/preloader.min.js\";}s:7:\"summary\";s:92:\"When DJE is enabled, Ocean Extra preloader is not loaded until user interaction on the page.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:1584fd7b07ef3eed359694c0f3046931\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1754297770;}s:36:\"f053a7d3-62b0-4312-b0ca-6ff63380eb0b\";O:8:\"stdClass\":9:{s:5:\"title\";s:23:\"One Click Accessibility\";s:9:\"condition\";s:41:\"pojo-accessibility/pojo-accessibility.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:40:\"/pojo-accessibility/assets/js/app.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:50:\"Allow One Click Accessibility to work on all pages\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1a14afe852fefe7b22ccad3893672a29\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433541;}s:36:\"61e11800-48a9-4354-8a4c-ac9a2b4b033a\";O:8:\"stdClass\":9:{s:5:\"title\";s:30:\"OoohBoi Steroids for Elementor\";s:9:\"condition\";s:51:\"ooohboi-steroids-for-elementor/ooohboi-steroids.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:32:\"/ooohboi-steroids-for-elementor/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:37:\"Display OohhBoi elements on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b9ed0fe6f2cdbd305691a6b857f4b3dc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433511;}s:36:\"560b78a2-f051-490b-9dc6-a602dece0d81\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"Optimole\";s:9:\"condition\";s:27:\"optimole-wp/optimole-wp.php\";s:10:\"exclusions\";a:1:{i:0;s:12:\"optimoleData\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:65:\"To fire excluded JavaScript files served through the Optimole CDN\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f1ff18a3e04c4e0995fca9cabffe57a7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433610;}s:36:\"b0fda458-4bf2-41e9-a159-60d4bb6102a6\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"OSM - OpenStreetMap\";s:9:\"condition\";s:11:\"osm/osm.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/osm/js/OL/\";i:3;s:28:\"/osm/js/osm-v3-plugin-lib.js\";i:4;s:7:\"vectorM\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:41:\"Display the map and avoid console errors.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:48ec18bd3f59772d98f85dddab75e305\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433624;}s:36:\"3743ed67-e0d1-4243-bb1f-ee48a445dd10\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"OxyExtras\";s:9:\"condition\";s:20:\"oxyextras/plugin.php\";s:10:\"exclusions\";a:2:{i:0;s:4:\"vime\";i:1;s:11:\"vime.esm.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"When using Pro Media Player\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:9eacf0b76484af0259cd788f4923f20c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433698;}s:36:\"52a21e27-af5b-4476-8d6d-54c323fd1443\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Oxygen Builder\";s:9:\"condition\";s:20:\"oxygen/functions.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:38:\"/component-framework/vendor/aos/aos.js\";i:3;s:8:\"AOS.init\";i:4;s:20:\"oxygen_init_pro_menu\";i:5;s:26:\"oxy-pro-menu-show-dropdown\";i:6;s:17:\"oxy-shape-divider\";i:7;s:21:\"oxygenVSBInitToggleJs\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:153:\"When using the \"Pro Menu\" element.\r\nPrevents incorrect positioning of the Shape Divider on page load\r\nAllow tabs toggles to be closed when the page loads\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e852555c4b4789d78a96d76f503b3262\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433680;}s:36:\"ebd282b9-e175-4b83-90a2-fe12389ccd11\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:6f9419e58ec86c94e7698aaaaf9dc715\";s:5:\"title\";s:21:\"PageLoader by Bonfire\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/pageloader-by-bonfire/pageloader.js\";i:3;s:26:\"bonfire-pageloader-overlay\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:47:\"pageloader-by-bonfire/pageloader-by-bonfire.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"0baf6353-aa70-41a9-a3bc-d89870a5839b\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"PDF Embedder\";s:9:\"condition\";s:29:\"pdf-embedder/pdf_embedder.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:24:\"/pdf-embedder/js/(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:158:\"Load the PDF\'s without user interaction.\r\nPlease note that if Defer Javascript Execution is enabled, you also need to exclude these files from being deferred.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3a4c4518eb0f60108ab4934fab27d335\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433747;}s:36:\"cba51ec1-87cc-44eb-b12b-d652e3446507\";O:8:\"stdClass\":9:{s:5:\"title\";s:30:\"Perfect Brands for WooCommerce\";s:9:\"condition\";s:57:\"perfect-woocommerce-brands/perfect-woocommerce-brands.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:57:\"/perfect-woocommerce-brands/assets/lib/slick/slick.min.js\";i:3;s:63:\"/perfect-woocommerce-brands/assets/js/functions-frontend.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Show the slider on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:4f90aca5957cccbf623e3bbc31afa204\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433762;}s:36:\"808e7a4e-025c-4fae-bf82-de3716e5eb0d\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"Photonic\";s:9:\"condition\";s:21:\"photonic/photonic.php\";s:10:\"exclusions\";a:1:{i:0;s:65:\"/photonic/include/js/front-end/module/photonic-baguettebox.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:45:\"Display the gallery without user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:84fe214646388d7c021dda25003ac165\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434241;}s:36:\"936aff7d-a8ac-4473-a7b5-4b1611b6c557\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Pixel Caffein\";s:9:\"condition\";s:33:\"pixel-caffeine/pixel-caffeine.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:33:\"/pixel-caffeine/build/frontend.js\";i:2;s:10:\"aepc_pixel\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Fire the tracker on pageload.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6838be282f853f71be282783cb1c162b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434253;}s:36:\"ab3a4ef5-2732-4b46-a7c3-17b4e9405cd1\";O:8:\"stdClass\":9:{s:5:\"title\";s:29:\"Pixel Manager for WooCommerce\";s:9:\"condition\";s:59:\"woocommerce-pixel-manager-pro/woocommerce-pixel-manager.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:41:\"/woocommerce-pixel-manager-pro/js/public/\";i:2;s:3:\"wpm\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Fire the tracker on pageload.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:afe0eb7c64d4556a7111c56dd8c4d307\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434270;}s:36:\"2774f964-50b2-425e-8a30-0a02f421b7e4\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Popup Builder\";s:9:\"condition\";s:31:\"popup-builder/popup-builder.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:32:\"/popup-builder/public/js/(.*).js\";i:3;s:57:\"/popupbuilder-exit-intent/public/javascript/ExitIntent.js\";i:4;s:17:\"var sgpbPublicUrl\";i:5;s:17:\"SGPB_POPUP_PARAMS\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:18:\"Show popup on exit\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:38d4b2986868f543639cd1ebc3e510aa\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433776;}s:36:\"82dbb1e5-31f9-43d7-b522-52819aa49ba5\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Popup Maker\";s:9:\"condition\";s:27:\"popup-maker/popup-maker.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:3;s:24:\"/pum/pum-site-scripts.js\";i:4;s:3:\"pum\";i:5;s:42:\"/plugins/popup-maker/assets/js/site.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:23:\"Show popup on one click\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:786717922362642f34a7ff58e919bd95\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433839;}s:36:\"48e08305-1f1c-4ef4-9f13-24af1b155abc\";O:8:\"stdClass\":9:{s:5:\"title\";s:30:\"PowerPack Addons for Elementor\";s:9:\"condition\";s:57:\"powerpack-lite-for-elementor/powerpack-lite-elementor.php\";s:10:\"exclusions\";a:1:{i:0;s:59:\"/powerpack-lite-for-elementor/assets/js/min/frontend.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:15:\"Show animations\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:17831cbb64e469c7f66224c8c63d0a58\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433893;}s:36:\"e037ae2f-e36b-4f1a-ada8-eb8fde6746f2\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Preloader Plus\";s:9:\"condition\";s:33:\"preloader-plus/preloader-plus.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:20:\"/preloader-plus/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:70:\"Prevents the preloader from being stuck until there\'s user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:80e1283ea1afead3ca904fad792643c5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434032;}s:36:\"90fed478-e89a-455c-8371-836bee58fb81\";O:8:\"stdClass\":10:{s:5:\"title\";s:28:\"Premium Addons for Elementor\";s:9:\"condition\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:74:\"/premium-addons-for-elementor/assets/frontend/min-js/premium-addons.min.js\";i:3;s:67:\"/premium-addons-for-elementor/assets/frontend/min-js/isotope.min.js\";i:4;s:49:\"/premium-addons-elementor/pa-frontend-(.*).min.js\";i:5;s:65:\"/premium-addons-for-elementor/assets/frontend/min-js/slick.min.js\";i:6;s:61:\"/premium-addons-pro/assets/frontend/min-js/tooltipster.min.js\";i:7;s:19:\"window.scopes_array\";i:8;s:13:\"lottie.min.js\";i:9;s:76:\"/premium-addons-for-elementor/assets/frontend/min-js/premium-nav-menu.min.js\";i:10;s:65:\"/premium-addons-for-elementor/assets/frontend/min-js/typed.min.js\";i:11;s:60:\"/premium-addons-pro/assets/frontend/min-js/imgcompare.min.js\";i:12;s:60:\"/premium-addons-pro/assets/frontend/min-js/event-move.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:231:\"The above will cover:\r\n\r\n- Make equal height work\r\n- Make filters work\r\n- Make lottie animations work\r\n- Make the testimonials\' carousel work\r\n- Allow Animated Text to load without User interaction\r\n- Allow Image comparison to show\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:debbfbbcbdf9ffb465bbc40008d99f02\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1744729898;}s:36:\"24bb14b1-f934-4f9d-adbd-4e186e0a0ecd\";O:8:\"stdClass\":10:{s:5:\"title\";s:18:\"Premium Addons PRO\";s:9:\"condition\";s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:63:\"/premium-addons-pro/assets/frontend/min-js/premium-badge.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"- Allow Global badges to show\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:c7220a8a2a42faf4072977c623bc88c7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1744729892;}s:36:\"7e43c261-77be-48fc-b25a-8953a654ae85\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Presto Player\";s:9:\"condition\";s:31:\"presto-player/presto-player.php\";s:10:\"exclusions\";a:7:{i:0;s:54:\"/wp-includes/js/dist/vendor/regenerator-runtime.min.js\";i:1;s:67:\"/presto-player/dist/components/web-components/web-components.esm.js\";i:2;s:42:\"/presto-player/src/player/player-static.js\";i:3;s:10:\"var player\";i:4;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:5;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:6;s:32:\"/wp-includes/js/dist/i18n.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Load the video player\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:100a0382fcf3d1b6b22da928bce46ea8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434113;}s:36:\"3d6f509f-d040-4279-9a2f-a4e6eae1e9df\";O:8:\"stdClass\":9:{s:5:\"title\";s:42:\"Price Based on Country for WooCommerce Pro\";s:9:\"condition\";s:87:\"woocommerce-price-based-country-pro-addon/woocommerce-price-based-country-pro-addon.php\";s:10:\"exclusions\";a:4:{i:0;s:79:\"/woocommerce-product-price-based-on-countries/assets/js/ajax-geolocation.min.js\";i:1;s:77:\"/woocommerce-price-based-country-pro-addon/assets/js/currency-switcher.min.js\";i:2;s:18:\"add-to-cart.min.js\";i:3;s:21:\"cart-fragments.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:60:\"To load the prices and currency switcher without interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:c0fce700121492b566517e68301db382\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434128;}s:36:\"b970bc8a-bcbe-4d08-8ac0-a6853ab3f036\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Prime Slider\";s:9:\"condition\";s:52:\"bdthemes-prime-slider-lite/bdthemes-prime-slider.php\";s:10:\"exclusions\";a:1:{i:0;s:62:\"/plugins/bdthemes-prime-slider-lite/assets/js/bdt-uikit.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:34:\"Display slider without interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f1ecfe258440b371124999ca3bfbfff3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434141;}s:36:\"e5458963-f167-4b68-88e4-77dd39af2842\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"PRO Elements\";s:9:\"condition\";s:29:\"pro-elements/pro-elements.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/pro-elements/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:69:\"Fixes functions execution when the jQuery library is already excluded\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:29ea8f4dd72f5a5c5927917fb0665a05\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434176;}s:36:\"b119ad72-f498-4576-bb71-9e6d8c37b68f\";O:8:\"stdClass\":10:{s:5:\"title\";s:39:\"Product Filter by WBW (for WooCommerce)\";s:9:\"condition\";s:41:\"woo-product-filter/woo-product-filter.php\";s:10:\"exclusions\";a:8:{i:0;s:55:\"/jquery-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:55:\"/jquery-migrate(.*)(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:2;s:83:\"/wp-content/plugins/woo-product-filter/modules/woofilters/js/frontend.woofilters.js\";i:3;s:38:\"/woofilters/js/frontend.multiselect.js\";i:4;s:38:\"/wp-includes/js/jquery/ui/mouse.min.js\";i:5;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:6;s:39:\"/wp-includes/js/jquery/ui/slider.min.js\";i:7;s:13:\"opened closed\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:136:\"Resolves issue where the product filter won\'t load on the page, there\'s a \'loading\' gif stuck in its place, and there\'s a console error.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:e57ad91e0d94fab011353af544873743\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1743105367;}s:36:\"7b779aca-e497-4da3-8e51-fa12837d15ab\";O:8:\"stdClass\":9:{s:5:\"title\";s:31:\"Product Filters for WooCommerce\";s:9:\"condition\";s:59:\"woocommerce-product-filters/woocommerce-product-filters.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/woocommerce-product-filters/\";i:3;s:51:\"/woocommerce/assets/js/accounting/accounting.min.js\";i:4;s:26:\"/wp-includes/js/jquery/ui/\";i:5;s:17:\"wcpf-load-project\";i:6;s:8:\"WCPFData\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Make the filters work\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:719469f1c977f7109d3d6ee21ecd5a16\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434226;}s:36:\"2b2a51f2-bd47-4591-92d8-4a690bce5d99\";O:8:\"stdClass\":9:{s:5:\"title\";s:38:\"Product Gallery Slider for WooCommerce\";s:9:\"condition\";s:15:\"twist/twist.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/twist/assets/js/slick.min.js\";i:3;s:20:\"wpgs-public-js-after\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Show the slider on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:a898898b2b0ea2cd82e20a6d3a3aa47b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434162;}s:36:\"badb569e-f821-4f90-b2c7-69c286c1bda5\";O:8:\"stdClass\":10:{s:5:\"title\";s:72:\"Product Gallery Slider for WooCommerce By Codeixer - Fix Product Gallery\";s:9:\"condition\";s:57:\"woo-product-gallery-slider/woo-product-gallery-slider.php\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/woo-product-gallery-slider/assets/js/slick.min.js\";i:2;s:45:\"/woo-product-gallery-slider/assets/js/wpgs.js\";}s:7:\"summary\";s:33:\"Show Product Gallery on page load\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:d7fe72709580a4c9b3d23e482485ed0d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1746519887;}s:36:\"9b63d036-595f-477b-918e-049121c29765\";O:8:\"stdClass\":10:{s:5:\"title\";s:30:\"Product Slider for WooCommerce\";s:9:\"condition\";s:27:\"woo-product-slider/main.php\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:56:\"/woo-product-slider/src/Frontend/assets/js/swiper.min.js\";i:2;s:57:\"/woo-product-slider/src/Frontend/assets/js/scripts.min.js\";}s:7:\"summary\";s:98:\"When Delay JavaScript Execution is enabled, the product sliders don\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:e8da84c8281e41723851607361a77a92\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1738076099;}s:36:\"062c5be3-e5ea-4958-9619-44e3410f237e\";O:8:\"stdClass\":10:{s:5:\"title\";s:37:\"Product Video Gallery for Woocommerce\";s:9:\"condition\";s:93:\"product-video-gallery-slider-for-woocommerce/product-video-gallery-slider-for-woocommerce.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:70:\"/product-video-gallery-slider-for-woocommerce/public/js/nickx.front.js\";i:3;s:76:\"/product-video-gallery-slider-for-woocommerce/public/js/swiper-bundle.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:173:\"When Delay JavaScript Execution is enabled, the video gallery slider doesn\'t work until user interaction - images don\'t slide and thumbs appear much larger than they should.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:bbc653a91f0635cd2edb0b741aa62b85\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1767792522;}s:36:\"34d225a4-688c-476b-846b-420774160d6b\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:e0b123d324c6fc85b8682660c34f8829\";s:5:\"title\";s:13:\"Rank Math SEO\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:1:{i:0;s:11:\"local_ga_js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:30:\"seo-by-rank-math/rank-math.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"02305ca0-2c2a-4eef-a802-b8a942771ecc\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"Retainful\";s:9:\"condition\";s:91:\"retainful-next-order-coupon-for-woocommerce/retainful-next-order-coupon-for-woocommerce.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:83:\"/retainful-next-order-coupon-for-woocommerce/src/premium/assets/js/atc-popup.min.js\";i:3;s:87:\"/retainful-next-order-coupon-for-woocommerce/src/premium/assets/js/exit-intent-popup.js\";i:4;s:13:\"retainful.com\";i:5;s:26:\"rnoc-add-to-cart-js-before\";i:6;s:26:\"rnoc_redirect_coupon_popup\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:15:\"Show the pop-up\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f9fdee19ba6aed961d96d86e1521a761\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434370;}s:36:\"b4055250-5813-400f-b663-d390fee989e4\";O:8:\"stdClass\":10:{s:5:\"title\";s:17:\"Revolution Slider\";s:9:\"condition\";s:23:\"revslider/revslider.php\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:28:\"/revslider/public/assets/js/\";i:3;s:25:\"/revslider/sr6/assets/js/\";i:4;s:22:\"/revslider-(.*)-addon/\";i:5;s:15:\"setREVStartSize\";i:6;s:11:\"rev_slider_\";i:7;s:10:\"revslider_\";i:8;s:17:\"window.RS_MODULES\";i:9;s:36:\"/revslider/public/js/libs/tptools.js\";i:10;s:27:\"/revslider/public/js/sr7.js\";i:11;s:3:\"SR7\";i:12;s:21:\"_tpt.R.fonts.domFonts\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Show the slider on page load\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:d6a4d07d1b4022d886df52322dcd8a6f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1770043380;}s:36:\"0b4e061a-b366-4d5a-a00e-bded4b107133\";O:8:\"stdClass\":10:{s:5:\"title\";s:22:\"Royal Elementor Addons\";s:9:\"condition\";s:37:\"royal-elementor-addons/wpr-addons.php\";s:10:\"exclusions\";a:5:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:49:\"/royal-elementor-addons/assets/js/frontend.min.js\";i:2;s:62:\"/royal-elementor-addons/assets/js/lib/jarallax/jarallax.min.js\";i:3;s:62:\"/royal-elementor-addons/assets/js/lib/parallax/parallax.min.js\";i:4;s:56:\"/royal-elementor-addons/assets/js/lib/slick/slick.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Fixes mobile menu not opening\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:c4b464373716d7ac8e3cfb019aaa6102\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1778531519;}s:36:\"1b19ec89-171a-4f85-8c4b-b1bcfc6b1433\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5e3f85d8c82cc184b945415d1a862601\";s:5:\"title\";s:18:\"Sassy Social Share\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:58:\"/sassy-social-share/public/js/sassy-social-share-public.js\";i:3;s:19:\"heateorSssLoadEvent\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"sassy-social-share/sassy-social-share.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"f5899925-2ab7-43b6-abc4-51b76d664ca6\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Scrollsequence\";s:9:\"condition\";s:41:\"scrollsequence-pro/scrollsequence-pro.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:51:\"/scrollsequence-pro/public/js/gsap__premium_only.js\";i:3;s:65:\"/scrollsequence-pro/public/js/gsap-scrolltrigger__premium_only.js\";i:4;s:54:\"/scrollsequence-pro/public/js/ssq-lib__premium_only.js\";i:5;s:27:\"scrollsequence-input-script\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:37:\"Show images and animation on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3df51830b6b80668fc342c8dcea495cf\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434606;}s:36:\"043827fc-3df8-45d6-9cd2-14fbe962987a\";O:8:\"stdClass\":9:{s:5:\"title\";s:37:\"ShiftNav Pro - Responsive Mobile Menu\";s:9:\"condition\";s:25:\"shiftnav-pro/shiftnav.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/shiftnav-pro/assets/js/shiftnav(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Displays without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:9d60b5d2de4d828b78c7b088024377d6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434657;}s:36:\"bcbaf240-e76f-4620-b7d5-4852c46d4be7\";O:8:\"stdClass\":9:{s:5:\"title\";s:35:\"ShiftNav – Responsive Mobile Menu\";s:9:\"condition\";s:67:\"shiftnav-responsive-mobile-menu/shiftnav-responsive-mobile-menu.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/shiftnav-responsive-mobile-menu/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Displays without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:56279bd768c8f27ad1972b6774738bcf\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434651;}s:36:\"bbe0543b-b5af-467b-a90d-e2975d892d8d\";O:8:\"stdClass\":8:{s:5:\"title\";s:26:\"Short Pixel Adaptive Image\";s:9:\"condition\";s:45:\"shortpixel-adaptive-images/short-pixel-ai.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:51:\"/shortpixel-adaptive-images/assets/js/ai(.*).min.js\";i:3;s:13:\"spai_settings\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:1bc7ac87d8ab2301a1b904919dc7a798\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1704734942;}s:36:\"543ab43a-6bd3-4948-a09e-3b95e7c9209d\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Showcase IDX\";s:9:\"condition\";s:28:\"showcase-idx/showcaseidx.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:4:\"SIDX\";i:3;s:37:\"search.showcaseidx.com/js/app-(.*).js\";i:4;s:17:\"cdn.shortpixel.ai\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:172:\"Prevents requiring double click on iOS to use filters.\r\n\r\nExclusion when the option New AI engine is enabled (You don\'t need the above, only this one):\r\n\r\ncdn.shortpixel.ai\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ce4dea8ddc3caa8d00e95cec3202d32a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434768;}s:36:\"a16bcab7-1169-46b9-a425-b091478d8312\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"Side Cart WooCommerce\";s:9:\"condition\";s:38:\"side-cart-woocommerce/xoo-wsc-main.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:61:\"/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:3;s:58:\"/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js\";i:4;s:67:\"/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js\";i:5;s:57:\"/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:47:\"Makes cart icon work to slide in the cart menu.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3ea7d9f75ad03620b0bce2517bd5b8d1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434681;}s:36:\"521f748e-cf09-4019-bd28-b52daef5f16f\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Simple Banner\";s:9:\"condition\";s:31:\"simple-banner/simple-banner.php\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:15:\"/simple-banner/\";i:2;s:24:\"simpleBannerScriptParams\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Show the banner on pageload.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7843983bf90dbae16c6e889382c71b23\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434695;}s:36:\"76026e82-d9cf-482c-b480-55c57693a184\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"Site Kit by Google\";s:9:\"condition\";s:35:\"google-site-kit/google-site-kit.php\";s:10:\"exclusions\";a:6:{i:0;s:33:\"google-analytics.com/analytics.js\";i:1;s:6:\"ga\\( \'\";i:2;s:5:\"ga\\(\'\";i:3;s:8:\"/gtag/js\";i:4;s:6:\"gtag\\(\";i:5;s:7:\"/gtm.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:35:\"Fixes issues with Google Analytics.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b6825f971d35a5515d095564a2e40936\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434707;}s:36:\"4f9be7dd-fa19-401c-a5a5-81654990f9c4\";O:8:\"stdClass\":9:{s:5:\"title\";s:39:\"SiteOrigin Widgets Bundle - Load images\";s:9:\"condition\";s:39:\"so-widgets-bundle/so-widgets-bundle.php\";s:10:\"exclusions\";a:9:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:49:\"/so-widgets-bundle/js/slider/jquery.slider.min.js\";i:2;s:41:\"/so-widgets-bundle/js/jquery.cycle.min.js\";i:3;s:47:\"/so-widgets-bundle/js/jquery.cycle.swipe.min.js\";i:4;s:47:\"/so-widgets-bundle/js/sow.jquery.fittext.min.js\";i:5;s:47:\"/so-widgets-bundle/js/lib/jquery.fitvids.min.js\";i:6;s:36:\"/siteorigin-panels/js/styling.min.js\";i:7;s:27:\"siteorigin-panels-before-js\";i:8;s:7:\"page_id\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:33:\"Load the images on the page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3968480c93d7f92ed1cb78a54b47fc9f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434720;}s:36:\"79c458d7-f7f7-4072-919d-ad337bde6ae3\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Slick Menu\";s:9:\"condition\";s:25:\"slick-menu/slick-menu.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:12:\"/slick-menu/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:21:\"Show menu on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:5ce5dfecdc9d3292c69a1413bbd17d3c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434809;}s:36:\"99cf4942-49ea-4687-b156-405ed1ce1cfa\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Slide Anything\";s:9:\"condition\";s:33:\"slide-anything/slide-anything.php\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:48:\"/slide-anything/owl-carousel/owl.carousel.min.js\";i:2;s:16:\"owl_goto.trigger\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:36:\"Show slider without user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:fff874cc48b80940210228c975df395c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434788;}s:36:\"dd0ea584-0c99-4c30-b46d-da35b94c9f0a\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"Slider by Soliloquy\";s:9:\"condition\";s:33:\"soliloquy-lite/soliloquy-lite.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"soliloquy-min.js\";i:3;s:16:\"soliloquy_slider\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Show the slider on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ffb5f8cc0ea17886dbd05f601ca3eec0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434937;}s:36:\"20efe964-7ba6-411e-98eb-f2f9bc75dd5a\";O:8:\"stdClass\":10:{s:5:\"title\";s:17:\"Slider Revolution\";s:9:\"condition\";s:31:\"slider-revolution/revslider.php\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:28:\"/revslider/public/assets/js/\";i:3;s:25:\"/revslider/sr6/assets/js/\";i:4;s:22:\"/revslider-(.*)-addon/\";i:5;s:15:\"setREVStartSize\";i:6;s:11:\"rev_slider_\";i:7;s:10:\"revslider_\";i:8;s:17:\"window.RS_MODULES\";i:9;s:44:\"/slider-revolution/public/js/libs/tptools.js\";i:10;s:35:\"/slider-revolution/public/js/sr7.js\";i:11;s:3:\"SR7\";i:12;s:21:\"_tpt.R.fonts.domFonts\";}s:7:\"summary\";s:422:\"- Load Slider without user interaction\r\n- For new Slider Revolution version, the /revslider/public/js/libs/tptools.js and /revslider/public/js/sr7.js were updated to: /slider-revolution/public/js/sr7.js and /slider-revolution/public/js/libs/tptools.js. \r\n- The plugin slug was also updated from revslider/revslider.php to slider-revolution/revslider.php.\r\n- This backend entry is to allow compatiblity for the new version.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:41ff48dde3715a47d1ee63fdac32cc4a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1770042676;}s:36:\"ecb2fffc-d289-4f68-ae94-71131f17deee\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Smart Slider 3\";s:9:\"condition\";s:33:\"smart-slider-3/smart-slider-3.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:23:\"/smart-slider-3/(.*).js\";i:3;s:3:\"_N2\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Show the slider on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:2f373822dceb191c31c8ad2183d51869\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434826;}s:36:\"284ede43-bf80-419e-8414-46c26cb746f0\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"Smart Slider 3 Pro\";s:9:\"condition\";s:55:\"nextend-smart-slider3-pro/nextend-smart-slider3-pro.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:21:\"/SmartSlider3/(.*).js\";i:3;s:3:\"_N2\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Show the slider on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:720ec9fbbd8a52ce525959a68a5310b3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434836;}s:36:\"4f3a2a29-eb96-42b5-a6ba-38442123d077\";O:8:\"stdClass\":10:{s:5:\"title\";s:16:\"Spectra - Lottie\";s:9:\"condition\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:10:\"exclusions\";a:6:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:54:\"/ultimate-addons-for-gutenberg/assets/js/lottie.min.js\";i:2;s:62:\"/ultimate-addons-for-gutenberg/assets/js/uagb-bodymovin.min.js\";i:3;s:65:\"/ultimate-addons-for-gutenberg/assets/js/table-of-contents.min.js\";i:4;s:52:\"/ultimate-addons-for-gutenberg/assets/js/tabs.min.js\";i:5;s:10:\"UAGBLottie\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:78:\"When Delay JavaScript Execution is enabled, the Lottie animation doesn\'t load.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:138e02cf173082dfff34d8d50b5b1b5f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1755608389;}s:36:\"be70034f-def5-4771-9b3f-662eb218da2a\";O:8:\"stdClass\":10:{s:5:\"title\";s:29:\"Spectra - Show Gallery Images\";s:9:\"condition\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:66:\"/ultimate-addons-for-gutenberg/assets/js/spectra-animations.min.js\";i:2;s:52:\"/ultimate-addons-for-gutenberg/assets/js/post.min.js\";i:3;s:51:\"/ultimate-addons-for-gutenberg/assets/js/aos.min.js\";i:4;s:13:\"/slick.min.js\";i:5;s:20:\"/imagesloaded.min.js\";i:6;s:16:\"UAGBPostCarousel\";}s:7:\"summary\";s:28:\"Show the gallery on pageload\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:ca362d462a44a9622dd8542db373d3d6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1738865101;}s:36:\"5ed91dc6-b172-4d45-8406-71689bdb1fef\";O:8:\"stdClass\":10:{s:5:\"title\";s:16:\"Spectra - Slider\";s:9:\"condition\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:10:\"exclusions\";a:4:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:46:\"/uploads/uag-plugin/assets/(.*)/uag-js-(.*).js\";i:2;s:61:\"/ultimate-addons-for-gutenberg/assets/js/swiper-bundle.min.js\";i:3;s:65:\"/ultimate-addons-for-gutenberg/assets/js/uagb-button-child.min.js\";}s:7:\"summary\";s:99:\"While Delay JavaScript Execution is enabled, sliders only show the first slide and do not autoplay.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:f263043f4ed2c766c758fb139b6d50a0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1738865295;}s:36:\"c3334c29-4160-42df-a1ce-f8aeeaee8668\";O:8:\"stdClass\":8:{s:5:\"title\";s:16:\"Super Socializer\";s:9:\"condition\";s:37:\"super-socializer/super_socializer.php\";s:10:\"exclusions\";a:3:{i:0;s:8:\"theChamp\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:660defe26748470c3a47366cd4012579\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677853633;}s:36:\"f18b4242-fe3f-4e2b-bfc9-ac2fb3939a90\";O:8:\"stdClass\":10:{s:5:\"title\";s:13:\"Superfly Menu\";s:9:\"condition\";s:22:\"superfly-menu/main.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:33:\"/jquery-migrate((.*?)(.min?)?).js\";i:2;s:67:\"/superfly-menu/includes/vendor/looks_awesome/icon_manager/js/md5.js\";i:3;s:68:\"/superfly-menu/includes/vendor/looks_awesome/icon_manager/js/util.js\";i:4;s:31:\"/superfly-menu/js/public.min.js\";i:5;s:34:\"/superfly-menu/js/superfly-menu.js\";i:6;s:20:\"window.SFM_is_mobile\";i:7;s:21:\"var SFM_skew_disabled\";i:8;s:16:\"var SFM_template\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:87:\"When Delay JavaScript Execution is enabled, the menu don\'t load until user interaction.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:ccb15175093bc6c437b78797f0698a7b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1756121213;}s:36:\"1a05c00a-8562-45bc-80e8-987a4574b1c9\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Symplr Ads\";s:9:\"condition\";s:28:\"symplr-ads/symplr-plugin.php\";s:10:\"exclusions\";a:2:{i:0;s:12:\"/symplr-ads/\";i:1;s:14:\"cdns.symplr.de\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:20:\"Loads Ads right away\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3b6d39e28a87e86c4659491e2368ff61\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442756;}s:36:\"858d2d7f-bdac-4d27-ba26-baa9ace96ba4\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"Tabby Responsive Tabs\";s:9:\"condition\";s:47:\"tabby-responsive-tabs/tabby-responsive-tabs.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:34:\"/tabby-responsive-tabs/js/tabby.js\";i:3;s:12:\"RESPONSIVEUI\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:23:\"Load tabs without delay\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7d93008296bb5c7c43d4cba185ed2632\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442869;}s:36:\"caf3b2cc-5a9f-450a-b680-99987b342417\";O:8:\"stdClass\":10:{s:5:\"title\";s:24:\"tagDiv - Product Filters\";s:9:\"condition\";s:17:\"td-woo/td-woo.php\";s:10:\"exclusions\";a:7:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:60:\"/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js\";i:2;s:36:\"/plugins/td-woo/assets/js/tdwLoop.js\";i:3;s:38:\"/plugins/td-woo/assets/js/tdwFilter.js\";i:4;s:40:\"/plugins/td-woo/assets/js/tdwMenuCart.js\";i:5;s:43:\"/plugins/td-woo/assets/js/tdwFiltersList.js\";i:6;s:49:\"tds_more_articles_on_post_pages_distance_from_top\";}s:7:\"summary\";s:87:\"When Delay JavaScript Execution is enabled, the product filters feature won\'t function.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:aae992c4a586cfcfd481d64047480570\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1753968799;}s:36:\"26c21e36-9d91-4395-a1e2-3641c9ddea0b\";O:8:\"stdClass\":10:{s:5:\"title\";s:35:\"tagDiv - Product Variation Switches\";s:9:\"condition\";s:17:\"td-woo/td-woo.php\";s:10:\"exclusions\";a:2:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:60:\"/wp-content/plugins/td-woo/assets/js/tdwVariationSwitches.js\";}s:7:\"summary\";s:74:\"When Delay JavaScript Execution is enabled, product variations don\'t work.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:6cd05d959fa42829c9135ffc13a9d715\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1754079213;}s:36:\"e44a5c93-bb77-4624-a121-d846905137ea\";O:8:\"stdClass\":9:{s:5:\"title\";s:29:\"The Plus Addons for Elementor\";s:9:\"condition\";s:70:\"the-plus-addons-for-elementor-page-builder/theplus_elementor_addon.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:20:\"/theplus-addons/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Start animations on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:2f563bbb7e92363ec3fb2989a1c7dffe\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442902;}s:36:\"2bbac961-b000-4802-ae97-d52472ec6750\";O:8:\"stdClass\":9:{s:5:\"title\";s:37:\"The Plus Addons for Elementor Premium\";s:9:\"condition\";s:51:\"theplus_elementor_addon/theplus_elementor_addon.php\";s:10:\"exclusions\";a:7:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:44:\"/wp-content/plugins/theplus_elementor_addon/\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:34:\"Solve issues with sliders and tabs\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6e127deaaeefbe57ff945b1f9e274518\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442911;}s:36:\"c3b5d7fd-a1e0-4aca-a0b6-405018a37266\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"The Post Grid\";s:9:\"condition\";s:14:\"the-post-grid/\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:13:\"the-post-grid\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:54:\"Makes the content of single post appearing immediately\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:93c3354976453458cf67f8ec0fdfce5a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442928;}s:36:\"666b45e8-749c-4140-bd17-e1cd589e03ee\";O:8:\"stdClass\":10:{s:5:\"title\";s:15:\"ThemeREX Addons\";s:9:\"condition\";s:25:\"trx_addons/trx_addons.php\";s:10:\"exclusions\";a:11:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:32:\"/trx_addons/js/__scripts-full.js\";i:2;s:67:\"/trx_addons/components/cpt/layouts/shortcodes/menu/superfish.min.js\";i:3;s:34:\"/trx_addons/js/trx_addons.utils.js\";i:4;s:47:\"/trx_addons/js/tweenmax/GSAP/3.12.2/gsap.min.js\";i:5;s:78:\"/trx_addons/addons/elementor-widgets/classes/Widgets/NavMenu/assets/NavMenu.js\";i:6;s:92:\"/trx_addons/addons/elementor-widgets/classes/Widgets/Counter/assets/odometer/odometer.min.js\";i:7;s:78:\"/trx_addons/addons/elementor-widgets/classes/Widgets/Counter/assets/Counter.js\";i:8;s:90:\"/trx_addons/addons/elementor-widgets/classes/Widgets/AdvancedTitle/assets/AdvancedTitle.js\";i:9;s:88:\"/trx_addons/addons/elementor-widgets/classes/Widgets/Testimonials/assets/Testimonials.js\";i:10;s:34:\"/trx_addons/js/trx_addons.front.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:130:\"When Delay JavaScript Execution is enabled, Preloader and Popup don\'t work until user interaction. And the menu don\'t work at all.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:b9c418b47c986935a1151ab9b42f8971\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1767882265;}s:36:\"a750cada-eb58-4df4-9966-21c8a69332ba\";O:8:\"stdClass\":10:{s:5:\"title\";s:16:\"Thrive Architect\";s:9:\"condition\";s:45:\"thrive-visual-editor/thrive-visual-editor.php\";s:10:\"exclusions\";a:10:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:30:\"/wp-includes/js/masonry.min.js\";i:2;s:45:\"/thrive-theme/inc/assets/dist/frontend.min.js\";i:3;s:54:\"/thrive-theme/thrive-dashboard/js/dist/frontend.min.js\";i:4;s:59:\"/thrive-visual-editor/editor/js/dist/modules/general.min.js\";i:5;s:57:\"/thrive-visual-editor/editor/js/dist/modules/video.min.js\";i:6;s:56:\"/thrive-visual-editor/editor/js/dist/modules/menu.min.js\";i:7;s:65:\"/thrive-visual-editor/editor/js/dist/modules/pricing-table.min.js\";i:8;s:55:\"/thrive-visual-editor/editor/js/dist/modules/toc.min.js\";i:9;s:67:\"/thrive-visual-editor/editor/js/dist/modules/lead-generation.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:340:\"When Delay JavaScript Execution is enabled, most related scripts do not work.\r\n\r\nThis backend entry existed for some time with the following exclusions (though there was no GH issue or info available about it):\r\n/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\r\n/jquery-migrate(.min)?.js\r\n\r\nhttps://github.com/wp-media/rucss-backend/issues/170\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:75af9efe22c5cc776636266feb55adf1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1741639113;}s:36:\"13714cde-680e-4ca4-8607-c35952d6a5f2\";O:8:\"stdClass\":8:{s:5:\"title\";s:15:\"Thrive Comments\";s:9:\"condition\";s:35:\"thrive-comments/thrive-comments.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/thrive-leads/\";i:3;s:15:\"window.TL_Const\";i:4;s:7:\"var ml=\";i:5;s:27:\"/thrive-comments/assets/js/\";i:6;s:14:\"ThriveComments\";i:7;s:33:\"/wp-includes/js/underscore.min.js\";i:8;s:31:\"/wp-includes/js/backbone.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6a72d06ca2f6a888b0d9d5ea93af2edc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677852974;}s:36:\"aa7ca898-499f-4f04-b419-3de199996969\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Thrive Leads\";s:9:\"condition\";s:29:\"thrive-leads/thrive-leads.php\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/thrive-leads/\";i:3;s:15:\"window.TL_Const\";i:4;s:7:\"var ml=\";i:5;s:27:\"/thrive-comments/assets/js/\";i:6;s:14:\"ThriveComments\";i:7;s:33:\"/wp-includes/js/underscore.min.js\";i:8;s:31:\"/wp-includes/js/backbone.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:55:\"Show the form on pageload & Fix comment box not showing\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b84d82c02cade64ade00712b9c5652aa\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443176;}s:36:\"9eee297a-8241-4ef2-af97-46074bd0898c\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5bb61b0559b0a3fd578315b553451327\";s:5:\"title\";s:19:\"Thrive Quiz Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:2:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:43:\"thrive-quiz-builder/thrive-quiz-builder.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c2f3ec2a-5b09-4845-aa95-84841783fbfc\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:a7f3e5206abff19ca7cf142260181738\";s:5:\"title\";s:16:\"Thrive Ultimatum\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:18:\"/thrive-ultimatum/\";i:3;s:12:\"var TVE_Ult_\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:37:\"thrive-ultimatum/thrive-ultimatum.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"d48b8d2f-e071-4a30-840a-306154a115a0\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Tidio Chat\";s:9:\"condition\";s:34:\"tidio-live-chat/tidio-elements.php\";s:10:\"exclusions\";a:1:{i:0;s:22:\"document.tidioChatCode\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:22:\"Display the chat icon.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:f57be2014b6a489d053f8367fa6c0f9f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442883;}s:36:\"cb6d33ed-7eb4-4ff9-9ad0-7fc54fbecf6f\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c9e0485ec256d4a6a8d92a98c18d76fc\";s:5:\"title\";s:14:\"Toolset Blocks\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:26:\"toolsetCommonEs.fontToHead\";i:3;s:27:\"toolsetCommonEs.styleToHead\";i:4;s:59:\"/toolset-blocks/vendor/toolset/blocks/public/js/frontend.js\";i:5;s:77:\"/toolset-blocks/vendor/toolset/common-es/public/toolset-common-es-frontend.js\";i:6;s:43:\"/toolset-blocks/public/js/views-frontend.js\";i:7;s:33:\"/wp-includes/js/underscore.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:27:\"toolset-blocks/wp-views.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"4bac6350-0925-49fb-904a-372f22fd6baf\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Top Bar Pro\";s:9:\"condition\";s:25:\"topbar-pro/topbar_pro.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:40:\"/plugins/topbar-pro/js/tpbr_front.min.js\";i:3;s:39:\"/plugins/topbar-pro/js/jquery.cookie.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:62:\"To prevent top bar from getting overlapped with other content.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:71beda322b37f7fc7d456822493cb972\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443222;}s:36:\"033486e7-0ddc-4915-a848-31504d00448e\";O:8:\"stdClass\":8:{s:5:\"title\";s:27:\"Twenty20 Image Before-After\";s:9:\"condition\";s:20:\"twenty20/ttwenty.php\";s:10:\"exclusions\";a:4:{i:0;s:27:\"/twenty20/assets/js/(.*).js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";i:3;s:22:\"twentytwenty-container\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:23441bba9d3602bc932d697c7cb8aa1f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677858089;}s:36:\"bef2147e-2d0b-431d-ac29-5e8430c0d809\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Typing Effect\";s:9:\"condition\";s:39:\"animated-typing-effect/typingeffect.php\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/plugins/animated-typing-effect/assets/js/typed.js\";i:2;s:53:\"/plugins/animated-typing-effect/assets/js/typed.fe.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:44:\"Show the animated typing effect on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e4e1a3e63d09a28dcb20577efbcb5a48\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443336;}s:36:\"7675a34d-006e-4672-99d5-a81e1b8e47f9\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"UberMenu\";s:9:\"condition\";s:21:\"ubermenu/ubermenu.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:35:\"/ubermenu/assets/js/ubermenu.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:71:\"To make mobile menu responsive immediately without any user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3d59cc34167a7f8123e66b627148e0b7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443357;}s:36:\"8233178a-e7b3-43ce-b193-bd0d9c960933\";O:8:\"stdClass\":10:{s:5:\"title\";s:29:\"Ultimate Addons for Elementor\";s:9:\"condition\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:10:\"exclusions\";a:18:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:49:\"/ultimate-elementor/assets/lib/slick/slick.min.js\";i:3;s:54:\"/ultimate-elementor/assets/min-js/uael-frontend.min.js\";i:4;s:53:\"/ultimate-elementor/assets/lib/isotope/isotope.min.js\";i:5;s:73:\"/ultimate-elementor/assets/lib/jquery-element-resize/jquery_resize.min.js\";i:6;s:62:\"/ultimate-elementor/assets/lib/fancybox/jquery_fancybox.min.js\";i:7;s:71:\"/ultimate-elementor/assets/lib/justifiedgallery/justifiedgallery.min.js\";i:8;s:51:\"/ultimate-elementor/assets/min-js/uael-posts.min.js\";i:9;s:40:\"/elementor-pro/assets/js/frontend.min.js\";i:10;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:11;s:52:\"/js_composer/assets/js/dist/js_composer_front.min.js\";i:12;s:42:\"/elementor/assets/lib/swiper/swiper.min.js\";i:13;s:44:\"/nasa-core/assets/js/min/jquery.slick.min.js\";i:14;s:11:\"/elementor/\";i:15;s:15:\"/elementor-pro/\";i:16;s:26:\"ElementorProFrontendConfig\";i:17;s:23:\"elementorFrontendConfig\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:57:\"To make header slider be displayed correctly on page load\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:86424c46157c1c7e2e1571055813beee\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1742911351;}s:36:\"dfb47495-8a46-4caa-8c2a-50b02769dcb5\";O:8:\"stdClass\":9:{s:5:\"title\";s:50:\"Ultimate Addons for Elementor - Fancy Text Effects\";s:9:\"condition\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:10:\"exclusions\";a:10:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:11:\"/elementor/\";i:2;s:15:\"/elementor-pro/\";i:3;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:28:\"/happy-elementor-addons-pro/\";i:7;s:43:\"/header-footer-elementor/inc/js/frontend.js\";i:8;s:57:\"/plugins/ultimate-elementor/assets/lib/typed/typed.min.js\";i:9;s:62:\"/plugins/ultimate-elementor/assets/min-js/uael-frontend.min.js\";}s:7:\"summary\";s:95:\"When Delay JavaScript Execution is enabled, the text effects don\'t work until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:031c5b0ea0dce0a98a766aec5617b017\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1732107991;}s:36:\"42f39902-a813-4536-a561-29e2795ac097\";O:8:\"stdClass\":9:{s:5:\"title\";s:43:\"Ultimate Addons for Elementor - Google Maps\";s:9:\"condition\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:10:\"exclusions\";a:19:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:49:\"/ultimate-elementor/assets/lib/slick/slick.min.js\";i:2;s:54:\"/ultimate-elementor/assets/min-js/uael-frontend.min.js\";i:3;s:53:\"/ultimate-elementor/assets/lib/isotope/isotope.min.js\";i:4;s:73:\"/ultimate-elementor/assets/lib/jquery-element-resize/jquery_resize.min.js\";i:5;s:62:\"/ultimate-elementor/assets/lib/fancybox/jquery_fancybox.min.js\";i:6;s:71:\"/ultimate-elementor/assets/lib/justifiedgallery/justifiedgallery.min.js\";i:7;s:40:\"/elementor-pro/assets/js/frontend.min.js\";i:8;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:9;s:52:\"/js_composer/assets/js/dist/js_composer_front.min.js\";i:10;s:42:\"/elementor/assets/lib/swiper/swiper.min.js\";i:11;s:44:\"/nasa-core/assets/js/min/jquery.slick.min.js\";i:12;s:11:\"/elementor/\";i:13;s:15:\"/elementor-pro/\";i:14;s:26:\"ElementorProFrontendConfig\";i:15;s:23:\"elementorFrontendConfig\";i:16;s:48:\"/ultimate-elementor/assets/js/uael-google-map.js\";i:17;s:19:\"maps.googleapis.com\";i:18;s:15:\"maps.google.com\";}s:7:\"summary\";s:44:\"Fixes an issue in which the map doesn\'t work\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:a3256509256803fa8e9ebfedf73c4843\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1732565293;}s:36:\"8bddf484-6c78-4147-a4e6-d3039904e5f6\";O:8:\"stdClass\":9:{s:5:\"title\";s:43:\"Ultimate Addons for Elementor - Mobile Menu\";s:9:\"condition\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:10:\"exclusions\";a:4:{i:0;s:55:\"/jquery-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:55:\"/jquery-migrate(.*)(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:2;s:46:\"/ultimate-elementor/assets/js/uael-nav-menu.js\";i:3;s:54:\"/ultimate-elementor/assets/min-js/uael-nav-menu.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:45:\"To make the mobile menu icon work as expected\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:70cfade3a7adbb54196f6acccc5a176f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443394;}s:36:\"028504f7-b1cd-4318-8a6d-ce186197e89d\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0f0a91f0c454021a5ff9fc25c3ed419f\";s:5:\"title\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:27:\"/Ultimate_VC_Addons/assets/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"5754af3d-a6af-49eb-b731-bdd82f26dc4e\";O:8:\"stdClass\":9:{s:5:\"title\";s:32:\"Ultimate Responsive Image Slider\";s:9:\"condition\";s:69:\"ultimate-responsive-image-slider/ultimate-responsive-image-slider.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"sliderPro\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:47:\"To load the slider without any user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:34db8636812bad84c8aea037c2ddc8c2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443418;}s:36:\"78ae882d-ae31-4179-b677-8893814938c7\";O:8:\"stdClass\":8:{s:5:\"title\";s:49:\"Unlimited Elements for Elementor Premium - Slider\";s:9:\"condition\";s:67:\"unlimited-elements-for-elementor-premium/unlimited-elements-pro.php\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:42:\"/unlimited-elements-for-elementor-premium/\";i:7;s:3:\"uc_\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:17260bc347b8c29bee0010e9ec164184\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683270377;}s:36:\"051cbfbb-7ad2-4f06-a493-3cf423a80904\";O:8:\"stdClass\":9:{s:5:\"title\";s:34:\"Variation Swatches for WooCommerce\";s:9:\"condition\";s:49:\"woo-variation-swatches/woo-variation-swatches.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/jquery/ui/\";i:3;s:24:\"/woo-variation-swatches/\";i:4;s:28:\"/woo-variation-swatches-pro/\";i:5;s:17:\"underscore.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Make some elements to load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:6717ef5673a956bc08ca4a5117065d53\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443437;}s:36:\"6879caba-7224-4eca-bcb2-370785b495ea\";O:8:\"stdClass\":9:{s:5:\"title\";s:30:\"Web Accessibility By accessiBe\";s:9:\"condition\";s:24:\"accessibe/accessiebe.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/accessibe/\";i:3;s:6:\"acsbJS\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:39:\"To preserve the functions of the plugin\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:57597b7683e01892932083413f085134\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443688;}s:36:\"bd6732fe-4c2b-40a1-9035-8464057e2da5\";O:8:\"stdClass\":8:{s:5:\"title\";s:28:\"WooCommerce - Cart Fragments\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:53:\"/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:2;s:49:\"/woocommerce/assets/js/js-cookie/js.cookie.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:201de694c6fc28c8d580a3b2ca484218\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1680937567;}s:36:\"d044900d-07e1-4533-9516-33106efcb259\";O:8:\"stdClass\":8:{s:5:\"title\";s:33:\"WooCommerce - Product description\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:61:\"/plugins/woocommerce/assets/js/frontend/single-product.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:a82644b4c9417ea3a240939a73344700\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679309756;}s:36:\"bff953b1-2213-4666-8112-76a84a3cc207\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"WooCommerce - Product Gallery\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:55:\"/woocommerce/?(.*)/assets/js/zoom/jquery.zoom(.min)?.js\";i:3;s:40:\"/woocommerce/?(.*)/assets/js/photoswipe/\";i:4;s:67:\"/woocommerce/?(.*)/assets/js/flexslider/jquery.flexslider(.min)?.js\";i:5;s:62:\"/woocommerce/?(.*)/assets/js/frontend/single-product(.min)?.js\";i:6;s:24:\"wc_single_product_params\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:7665868ff97c265628f376523a4f9ecc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1686579689;}s:36:\"016e6ddf-c6e7-49ec-bd3f-2585d9e45895\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"WooCommerce - Select2 library\";s:9:\"condition\";s:27:\"woocommerce/woocommerce.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:45:\"/woocommerce/assets/js/select2/select2(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:4bca670bd5d55dd24b17fb0193b0891e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1681459540;}s:36:\"b9b2c6d7-944f-4ae3-ae04-c9e2204b9dab\";O:8:\"stdClass\":9:{s:5:\"title\";s:30:\"WooCommerce Attribute Swatches\";s:9:\"condition\";s:71:\"iconic-woo-attribute-swatches-premium/iconic-woo-attribute-swatches.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:69:\"/iconic-woo-attribute-swatches-premium/assets/frontend/js/main.min.js\";i:3;s:82:\"/iconic-woo-attribute-swatches-premium/assets/vendor/flickity/flickity.pkgd.min.js\";i:4;s:15:\"iconic_was_vars\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:53:\"Makes using attribute swatches not require two clicks\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:9165c768e978d6ad3f696db8c78ccbb2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443452;}s:36:\"4506c5e9-7349-44c9-9967-34370c83facb\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"WooCommerce Bookings\";s:9:\"condition\";s:45:\"woocommerce-bookings/woocommerce-bookings.php\";s:10:\"exclusions\";a:9:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:38:\"/woocommerce-bookings/dist/frontend.js\";i:3;s:32:\"/wp-includes/js/dist/date.min.js\";i:4;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";i:5;s:43:\"/wp-includes/js/jquery/ui/datepicker.min.js\";i:6;s:33:\"/wp-includes/js/underscore.min.js\";i:7;s:59:\"/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js\";i:8;s:33:\"/wp-includes/js/dist/hooks.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:45:\"Make sure the calendar is displayed correctly\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:14dec6d289b9977fa3a74116feecebcc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443469;}s:36:\"d1266110-86a0-4f84-af8e-512714e53010\";O:8:\"stdClass\":10:{s:5:\"title\";s:31:\"WooCommerce Food Menu | Foodify\";s:9:\"condition\";s:31:\"woo-food-menu/woo-food-menu.php\";s:10:\"exclusions\";a:5:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:40:\"/plugins/woo-food-menu/js/ddaccordion.js\";i:2;s:62:\"/plugins/woo-food-menu/magnific-popup/jquery.magnific-popup.js\";i:3;s:32:\"/plugins/woo-food-menu/js/wfm.js\";i:4;s:44:\"/plugins/woo-food-menu/js/jquery.colorbox.js\";}s:7:\"summary\";s:116:\"When Delay JavaScript Execution is enabled, the plus icon for the food items does not appear until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:4b2fb252dd4125dc63a5a849f29b96f0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1765479354;}s:36:\"fec9cd04-c358-45da-a1a8-1668b964016b\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:456f3b849ba3b6647246aca9d7cdaed5\";s:5:\"title\";s:31:\"WooCommerce Product Reviews Pro\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:22:\"wc_product_reviews_pro\";i:3;s:90:\"/woocommerce-product-reviews-pro/assets/js/frontend/wc-product-reviews-pro-frontend.min.js\";i:4;s:57:\"/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:67:\"woocommerce-product-reviews-pro/woocommerce-product-reviews-pro.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"551a9399-627f-4978-9bae-5cc8e0aefc82\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:c8577e74eef3b082fb6403760d53f68c\";s:5:\"title\";s:36:\"WooCommerce TM Extra Product Options\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:10:{i:0;s:58:\"/woocommerce-tm-extra-product-options/assets/js/epo.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";i:3;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:4;s:38:\"/wp-includes/js/jquery/ui/mouse.min.js\";i:5;s:39:\"/wp-includes/js/jquery/ui/slider.min.js\";i:6;s:33:\"/wp-includes/js/underscore.min.js\";i:7;s:30:\"/wp-includes/js/wp-util.min.js\";i:8;s:29:\"/wp-includes/js/dist/hooks.js\";i:9;s:28:\"/wp-includes/js/dist/i18n.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:69:\"woocommerce-tm-extra-product-options/tm-woo-extra-product-options.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"779b8e37-c537-4485-a23d-a5e7477ea965\";O:8:\"stdClass\":10:{s:5:\"title\";s:28:\"WooGallery - Product Gallery\";s:9:\"condition\";s:53:\"gallery-slider-for-woocommerce/woo-gallery-slider.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:74:\"/gallery-slider-for-woocommerce/public/js/woo-gallery-slider-public.min.js\";}s:7:\"summary\";s:98:\"When Delay JavaScript Execution is enabled, the product gallery don\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:1b347b79ee74db1ff3b408370465e520\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1744711266;}s:36:\"3cac4650-6a52-448e-8e48-e99a772a59a2\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"WooLentor\";s:9:\"condition\";s:47:\"woolentor-addons/woolentor_addons_elementor.php\";s:10:\"exclusions\";a:3:{i:0;s:50:\"/woolementor/assets/third-party/slick/slick.min.js\";i:1;s:17:\"/woolentor-addons\";i:2;s:16:\"woolentor_addons\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:41:\"Display the carousel without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:c6e6cab8c80fa3fe57d609f72d2d5c56\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443648;}s:36:\"21af073d-d2ec-4d46-bbda-2c69f87f3f98\";O:8:\"stdClass\":9:{s:5:\"title\";s:31:\"Woolentor - Fix product gallery\";s:9:\"condition\";s:47:\"woolentor-addons/woolentor_addons_elementor.php\";s:10:\"exclusions\";a:4:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:20:\".woolentor-learg-img\";i:2;s:40:\"/woolentor-addons/assets/js/slick.min.js\";i:3;s:48:\"/woolentor-addons-pro/assets/lib/js/tippy.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Display the product gallery without interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:c5315e06dfc353cd57f85a60abe4e320\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443660;}s:36:\"67aeb4cb-1a00-4d10-a00c-34888b4c0dba\";O:8:\"stdClass\":9:{s:5:\"title\";s:25:\"WooThumbs for WooCommerce\";s:9:\"condition\";s:39:\"woothumbs-premium/woothumbs-premium.php\";s:10:\"exclusions\";a:5:{i:0;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:1;s:33:\"/wp-includes/js/underscore.min.js\";i:2;s:31:\"/wp-includes/js/wp-embed.min.js\";i:3;s:30:\"/wp-includes/js/wp-util.min.js\";i:4;s:23:\"/woothumbs-premium/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:51:\"To preserve the display of product variation images\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b97b1d3f627769e1dd8305aa25af993c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443675;}s:36:\"c7a14763-88d0-4344-a6af-e0a8dc5fa8d5\";O:8:\"stdClass\":9:{s:5:\"title\";s:32:\"WordPress Mega Menu – QuadMenu\";s:9:\"condition\";s:21:\"quadmenu/quadmenu.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/quadmenu\";i:3;s:13:\"#private-menu\";i:4;s:12:\"#public-menu\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:25:\"Show the menu on pageload\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:31b9e812a025e5750a6ef0980ee7d2db\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443871;}s:36:\"f699fdbd-84a7-4f24-b729-3e4a4f83a4dd\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"WP Armour\";s:9:\"condition\";s:41:\"wp-armour-extended/wp-armour-extended.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:28:\"/honeypot/includes/js/wpa.js\";i:3;s:39:\"/wp-armour-extended/includes/js/wpae.js\";i:4;s:16:\"wpa_hidden_field\";i:5;s:12:\"wpa_add_test\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:47:\"To prevent marking all product reviews as spam.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:601f8fc7d10cad1c2ec2949c0d9b1651\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443705;}s:36:\"697239fe-74f5-42a4-a504-97ee85bf43ff\";O:8:\"stdClass\":8:{s:5:\"title\";s:19:\"WP Booking Calendar\";s:9:\"condition\";s:25:\"booking/wpdev-booking.php\";s:10:\"exclusions\";a:11:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:58:\"/wp-content/plugins/booking(.*)/_dist/all/_out/wpbc_all.js\";i:2;s:71:\"/wp-content/plugins/booking(.*)/js/datepick/jquery.datepick.wpbc.9.0.js\";i:3;s:56:\"/wp-content/plugins/booking(.*)/js/wpbc_time-selector.js\";i:4;s:52:\"/wp-content/plugins/booking(.*)/assets/libs/tippy.js\";i:5;s:60:\"/wp-content/plugins/booking(.*)/assets/libs/popper/popper.js\";i:6;s:15:\"wpbc_init__head\";i:7;s:13:\"wpbc_url_ajax\";i:8;s:31:\"booking_max_monthes_in_calendar\";i:9;s:25:\"wpbc_define_tippy_popover\";i:10;s:21:\"flex_tl_table_loading\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:fdaf786c076fa0f17eec1e321fee0b3f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1720571754;}s:36:\"6a28aae5-ef91-43fc-8204-92e3a25642b4\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:5728f3b9856dfe37a36ab15b0a637198\";s:5:\"title\";s:10:\"WP Go Maps\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"maps.googleapis.com\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:31:\"wp-google-maps/wpGoogleMaps.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c9b991d1-a653-404b-be85-e276b1814e7d\";O:8:\"stdClass\":10:{s:5:\"title\";s:15:\"WP Go Maps Gold\";s:9:\"condition\";s:43:\"wp-google-maps-gold/wp-google-maps-gold.php\";s:10:\"exclusions\";a:5:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:27:\"maps.google.com/maps/api/js\";i:3;s:30:\"/wp-includes/js/masonry.min.js\";i:4;s:25:\"/wp-google-maps-gold/(.*)\";}s:7:\"summary\";s:73:\"Loads map on page load and fixes map not displayed after user interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:b08baa6d8ba316accee727f2fa23efef\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1765279015;}s:36:\"1f8f9fbf-fbf0-4e3a-b77c-af0fa47e950d\";O:8:\"stdClass\":10:{s:5:\"title\";s:14:\"WP Go Maps Pro\";s:9:\"condition\";s:41:\"wp-google-maps-pro/wp-google-maps-pro.php\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/wp-google-maps(.*)\";i:3;s:19:\"maps.googleapis.com\";i:4;s:4:\"mgl_\";i:5;s:6:\"wpgmza\";}s:7:\"summary\";s:73:\"Loads map on page load and fixes map not displayed after user interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:8dad943d1b93e677e2290b2bc13aa36d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1765278929;}s:36:\"41e4b98c-e63f-4800-a478-02592562322b\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"WP iCal Availability\";s:9:\"condition\";s:45:\"wp-ical-availability/wp-ical-availability.php\";s:10:\"exclusions\";a:4:{i:0;s:41:\"/wp-ical-availability/js/custom-select.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";i:3;s:22:\"/wp-ical-availability/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:85:\"Fixes error when jQuery is already excluded, & Fully render the calendar on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:3735ca768ede98b25795f4cb057ff4ed\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444622;}s:36:\"2b06c5b8-dc32-4bb0-8504-3a9f1c3a1ec0\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"WP MapIt\";s:9:\"condition\";s:21:\"wp-mapit/wp_mapit.php\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:32:\"/wp-mapit/wp_mapit/js/leaflet.js\";i:3;s:42:\"/wp-mapit/wp_mapit/js/wp_mapit_multipin.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Display the map on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ba8d1c7f294a3f5b593556eb3b0bc7d9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443719;}s:36:\"2039eafd-1c11-4e21-a61b-30857f291ae3\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"WP Responsive Menu\";s:9:\"condition\";s:41:\"wp-responsive-menu/wp-responsive-menu.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:24:\"/wp-responsive-menu/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Render the menu on page load\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:927b8bf7806f2d287559b86a0b455a59\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443736;}s:36:\"e06be942-cccd-4b2d-a268-06dc78f0b820\";O:8:\"stdClass\":9:{s:5:\"title\";s:22:\"WP Search with Algolia\";s:9:\"condition\";s:34:\"wp-search-with-algolia/algolia.php\";s:10:\"exclusions\";a:4:{i:0;s:71:\"/wp-search-with-algolia/js/algoliasearch/dist/algoliasearch-lite.umd.js\";i:1;s:53:\"/wp-search-with-algolia/js/autocomplete-noconflict.js\";i:2;s:67:\"/wp-search-with-algolia/js/autocomplete.js/dist/autocomplete.min.js\";i:3;s:11:\"var algolia\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:57:\"Fixes the search function and its related console errors.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:43267e659d599fbb6b42c719b49bb7a7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443749;}s:36:\"4fc2a7ae-b9e6-410e-93cf-e6d1962add6a\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"WP Smart Preloader\";s:9:\"condition\";s:35:\"wp-smart-preloader/wp-preloader.php\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:55:\"/wp-smart-preloader/assets/js/wsp-main-script(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:101:\"Allows the preloader to work without user interaction, and resolves GTMetrix/PageSpeed Insights test.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:4fb90fc73fc2b5d1e37ea2dadfd3cef3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443814;}s:36:\"7ecf40ce-2bcd-412c-bb01-9e71fecf6be8\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"WP Store Locator\";s:9:\"condition\";s:37:\"wp-store-locator/wp-store-locator.php\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:18:\"/wp-store-locator/\";i:3;s:33:\"/wp-includes/js/underscore.min.js\";i:4;s:15:\"maps.google.com\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Show the map on page load.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:d37bb5054a24471ca1675d9ab49d01b0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443828;}s:36:\"7a1d19a2-3a48-40ab-8051-f642fc63ce2d\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"WP Ultimate Post Grid\";s:9:\"condition\";s:47:\"wp-ultimate-post-grid/wp-ultimate-post-grid.php\";s:10:\"exclusions\";a:4:{i:0;s:67:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:37:\"/wp-ultimate-post-grid/dist/public.js\";i:2;s:53:\"/wp-ultimate-post-grid-premium/dist/public-premium.js\";i:3;s:15:\"wpupg_grid_args\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:40:\"Show the dropdown selector/filter option\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:e24341fef49bd64b89682d583218c108\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443858;}s:36:\"76c86163-ddf3-4113-b620-de9d5058f505\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"WPBakery Page Builder\";s:9:\"condition\";s:27:\"js_composer/js_composer.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:52:\"/js_composer/assets/js/dist/js_composer_front.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:79:\"Fire sliders, animations, full-width elements resizing without user interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:517d7d24da9a7072ed389d0fb30374a0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444340;}s:36:\"0b8ff2c0-c3cd-4ec1-b7f5-c7751de6101b\";O:8:\"stdClass\":9:{s:5:\"title\";s:32:\"WPBakery Page Builder - Carousel\";s:9:\"condition\";s:27:\"js_composer/js_composer.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:57:\"/js_composer/assets/lib/vc_carousel/js/vc_carousel.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:40:\"Fire carousels without user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:76336ed3f04df091e669f89d908ef2ed\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444319;}s:36:\"4f5e5b98-c326-4b9f-9ada-3b257862132c\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:1ec7138c950c355e7af60d49c81139fc\";s:5:\"title\";s:12:\"wpDataTables\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/wpdatatables/\";i:3;s:10:\"highcharts\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:29:\"wpdatatables/wpdatatables.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"18be1b8c-0bc4-4a01-abc6-a127aff380c6\";O:8:\"stdClass\":10:{s:5:\"title\";s:7:\"WPForms\";s:9:\"condition\";s:19:\"wpforms/wpforms.php\";s:10:\"exclusions\";a:5:{i:0;s:61:\"/wpforms-offline-forms/assets/js/wpforms-offline-forms.min.js\";i:1;s:30:\"wpforms-offline-forms-js-extra\";i:2;s:20:\"wpformsRecaptchaLoad\";i:3;s:42:\"/wpforms/assets/lib/jquery.validate.min.js\";i:4;s:37:\"/wpforms/assets/js/share/utils.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Prevents issues with redirect to Thank you page.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:c62ca58ea081c1271de8dadfa7daac69\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1742578021;}s:36:\"3ee8683e-e9d2-4c5c-b6f5-13c38827d2a2\";O:8:\"stdClass\":10:{s:5:\"title\";s:29:\"WPForms - Fix telephone field\";s:9:\"condition\";s:19:\"wpforms/wpforms.php\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:67:\"/wpforms/assets/pro/lib/intl-tel-input/module.intl-tel-input.min.js\";i:2;s:42:\"/wpforms/assets/js/frontend/wpforms.min.js\";i:3;s:55:\"/wpforms-signatures/assets/js/wpforms-signatures.min.js\";i:4;s:50:\"/wpforms-signatures/assets/js/signature_pad.min.js\";i:5;s:51:\"/wpforms/assets/pro/js/frontend/fields/phone.min.js\";i:6;s:67:\"/wpforms/assets/pro/lib/intl-tel-input/intlTelInputWithUtils.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:78:\"Fix an issue with the telephone field in which this needs interaction to load.\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:737442051c0ae65ebfbc06316a63c6ce\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1767635598;}s:36:\"138b2894-25d2-47ce-b33d-cbf1256d8f45\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"WPForms - Loader GIF\";s:9:\"condition\";s:19:\"wpforms/wpforms.php\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:71:\"/wpforms-conversational-forms/assets/js/conversational-forms.es5.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:88:\"When Delay JavaScript Execution is enabled, the loader GIF stays until user interaction.\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:03dc6ae2848dd60e1d4f4f86015c22f0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444364;}s:36:\"8a3cacb6-81bd-456a-a1cc-a4025f8e5234\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"plugin:0992ac952c0a05bb35e18b1d5744d346\";s:5:\"title\";s:12:\"WPForms Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:3:{i:0;s:20:\"wpformsRecaptchaLoad\";i:1;s:61:\"/wpforms-offline-forms/assets/js/wpforms-offline-forms.min.js\";i:2;s:30:\"wpforms-offline-forms-js-extra\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:24:\"wpforms-lite/wpforms.php\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"98bbd410-5b01-4244-a8eb-715765180328\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"XL WooCommerce Sales Triggers\";s:9:\"condition\";s:63:\"xl-woocommerce-sales-triggers/xl-woocommerce-sales-triggers.php\";s:10:\"exclusions\";a:3:{i:0;s:61:\"/xl-woocommerce-sales-triggers/assets/js/wcst_combined.min.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:ba9e526ddb0157e69757530c6b18b714\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1677856813;}s:36:\"9d471012-ed59-486b-87ca-d52eb80c29a4\";O:8:\"stdClass\":10:{s:5:\"title\";s:40:\"YayCurrency Pro - Show Currency Switcher\";s:9:\"condition\";s:32:\"yaycurrency-pro/yay-currency.php\";s:10:\"exclusions\";a:2:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:25:\"/plugins/yaycurrency-pro/\";}s:7:\"summary\";s:48:\"Show currency switcher without user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:8cf794ac4ebf3cd651971fe30c75b26d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1742845339;}s:36:\"bf9f9620-dd0e-4e6f-9a45-4eb78a148f42\";O:8:\"stdClass\":9:{s:5:\"title\";s:36:\"YITH WooCommerce Ajax Product Filter\";s:9:\"condition\";s:41:\"yith-woocommerce-ajax-navigation/init.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:71:\"/yith-woocommerce-ajax-navigation/assets/js/yith-wcan-shortcodes.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:53:\"Display product filters on mobile without interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:58663fc781232169e865f6fe7cf1afaa\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444671;}s:36:\"b053279d-e07c-438c-bb3e-3a1f4f5d7c5e\";O:8:\"stdClass\":9:{s:5:\"title\";s:44:\"YITH WooCommerce AJAX Product Filter Premium\";s:9:\"condition\";s:53:\"yith-woocommerce-ajax-product-filter-premium/init.php\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:83:\"/yith-woocommerce-ajax-product-filter-premium/assets/js/yith-wcan-shortcodes.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:53:\"Display product filters on mobile without interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:68b637fd247e40c8e135e4771d739b07\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444677;}s:36:\"866bcd59-0350-4df0-ae42-c6180210d34a\";O:8:\"stdClass\":10:{s:5:\"title\";s:35:\"YITH WooCommerce Gift Cards Premium\";s:9:\"condition\";s:44:\"yith-woocommerce-gift-cards-premium/init.php\";s:10:\"exclusions\";a:6:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:86:\"/wp-content/plugins/yith-woocommerce-gift-cards-premium/assets/js/ywgc-frontend.min.js\";i:2;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:3;s:95:\"/wp-content/plugins/yith-woocommerce-gift-cards-premium/assets/js/jquery-ui-timepicker-addon.js\";i:4;s:43:\"/wp-includes/js/jquery/ui/datepicker.min.js\";i:5;s:72:\"/wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js\";}s:7:\"summary\";s:96:\"When Delay JavaScript is enabled, the single product images do not load without user interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";N;s:2:\"id\";s:39:\"plugin:11615e29ef141b308c70587208059747\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1776163000;}s:36:\"62056165-8bd9-4ff0-b21f-e4ed0ae45fae\";O:8:\"stdClass\":9:{s:5:\"title\";s:35:\"YITH WooCommerce Points and Rewards\";s:9:\"condition\";s:52:\"yith-woocommerce-points-and-rewards-premium/init.php\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:70:\"/yith-woocommerce-points-and-rewards-premium/assets/js/frontend.min.js\";i:2;s:66:\"/woo-variation-swatches-pro/assets/js/add-to-cart-variation.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:55:\"Display rewards points notification without interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:4acc87d4eb72c86cdea76d180b61a098\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444693;}s:36:\"106395a7-bee9-41d9-8bd5-0e8ad84b478e\";O:8:\"stdClass\":10:{s:5:\"title\";s:25:\"YITH WooCommerce Wishlist\";s:9:\"condition\";s:42:\"yith-woocommerce-wishlist-premium/init.php\";s:10:\"exclusions\";a:16:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:85:\"/plugins/yith-woocommerce-wishlist-premium/assets/js/add-to-wishlist-gutenberg.min.js\";i:2;s:93:\"/plugins/yith-woocommerce-wishlist-premium/assets/js/dist/components/add-to-wishlist/index.js\";i:3;s:76:\"/plugins/yith-woocommerce-wishlist-premium/assets/js/jquery.selectBox.min.js\";i:4;s:76:\"/plugins/yith-woocommerce-wishlist-premium/assets/js/jquery.yith-wcwl.min.js\";i:5;s:88:\"/plugins/yith-woocommerce-wishlist-premium/plugin-fw/dist/lapilli-ui/components/index.js\";i:6;s:82:\"/plugins/yith-woocommerce-wishlist-premium/plugin-fw/dist/lapilli-ui/date/index.js\";i:7;s:84:\"/plugins/yith-woocommerce-wishlist-premium/plugin-fw/dist/lapilli-ui/styles/index.js\";i:8;s:44:\"/wp-includes/js/dist/vendor/react-dom.min.js\";i:9;s:40:\"/wp-includes/js/dist/vendor/react.min.js\";i:10;s:41:\"/wp-includes/js/dist/vendor/lodash.min.js\";i:11;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:12;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:13;s:31:\"/wp-includes/js/dist/url.min.js\";i:14;s:39:\"wp\\.apiFetch\\.createRootURLMiddleware\\(\";i:15;s:14:\"window\\.lodash\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:466:\"When Delay JavaScript Execution is enabled, the add to wishlist button does not show or work.\r\n\r\nThis allowed the add to wishlist button work while Load JavaScript Deferred was also enabled, but enabling Load JavaScript Deferred caused some console errors, which were may be resolved using these exclusions:\r\n\r\n\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\r\n/wp-includes/js/dist/date.min.js\r\n/wp-includes/js/dist/vendor/moment.min.js\";s:4:\"type\";s:6:\"plugin\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"plugin:dfc96a6440c1b9f9bdcb5806af7cc2f9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1771882657;}s:36:\"d94dbbf3-bcab-4e47-9fbb-6b3a7cf92787\";O:8:\"stdClass\":8:{s:5:\"title\";s:36:\"Yotpo Social Reviews for Woocommerce\";s:9:\"condition\";s:49:\"yotpo-social-reviews-for-woocommerce/wc_yotpo.php\";s:10:\"exclusions\";a:1:{i:0;s:63:\"/yotpo-social-reviews-for-woocommerce/assets/js/headerScript.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:45ab742b3fccbd04d7bc973c8582be87\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1680686421;}s:36:\"51dccf53-5cc7-4283-9ab1-01d34c6cce22\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Zoho SalesIQ\";s:9:\"condition\";s:22:\"zoho-salesiq/index.php\";s:10:\"exclusions\";a:1:{i:0;s:12:\"zoho.salesiq\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:32:\"Display chat without interaction\";s:4:\"type\";s:6:\"plugin\";s:2:\"id\";s:39:\"plugin:b96c3865575068aac82c973eb3e3c52a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444708;}}s:6:\"themes\";O:8:\"stdClass\":156:{s:36:\"9aeea459-91d3-44b6-8a26-b883dca8b402\";O:8:\"stdClass\":9:{s:5:\"title\";s:43:\"Agensy - Load page without User Interaction\";s:9:\"condition\";s:6:\"agensy\";s:10:\"exclusions\";a:8:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:28:\"/themes/agensy/js/scripts.js\";i:2;s:35:\"/themes/agensy/js/scripts-single.js\";i:3;s:28:\"/themes/agensy/js/wow.min.js\";i:4;s:33:\"/themes/agensy/js/TweenMax.min.js\";i:5;s:31:\"/themes/agensy/js/swiper.min.js\";i:6;s:73:\"/plugins/visualcomposer/assets/lib/bower/isotope/dist/isotope.pkgd.min.js\";i:7;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:35:\"Load page without user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7ab7dfeb0db9c0c74c020be318c2e6d9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724424755;}s:36:\"9c623554-5834-4669-9e96-1b894c1939b2\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"Andaman\";s:9:\"condition\";s:7:\"andaman\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/andaman/assets/js/\";i:3;s:41:\"/wp-andaman-plugins/shortcodes/vc_extend/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:67:\"Unstuck the page loader (only use when jQuery is already excluded).\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:0193ea55fce2ada93b262f2824008c0f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724424778;}s:36:\"7374c5a5-69f8-460f-b44f-dee884a824cd\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Artale\";s:9:\"condition\";s:6:\"artale\";s:10:\"exclusions\";a:6:{i:0;s:40:\"/artale-elementor/assets/js/modulobox.js\";i:1;s:47:\"/artale-elementor/assets/js/artale-elementor.js\";i:2;s:28:\"/artale/js/jquery-stellar.js\";i:3;s:33:\"/artale/js/core/artale-plugins.js\";i:4;s:32:\"/artale/js/core/artale-custom.js\";i:5;s:10:\"var loader\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:62:\"Fixes the page loader (not closing) and display the main menu.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:24cbda63f1b898ade5562ab4ec6d97a5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724424807;}s:36:\"23b01203-2a70-4394-9326-d59824def2d7\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"Ashe Pro Premium\";s:9:\"condition\";s:16:\"ashe-pro-premium\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:18:\"/ashe-pro-premium/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:46:\"Display mobile header without user interaction\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:4791da3cbbd1ed86253a087f0287aeb4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724426464;}s:36:\"03a9cc62-c167-447d-beb2-65c76c96b056\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Astra\";s:9:\"condition\";s:5:\"astra\";s:10:\"exclusions\";a:2:{i:0;s:41:\"/astra/assets/js/minified/frontend.min.js\";i:1;s:29:\"replace\\(/woocommerce-no-js/,\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3cce5f3eaf76e098ba8e28f7bbba3f92\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1712608792;}s:36:\"2a2b54cb-8e1d-49d2-bfca-93eee231e470\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"Astra - Carousel\";s:9:\"condition\";s:5:\"astra\";s:10:\"exclusions\";a:2:{i:0;s:9:\"var astra\";i:1;s:38:\"/astra/assets/js/minified/style.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:13:\"Load carousel\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:72a8d63e59c10bdf512a62b862d143a7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724426844;}s:36:\"ff22ab98-07e0-4faa-8994-4c811410acec\";O:8:\"stdClass\":10:{s:5:\"title\";s:32:\"Astra Pro - Reveal Effect option\";s:9:\"condition\";s:5:\"astra\";s:10:\"exclusions\";a:2:{i:0;s:58:\"/plugins/astra-addon/assets/js/minified/blog-reveal.min.js\";i:1;s:60:\"/plugins/astra-addon/assets/js/minified/reveal-effect.min.js\";}s:7:\"summary\";s:33:\"Show elements without interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:10f23506c0da1886b9594093cbf3463e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1758832506;}s:36:\"7783361f-66fc-4d95-a054-4e9545bb5b48\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Auteur\";s:9:\"condition\";s:13:\"g5plus-auteur\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/g5plus-auteur/assets/js/core.min.js\";i:3;s:30:\"/g5plus-auteur/assets/vendors/\";i:4;s:106:\"/auteur-framework/libs/smart-framework/assets/vendors/perfect-scrollbar/js/perfect-scrollbar.jquery.min.js\";i:5;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Fire the slider on pageload\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:6207fe478e269e7547bda70a46607a49\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427467;}s:36:\"4c618038-8fc7-4d48-8d41-a32da14e5c1e\";O:8:\"stdClass\":8:{s:5:\"title\";s:10:\"AutoTrader\";s:9:\"condition\";s:10:\"autotrader\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/autotrader/(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:046dfeee2b77390c53e0e7f93b6a3792\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679736741;}s:36:\"18f04f23-35a0-4c45-8cb6-a91d57ca1790\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:835da12f43373029659f766920e81b47\";s:5:\"title\";s:44:\"Avada - Animations & mobile-specific actions\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/uploads/fusion-scripts/(.*).js\";i:3;s:18:\"window.off_canvas_\";i:4;s:24:\"/plugins/fusion-builder/\";i:5;s:21:\"/plugins/fusion-core/\";i:6;s:16:\"/Avada/includes/\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:16.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"90135867-1b95-498b-80d6-f5dbf2f6b318\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"Avada - FAQ shortcode\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:41:\"/plugins/fusion-core/js/min/avada-faqs.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:47:\"Displays content created with the FAQ shortcode\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b084708c80d8582546e5430219aa4670\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427150;}s:36:\"d23b5bb1-1d7f-4109-bf69-b20a2be2d337\";O:8:\"stdClass\":9:{s:5:\"title\";s:23:\"Avada - Fusion carousel\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:58:\"/includes/lib/assets/min/js/library/jquery.carouFredSel.js\";i:3;s:54:\"/includes/lib/assets/min/js/general/fusion-carousel.js\";i:4;s:18:\"fusionCarouselVars\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Display carousel on pageload\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:5e7a2248e1a53d9bb27b187deb541248\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427016;}s:36:\"98dfa8c1-e72a-4cef-a0b2-8f0c322490fc\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"Avada - Fusion form\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:52:\"/fusion-builder/assets/js/min/general/fusion-form.js\";i:3;s:59:\"/fusion-builder/assets/js/min/general/fusion-form-logics.js\";i:4;s:44:\"/includes/lib/assets/min/js/library/cssua.js\";i:5;s:45:\"/includes/lib/assets/min/js/general/fusion.js\";i:6;s:48:\"/includes/lib/assets/min/js/library/modernizr.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:25:\"To allow submitting forms\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f16fb109027f4994a7649a8b1663e6f7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427132;}s:36:\"026801fa-af67-47ba-b966-347693f0585f\";O:8:\"stdClass\":9:{s:5:\"title\";s:27:\"Avada - Fusion grid gallery\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:55:\"/fusion-builder/assets/js/min/general/fusion-gallery.js\";i:3;s:51:\"/includes/lib/assets/min/js/library/imagesLoaded.js\";i:4;s:46:\"/includes/lib/assets/min/js/library/isotope.js\";i:5;s:46:\"/includes/lib/assets/min/js/library/packery.js\";i:6;s:48:\"/includes/lib/assets/min/js/library/lazysizes.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:41:\"Display fusion grid gallery without delay\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:33f50696d353d8bd4eb59ff6e8f44c97\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724426998;}s:36:\"c8349314-15a3-481e-973b-e4d936e4420e\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"Avada - Fusion slider\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:42:\"/fusion-core/js/min/avada-fusion-slider.js\";i:3;s:16:\"/Avada/includes/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:35:\"Display fusion slider without delay\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:56fa9993a573540c83eda9c49fae5e3c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724426978;}s:36:\"7a04bc85-0fec-4487-ae05-bb2e5d8d0420\";O:8:\"stdClass\":9:{s:5:\"title\";s:34:\"Avada - Load Portfolio on pageload\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/library/packery.js\";i:3;s:19:\"/library/isotope.js\";i:4;s:24:\"/library/imagesLoaded.js\";i:5;s:27:\"/general/fusion-lightbox.js\";i:6;s:38:\"/fusion-core/js/min/avada-portfolio.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Load Portfolio on pageload\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c3f0ed4d94499b68c77d95db37d1d399\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427228;}s:36:\"55bd510c-78aa-49d5-8304-8be2ee2ab0da\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"Avada - Mobile menu\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/assets/min/js/general/avada-menu.js\";i:3;s:48:\"/includes/lib/assets/min/js/library/modernizr.js\";i:4;s:52:\"/includes/lib/assets/min/js/library/jquery.easing.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:40:\"Load mobile menu scripts without a delay\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2189c1c769d65cfc2182e4822847071b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427273;}s:36:\"ddf00672-c35c-4b68-aeca-925e68bf12b2\";O:8:\"stdClass\":9:{s:5:\"title\";s:17:\"Avada - OffCanvas\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:35:\"/uploads/fusion-scripts/(.*).min.js\";i:3;s:18:\"window.off_canvas_\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Load Off Canvas pop-ups without user interaction\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:97a185f08af70c39c7e221faab0f73eb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427179;}s:36:\"17544cc3-9d3a-4611-bc5d-44d04e2786fa\";O:8:\"stdClass\":8:{s:5:\"title\";s:44:\"Avada - Show the Portfolio grid on page load\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:51:\"/includes/lib/assets/min/js/library/imagesLoaded.js\";i:3;s:46:\"/includes/lib/assets/min/js/library/isotope.js\";i:4;s:48:\"/includes/lib/assets/min/js/library/lazysizes.js\";i:5;s:48:\"/includes/lib/assets/min/js/library/modernizr.js\";i:6;s:46:\"/includes/lib/assets/min/js/library/packery.js\";i:7;s:38:\"/fusion-core/js/min/avada-portfolio.js\";i:8;s:18:\"avadaPortfolioVars\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9d1a9b0c2ca20fca764a82f197b962fd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1696601823;}s:36:\"c6c3347c-14e0-4766-afa5-df33a47f5a5a\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"Avada - Sticky menu\";s:9:\"condition\";s:5:\"Avada\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:42:\"/Avada/assets/min/js/general/avada-menu.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:15:\"Fix sticky menu\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3ff44421b404c5efffa25e78e479e4ea\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427248;}s:36:\"232596c1-6a6a-4fe8-a5c3-a60fa74a9456\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:0d727d80bb132f17c737e55883fe4be0\";s:5:\"title\";s:35:\"Avada - WooCommerce product gallery\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:50:\"/assets/min/js/general/avada-woo-product-images.js\";i:3;s:56:\"/includes/lib/assets/min/js/library/jquery.flexslider.js\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:5:\"Avada\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"95ece7e4-3b19-45e5-aa28-14f833c9afca\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"Avesa\";s:9:\"condition\";s:5:\"avesa\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/avesa/js/main.js\";i:3;s:20:\"/avesa/js/isotope.js\";i:4;s:24:\"/sw_core/js/slick.min.js\";i:5;s:41:\"/avesa/js/bootstrap-datetimepicker.min.js\";i:6;s:26:\"/avesa/js/bootstrap.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:32:\"Display images on product pages.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:aad8bfcc594eec02e3b0d635198dee5e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427449;}s:36:\"88f58a9c-8312-4a4c-8183-b3192eedbe17\";O:8:\"stdClass\":10:{s:5:\"title\";s:34:\"Bambino - Show Header on Page Load\";s:9:\"condition\";s:7:\"bambino\";s:10:\"exclusions\";a:9:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:2;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:3;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:4;s:43:\"/themes/bambino/framework/js/header.misc.js\";i:5;s:75:\"/plugins/bold-page-builder/content_elements/bt_bb_section/bt_bb_elements.js\";i:6;s:71:\"/plugins/bold-page-builder/content_elements_misc/js/content_elements.js\";i:7;s:19:\"maps.googleapis.com\";i:8;s:15:\"maps.google.com\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:496:\"When Delay JavaScript Execution is enabled, the header doesn\'t show until interaction with the page.\r\n\r\nNotes:\r\n\r\n• The Bold Page Builder plugin is made by the same party as the theme and they work closely together\r\n\r\n• Google maps exclusions are included because console errors happen otherwise. It\'s okay to include these exclusions because the Bold Page Builder is applying the code related to Google Maps and related to the error:\r\nhttps://imagizer.imageshack.com/a/img924/1328/UCCTbc.png\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:768bafdd8382fa03d858f585230c3c51\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1744389947;}s:36:\"f2bfe477-4e45-4e52-a7d9-4d0ba3a92258\";O:8:\"stdClass\":9:{s:5:\"title\";s:4:\"Besa\";s:9:\"condition\";s:4:\"besa\";s:10:\"exclusions\";a:2:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:9:\"/besa/js/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:67:\"Trigger animations and makes the mobile menu immediately responsive\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c238e89523c46ca28b08e401f42f6ccc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427619;}s:36:\"bd94908c-8138-4995-986b-47ec66494bdd\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"BeTheme\";s:9:\"condition\";s:7:\"betheme\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:9:\"/betheme/\";i:2;s:3:\"mfn\";i:3;s:37:\"/wp-includes/js/jquery/ui/tabs.min.js\";i:4;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:67:\"Trigger animations and makes the mobile menu immediately responsive\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b99156eb9eeb357c0a70bd3bda6861cc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427590;}s:36:\"190d2f1a-72a6-40ca-b08a-5c7ee7b0a6a5\";O:8:\"stdClass\":9:{s:5:\"title\";s:54:\"Bosa Online Education - Fixes animations and preloader\";s:9:\"condition\";s:21:\"bosa-online-education\";s:10:\"exclusions\";a:6:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:38:\"/bosa/assets/js/jquery.slicknav.min.js\";i:2;s:31:\"/bosa/assets/slick/slick.min.js\";i:3;s:29:\"/bosa/assets/js/navigation.js\";i:4;s:29:\"/bosa/assets/js/custom.min.js\";i:5;s:43:\"/bosa/assets/js/theia-sticky-sidebar.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:57:\"Fix for the loading animation and displaying mobile menu.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:5430bf7b83c83a3687b3b7b437e961b0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427748;}s:36:\"7ae0e798-ea3b-43c6-b741-a46801b6e6ba\";O:8:\"stdClass\":10:{s:5:\"title\";s:21:\"Bricks - Load Content\";s:9:\"condition\";s:6:\"bricks\";s:10:\"exclusions\";a:2:{i:0;s:38:\"/themes/bricks/assets/js/bricks.min.js\";i:1;s:43:\"/themes/bricks/assets/js/libs/splide.min.js\";}s:7:\"summary\";s:137:\"When Delay JavaScript Execution is enabled, videos that should autoplay don\'t play and image carousels don\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:c0d4df9616ecbbeb395b520043817e84\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1755805528;}s:36:\"6fb2b9d7-6ecc-4260-999c-938fbebdbf01\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Bridge\";s:9:\"condition\";s:6:\"bridge\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:27:\"/bridge-creative/bridge/js/\";i:2;s:16:\"/wp-includes/js/\";i:3;s:46:\"/themes/bridge/js/plugins/abstractBaseClass.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:440:\"This was created some time ago and with no notes, so hard to know why it was created.\r\n\r\nIn an update, I needed to add the following exclusion to prevent a console error:\r\n/themes/bridge/js/plugins/abstractBaseClass.js\r\n\r\nIt should be noted that this uses the old regex for excluding jQuery, which appears to accidentally match and exclude over 20 other scripts as well:\r\n\r\nhttps://mega.wp-rocket.me/bridge/\r\nhttps://regex101.com/r/hstZ0q/1\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:de8504b73ea228d0ea9bbce69752092e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1730991059;}s:36:\"1dd63427-b4c9-4596-b952-ac711e3637f9\";O:8:\"stdClass\":9:{s:5:\"title\";s:47:\"Bridge - Load elements without user interaction\";s:9:\"condition\";s:6:\"bridge\";s:10:\"exclusions\";a:18:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:34:\"/wp-includes/js/hoverIntent.min.js\";i:2;s:51:\"/wp-includes/js/mediaelement/wp-mediaelement.min.js\";i:3;s:56:\"/wp-includes/js/mediaelement/mediaelement-migrate.min.js\";i:4;s:59:\"/wp-includes/js/mediaelement/mediaelement-and-player.min.js\";i:5;s:43:\"/wp-content/themes/bridge/js/default.min.js\";i:6;s:39:\"/wp-content/themes/bridge/js/plugins.js\";i:7;s:47:\"/wp-content/themes/bridge/js/default_dynamic.js\";i:8;s:53:\"/wp-content/themes/bridge/js/jquery.touchSwipe.min.js\";i:9;s:45:\"/themes/bridge/js/default_dynamic_callback.js\";i:10;s:42:\"/themes/bridge/js/plugins/doubletaptogo.js\";i:11;s:46:\"/themes/bridge/js/plugins/abstractBaseClass.js\";i:12;s:36:\"/themes/bridge/js/plugins/mixitup.js\";i:13;s:42:\"/themes/bridge/js/plugins/jquery.appear.js\";i:14;s:47:\"/themes/bridge/js/plugins/jquery.prettyPhoto.js\";i:15;s:50:\"/themes/bridge/js/plugins/jquery.flexslider-min.js\";i:16;s:43:\"/themes/bridge/js/plugins/jquery.fitvids.js\";i:17;s:57:\"/themes/bridge/js/plugins/jquery.carouFredSel-(.*).min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:999:\"When Delay JavaScript Execution is enabled, some elements don\'t load without user interaction.\r\n\r\nUpdate: Needed to add some additional exclusions to prevent console errors and allow the mobile menu to work (mobile menu works without any exclusions, but enabling this one-click exclusion caused the menu to not work before these additional exclusions were added):\r\n\r\n/themes/bridge/js/default_dynamic_callback.js\r\n/themes/bridge/js/plugins/doubletaptogo.js\r\n/themes/bridge/js/plugins/abstractBaseClass.js\r\n/themes/bridge/js/plugins/mixitup.js\r\n/themes/bridge/js/plugins/jquery.appear.js\r\n/themes/bridge/js/plugins/jquery.prettyPhoto.js\r\n/themes/bridge/js/plugins/jquery.flexslider-min.js\r\n/themes/bridge/js/plugins/jquery.fitvids.js\r\n/themes/bridge/js/plugins/jquery.carouFredSel-(.*).min.js\r\n/wp-includes/js/hoverIntent.min.js\r\n/wp-includes/js/mediaelement/wp-mediaelement.min.js\r\n/wp-includes/js/mediaelement/mediaelement-migrate.min.js\r\n/wp-includes/js/mediaelement/mediaelement-and-player.min.js\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:ad9b810efd365ad9a27987d2912b94cd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1730991278;}s:36:\"e1afeb67-fd2b-404c-84e3-a6927765d1a3\";O:8:\"stdClass\":10:{s:5:\"title\";s:9:\"BuddyBoss\";s:9:\"condition\";s:15:\"buddyboss-theme\";s:10:\"exclusions\";a:20:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:30:\"/wp-includes/js/masonry.min.js\";i:2;s:33:\"/wp-includes/js/underscore.min.js\";i:3;s:63:\"/plugins/buddyboss-platform/bp-core/js/vendor/magnific-popup.js\";i:4;s:80:\"/plugins/buddyboss-platform/bp-templates/bp-nouveau/js/buddypress-nouveau.min.js\";i:5;s:41:\"/themes/buddyboss-theme/assets/js/main.js\";i:6;s:45:\"/themes/buddyboss-theme/assets/js/main.min.js\";i:7;s:49:\"/themes/buddyboss-theme/assets/js/vendors/menu.js\";i:8;s:59:\"/themes/buddyboss-theme/assets/js/plugins/bb-woocommerce.js\";i:9;s:54:\"/themes/buddyboss-theme/assets/js/plugins/elementor.js\";i:10;s:54:\"/themes/buddyboss-theme/assets/js/plugins/learndash.js\";i:11;s:52:\"/themes/buddyboss-theme/assets/js/vendors/fitvids.js\";i:12;s:58:\"/themes/buddyboss-theme/assets/js/vendors/jssocials.min.js\";i:13;s:59:\"/themes/buddyboss-theme/assets/js/vendors/mousewheel.min.js\";i:14;s:60:\"/themes/buddyboss-theme/assets/js/vendors/panelslider.min.js\";i:15;s:60:\"/themes/buddyboss-theme/assets/js/vendors/progressbar.min.js\";i:16;s:61:\"/themes/buddyboss-theme/assets/js/vendors/select2.full.min.js\";i:17;s:54:\"/themes/buddyboss-theme/assets/js/vendors/slick.min.js\";i:18;s:55:\"/themes/buddyboss-theme/assets/js/vendors/sticky-kit.js\";i:19;s:57:\"/themes/buddyboss-theme/assets/js/vendors/validate.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:193:\"When Delay JavaScript Execution is enabled, content won\'t load until user interaction. \r\n\r\nAlso fixes issue where menu popups don\'t work.\r\n\r\nhttps://github.com/wp-media/rucss-backend/issues/173\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:be1f26c456c46c5089be61f5e4d4428c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1755263118;}s:36:\"65698b6b-85dd-41ef-8fd7-718f1e983dba\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Car Dealer\";s:9:\"condition\";s:9:\"cardealer\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:27:\"/wp-includes/js/jquery/(.*)\";i:3;s:18:\"/cardealer/js/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:34:\"Fix slider and form console errors\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b1111424fff61af8d1e152dcdd6810f6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428045;}s:36:\"3927d724-5a0a-402b-a838-858d30b54ea9\";O:8:\"stdClass\":9:{s:5:\"title\";s:34:\"Cardea - Show Page Content on Load\";s:9:\"condition\";s:9:\"cardea-wp\";s:10:\"exclusions\";a:5:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:28:\"/themes/cardea-wp/js/main.js\";i:2;s:37:\"/themes/cardea-wp/js/jquery.sticky.js\";i:3;s:38:\"/themes/cardea-wp/js/jquery.fitvids.js\";i:4;s:45:\"/themes/cardea-wp/js/jquery.smartmenus.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:25:\"Show content on page load\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d65d1a8303b0c7508278884520e4bec7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428028;}s:36:\"693c7cfe-67a5-462c-b460-7a6c767fcee8\";O:8:\"stdClass\":10:{s:5:\"title\";s:12:\"Charity Help\";s:9:\"condition\";s:12:\"charity-help\";s:10:\"exclusions\";a:8:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:44:\"/wp-content/themes/charity-help/js/custom.js\";i:2;s:65:\"/wp-content/themes/charity-help/mixitup/jquery.prettyPhoto5152.js\";i:3;s:78:\"/wp-content/themes/charity-help/testimonialsrotator/js/jquery.quovolver.min.js\";i:4;s:70:\"/wp-content/themes/charity-help/testimonialsrotator/js/owl.carousel.js\";i:5;s:53:\"/wp-content/themes/charity-help/js/jquery.flexisel.js\";i:6;s:56:\"/wp-content/themes/charity-help/js/jquery.nivo.slider.js\";i:7;s:10:\"nivoSlider\";}s:7:\"summary\";s:122:\"When Delay JavaScript Execution is enabled, the mobile menu stays open and the slider doesn\'t work until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:88b860b4a67fe70a72764c0b3ca85bd3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1774513579;}s:36:\"087fb457-a09d-4140-84bd-c9bc1e8195b7\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"CheerUp\";s:9:\"condition\";s:7:\"cheerup\";s:10:\"exclusions\";a:9:{i:0;s:36:\"/cheerup/js/jquery.sticky-sidebar.js\";i:1;s:32:\"/cheerup/js/object-fit-images.js\";i:2;s:29:\"/cheerup/js/jquery.fitvids.js\";i:3;s:34:\"/cheerup/js/jquery.mfp-lightbox.js\";i:4;s:27:\"/cheerup/js/ie-polyfills.js\";i:5;s:20:\"/cheerup/js/theme.js\";i:6;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:7;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:8;s:36:\"/wp-includes/js/jquery/jquery.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:40:\"Fix an issue with the links in the menu.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:13bcf562f45afb245dc4f76fecfba6d6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428063;}s:36:\"eb86aedb-91e6-480c-b76c-756ac1da41be\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Clover\";s:9:\"condition\";s:12:\"clover-theme\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/clover-theme/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:24:\"Load the hamburger menu.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:89372f3d9321ae09c94488592084da29\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724428083;}s:36:\"6e90b649-5736-497f-9bc6-515900cfea8a\";O:8:\"stdClass\":10:{s:5:\"title\";s:19:\"Divi 4 - Animations\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:21:\"/js/magnific-popup.js\";i:6;s:8:\"var DIVI\";}s:7:\"summary\";s:94:\"When Delay JavaScript Execution is enabled, some content does not load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:f232d8d7c7a5ac7f86040ebad08c295c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773241287;}s:36:\"70916c43-4e02-4932-b6aa-91a1815bc755\";O:8:\"stdClass\":10:{s:5:\"title\";s:25:\"Divi 4 - Background video\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:26:\"/Divi/js/custom.unified.js\";i:3;s:21:\"/js/mediaelement/(.*)\";i:4;s:4:\"mejs\";}s:7:\"summary\";s:34:\"Play video background on page load\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:713fcea72b704a77a2b01e65e3b9b4be\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773241342;}s:36:\"08531785-9818-4e30-903e-564637a2ad7a\";O:8:\"stdClass\":10:{s:5:\"title\";s:23:\"Divi 4 - Counter module\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:26:\"/Divi/js/custom.unified.js\";i:5;s:21:\"/js/magnific-popup.js\";i:6;s:8:\"var DIVI\";i:7;s:71:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/easypiechart.js\";}s:7:\"summary\";s:44:\"Compatibility with the Number Counter module\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:5cde03e83c588cd8c4e7490a2e84a7ef\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773240138;}s:36:\"1d63dd7c-7bc7-4629-b03d-0437e177af32\";O:8:\"stdClass\":10:{s:5:\"title\";s:44:\"Divi 4 - Load Animated Elements on Page Load\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:4:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:23:\"/Divi/js/scripts.min.js\";i:2;s:71:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/easypiechart.js\";i:3;s:69:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/salvattore.js\";}s:7:\"summary\";s:94:\"When Delay JavaScript Execution is enabled, some content does not load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:422470ae1a30f4f0fd99a8f15751ed92\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773240205;}s:36:\"b996762a-84ef-440d-a089-73a187936fbf\";O:8:\"stdClass\":10:{s:5:\"title\";s:20:\"Divi 4 - Mobile menu\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:23:\"/Divi/js/scripts.min.js\";i:3;s:26:\"/Divi/js/custom.unified.js\";}s:7:\"summary\";s:43:\"Avoids a double tap to open the mobile menu\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:8105de36585b460f035e378abaf066ad\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773241393;}s:36:\"ae096e1e-9c36-46ad-a3d1-c26ea507276b\";O:8:\"stdClass\":10:{s:5:\"title\";s:24:\"Divi 4 - Sticky elements\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\".dipi_preloader_wrapper_outer\";i:3;s:23:\"/Divi/js/scripts.min.js\";i:4;s:74:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/sticky-elements.js\";i:5;s:8:\"var DIVI\";}s:7:\"summary\";s:36:\"Enable sticky elements on page load.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:c5dbde7698f50b02f3991975280e1f99\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773241365;}s:36:\"349f31f0-dd10-41d3-b0a4-9c5df64879f8\";O:8:\"stdClass\":10:{s:5:\"title\";s:20:\"Divi 4 - Sticky menu\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:32:\"/js/jquery/jquery-migrate.min.js\";i:2;s:23:\"/Divi/js/scripts.min.js\";i:3;s:73:\"/Divi/includes/builder/feature/dynamic-assets/assets/js/magnific-popup.js\";i:4;s:12:\"jqueryParams\";i:5;s:11:\"firstHeader\";}s:7:\"summary\";s:127:\"Hide sticky menu on page load.\r\n\r\nAvoid white flash when using this trick to prevent Divi\'s own flashing: \r\n\r\nelm.style.display\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:577daf839a4d88bba14d1462db2da031\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773241380;}s:36:\"59563458-5f04-4959-b3e2-53e49e169d67\";O:8:\"stdClass\":10:{s:5:\"title\";s:42:\"Divi 4 - WooCommerce Single Product Images\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:1:{i:0;s:23:\"/Divi/js/scripts.min.js\";}s:7:\"summary\";s:94:\"When Delay JavaScript Execution is enabled, some content does not load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:338556af431f9e85d226bbbf8d635cf1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1773241317;}s:36:\"18e2c257-27fa-48ce-89c9-9684739576a3\";O:8:\"stdClass\":10:{s:5:\"title\";s:20:\"Divi 5 - Mobile Menu\";s:9:\"condition\";s:4:\"Divi\";s:10:\"exclusions\";a:2:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:94:\"/wp-content/themes/Divi/includes/builder-5/visual-builder/build/script-library-interactions.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:114:\"Fix Divi 5 mobile menu pop-up from being opened automatically on page load and only closed until user interaction.\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:98645c5294c310f572fc3e0ae8006800\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1777904118;}s:36:\"6426539e-4e43-4fef-ab5a-3eb7b2a8b057\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"Eikra\";s:9:\"condition\";s:5:\"eikra\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:17:\"/eikra/assets/js/\";i:3;s:8:\"EikraObj\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Fixes preloader not closing.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:55d2581ad975eb6325bc97fc3d3b0cb8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429672;}s:36:\"59020bd6-069f-4f2d-afa2-fbdefa03211c\";O:8:\"stdClass\":9:{s:5:\"title\";s:4:\"Ekko\";s:9:\"condition\";s:4:\"ekko\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:6:\"/ekko/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:41:\"Fixes preloader (blank page) not closing.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2c06f4a1949f8ba4e77042a47674fd9e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724429886;}s:36:\"d82f5cdd-c5d3-4596-94dc-1e25aaff2083\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Elessi\";s:9:\"condition\";s:12:\"elessi-theme\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:44:\"/elessi-theme/assets/js/min/functions.min.js\";i:3;s:39:\"/elessi-theme/assets/js/min/main.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d5d2b7fda7b8a2b5b91d430f7602e230\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737773;}s:36:\"f0587c21-54d0-429d-8efe-18a93dacb18d\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"theme:5fc04cc678cb54567aedb51027933002\";s:5:\"title\";s:6:\"Enfold\";s:4:\"type\";s:5:\"theme\";s:4:\"icon\";s:0:\"\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:41:\"/dynamic_avia/avia-footer-scripts-(.*).js\";i:3;s:18:\"var avia_is_mobile\";}s:10:\"is_default\";i:0;s:9:\"condition\";s:6:\"enfold\";s:10:\"created_at\";i:1676435704;s:10:\"updated_at\";s:27:\"2023-02-15T04:32:17.000000Z\";s:8:\"icon_url\";s:0:\"\";}s:36:\"c93ee1ee-3956-4278-9ee9-1a0968753e86\";O:8:\"stdClass\":8:{s:5:\"title\";s:27:\"Enfold - Fix hamburger menu\";s:9:\"condition\";s:6:\"enfold\";s:10:\"exclusions\";a:5:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:41:\"/enfold/js/avia-snippet-hamburger-menu.js\";i:2;s:18:\"/enfold/js/avia.js\";i:3;s:24:\"/enfold/js/shortcodes.js\";i:4;s:33:\"/enfold/js/waypoints/waypoints.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2b0c22c5169b94c2eabb125d18915246\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1715090218;}s:36:\"cc0550cb-918e-419d-b4f2-1809cf666dbb\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"Enfold - LayerSlider\";s:9:\"condition\";s:6:\"enfold\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"layerslider\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:88:\"Loads the slider without user interaction when using Enfold\'s Layerslider implementation\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:eb759a03d0ca292c948f09d004a2963f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430516;}s:36:\"ec883654-4f63-4fae-a3ef-923dcbc2426d\";O:8:\"stdClass\":8:{s:5:\"title\";s:19:\"Enfold - Shortcodes\";s:9:\"condition\";s:6:\"enfold\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:25:\"/enfold/js/avia(.min)?.js\";i:3;s:31:\"/enfold/js/shortcodes(.min)?.js\";i:4;s:47:\"/enfold/config-templatebuilder/avia-shortcodes/\";i:5;s:32:\"/enfold/js/avia-compat(.min)?.js\";i:6;s:37:\"/enfold/js/waypoints/waypoints.min.js\";i:7;s:31:\"/enfold/js/avia-snippet-(.*).js\";i:8;s:28:\"/enfold/js/avia-js(.min)?.js\";i:9;s:52:\"/enfold/js/aviapopup/jquery.magnific-popup(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:072fc4077d7071791d774d6ddbf5dc2a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1712954619;}s:36:\"fe3546f0-be3e-4173-8992-a7f6f203b82f\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"Envision\";s:9:\"condition\";s:8:\"envision\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:27:\"/envision/lib/js/app.min.js\";i:3;s:13:\"var CloudFwOp\";}s:10:\"is_default\";i:1;s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:fc5f7d69b646ed95835badc0fc23bc11\";s:10:\"created_at\";i:1679737494;}s:36:\"45b060fe-fd61-48c5-8cc9-694b5b6c103f\";O:8:\"stdClass\":10:{s:5:\"title\";s:23:\"Erios - Fix Mobile Menu\";s:9:\"condition\";s:5:\"erios\";s:10:\"exclusions\";a:4:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:53:\"/wp-content/themes/erios/assets/js/libs/mlpushmenu.js\";i:2;s:59:\"/wp-content/themes/erios/assets/js/libs/modernizr.custom.js\";i:3;s:50:\"/wp-content/themes/erios/assets/js/libs/classie.js\";}s:7:\"summary\";s:89:\"Fixes an issue in which the mobile menu doesn\'t appear when clicking the hamburger button\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:06c4f62aa28eb5d407096ea7c27939ec\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1738617553;}s:36:\"d997b942-19de-4710-9c81-79d3c65cbd76\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Ewebot\";s:9:\"condition\";s:6:\"ewebot\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/gt3-themes-core/\";i:3;s:27:\"/uploads/gt3-assets/js/(.*)\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:195:\"Fire animations on pageload.\r\n\r\nAllow the page to load without interaction.\r\n\r\n/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\r\n/jquery-migrate(.min)?.js\r\n/wp-content/themes/ewebot/dist/js/theme.js\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:047f009f2a1f4cdf2088c46be47e385b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430887;}s:36:\"53d29aec-8ae4-4273-b748-f5bd52dfe177\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Farvis\";s:9:\"condition\";s:6:\"farvis\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:8:\"/farvis/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:49:\"Fire animations and layout rendering on pageload.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:26bff2f3a6ff6347d35edf5c77a35687\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724430981;}s:36:\"fb01246b-a5f8-4021-b514-c02cf55e80bd\";O:8:\"stdClass\":10:{s:5:\"title\";s:8:\"Flatsome\";s:9:\"condition\";s:8:\"flatsome\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/flatsome/assets/js/flatsome.js\";i:3;s:41:\"/flatsome/assets/libs/packery.pkgd.min.js\";i:4;s:34:\"/flatsome/assets/js/woocommerce.js\";i:5;s:68:\"/flatsome/assets/js/extensions/flatsome-variation-images-frontend.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:69:\"Avoid homepage slider delay. Allow zoom on the product image gallery.\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:26fb1cf80f074ca199d8a7e94c5fc796\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1735226064;}s:36:\"4d65dc12-9ce7-4171-94a7-9821fd95240e\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"Flatsome - Google map\";s:9:\"condition\";s:8:\"flatsome\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"maps.googleapis.com\";i:3;s:18:\"google.maps.LatLng\";i:4;s:34:\"/wp-includes/js/hoverIntent.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:28:\"Show Google Map on page load\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:28a6f8b3319c107a34603be0f01a4bcf\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431100;}s:36:\"890e15b6-c66b-4a9e-9b7d-55417df94916\";O:8:\"stdClass\":9:{s:5:\"title\";s:17:\"Flatsome - Images\";s:9:\"condition\";s:8:\"flatsome\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:58:\"/flatsome/inc/integrations/wp-rocket/flatsome-wp-rocket.js\";i:3;s:31:\"/flatsome/assets/js/flatsome.js\";i:4;s:65:\"/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js\";i:5;s:34:\"/wp-includes/js/hoverIntent.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:33:\"Allow images to load immediately.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f2d60aad9f2f5395e3e145cf8f8ab165\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1725978870;}s:36:\"ee1a892b-c906-4e35-8684-827919f64bef\";O:8:\"stdClass\":9:{s:5:\"title\";s:19:\"Foxiz - Load Slider\";s:9:\"condition\";s:5:\"foxiz\";s:10:\"exclusions\";a:5:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:39:\"/themes/foxiz/assets/js/rbswiper.min.js\";i:2;s:34:\"/plugins/foxiz-core/assets/core.js\";i:3;s:33:\"/themes/foxiz/assets/js/global.js\";i:4;s:46:\"/themes/foxiz/assets/js/jquery.ui.totop.min.js\";}s:7:\"summary\";s:153:\"When Delay JavaScript Execution is enabled, the slider doesn\'t load until there is a user interaction. These exclusions make the slider load immediately.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:ee6e7f08495a961a7bcbfe4e0a283b6e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1725039417;}s:36:\"cb54d070-8ee0-4c35-9fa9-b2bac73ccf39\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"Frida\";s:9:\"condition\";s:5:\"frida\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:7:\"/frida/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:82:\"Display images without user interaction and avoid issues with simpleLighbox images\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:109ddf56796a5133e12279f3daa5ff62\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431195;}s:36:\"435fe79f-47ba-422e-aca6-cea566f6b8a1\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Gardena Theme\";s:9:\"condition\";s:7:\"gardena\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:9:\"/gardena/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:98:\"Fixes the error message for Largest contentful paint in PageSpeed report, when feature is enabled.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:993e6f0fc44b9e55c0a565b84a449340\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431464;}s:36:\"e5428837-d182-44c0-9b8d-66e225e78a42\";O:8:\"stdClass\":10:{s:5:\"title\";s:34:\"GeneratePress - Back To Top Button\";s:9:\"condition\";s:13:\"generatepress\";s:10:\"exclusions\";a:2:{i:0;s:50:\"/themes/generatepress/assets/js/back-to-top.min.js\";i:1;s:30:\"generate-back-to-top-js-before\";}s:7:\"summary\";s:70:\"The back to top button will not show or work without these exclusions.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:92eb3fe27f152d99a70b3ff7fa51b50a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1746819839;}s:36:\"9e78539a-03d9-442b-ab94-dd3b7a9658e4\";O:8:\"stdClass\":9:{s:5:\"title\";s:27:\"GeneratePress - Mobile menu\";s:9:\"condition\";s:13:\"generatepress\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/generatepress/assets/js/menu.min.js\";i:1;s:17:\"generatepressMenu\";i:2;s:49:\"/gp-premium/menu-plus/functions/js/offside.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:128:\"Fixes the mobile menu requiring a double touch, if touching the mobile menu is the first interaction of a visitor with the page.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:80a330247d61d729fcd78dc01de6ed2f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431524;}s:36:\"7d2a6472-83d4-4620-8b9e-ff8872b98c1c\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Genesis sample\";s:9:\"condition\";s:22:\"genesis-sample-develop\";s:10:\"exclusions\";a:7:{i:0;s:21:\"/jquery/jquery.min.js\";i:1;s:29:\"/jquery/jquery-migrate.min.js\";i:2;s:22:\"/js/hoverIntent.min.js\";i:3;s:21:\"/genesis/lib/js/menu/\";i:4;s:33:\"/genesis/lib/js/skip-links.min.js\";i:5;s:28:\"/custom-genesis/js/custom.js\";i:6;s:31:\"var c = document.body.classList\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:117:\"https://github.com/wp-media/delay-javascript-loading/issues/33#issuecomment-1201266660 , display mobile menu with DJS\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7c14d7a05ad7f4f39b719e015a4723ff\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1727089078;}s:36:\"02d47d01-56f5-4801-b319-cff1707dd59d\";O:8:\"stdClass\":9:{s:5:\"title\";s:37:\"Harmuny - Modern WordPress Blog Theme\";s:9:\"condition\";s:7:\"harmuny\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:9:\"/harmuny/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:40:\"Load slideshow without user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:1ff9662c2a3e3221052cbe229feed18c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724427976;}s:36:\"6373bbb2-877c-4075-b6e4-7c58d686b25c\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"HealthFirst\";s:9:\"condition\";s:11:\"healthfirst\";s:10:\"exclusions\";a:7:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:34:\"/wp-includes/js/hoverIntent.min.js\";i:2;s:70:\"/wp-content/plugins/healthfirst-core/assets/js/healthfirst-core.min.js\";i:3;s:74:\"/wp-content/plugins/healthfirst-core/assets/plugins/modernizr/modernizr.js\";i:4;s:101:\"/wp-content/plugins/healthfirst-core/assets/plugins/perfect-scrollbar/perfect-scrollbar.jquery.min.js\";i:5;s:52:\"/wp-content/themes/healthfirst/assets/js/main.min.js\";i:6;s:83:\"/wp-content/themes/healthfirst/assets/plugins/waitforimages/jquery.waitforimages.js\";}s:7:\"summary\";s:69:\"When Delay JavaScript Execution is enabled, there are console errors.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:882ee30ccc8ed2b36e93c7b6e2c4b98e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431542;}s:36:\"2c72e7e6-cb77-44e9-af87-d5c42ae6db52\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"Honor - WPBakery fix\";s:9:\"condition\";s:5:\"honor\";s:10:\"exclusions\";a:3:{i:0;s:22:\"/honor/js/__scripts.js\";i:1;s:13:\"HONOR_STORAGE\";i:2;s:13:\"/js_composer/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:74:\"Only required if used with WPBakery plugin to fix some dependencies issues\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9f228373ff4d172655dbf5cb3b1bc23a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431564;}s:36:\"9309d1d3-1035-4a2c-8ced-075bc3ff9957\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"HotelMaster\";s:9:\"condition\";s:11:\"hotelmaster\";s:10:\"exclusions\";a:7:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:38:\"/hotelmaster/javascript/gdlr-script.js\";i:3;s:48:\"/hotelmaster/plugins/dl-menu/modernizr.custom.js\";i:4;s:45:\"/hotelmaster/plugins/dl-menu/jquery.dlmenu.js\";i:5;s:46:\"/hotelmaster/plugins/superfish/js/superfish.js\";i:6;s:37:\"/hotelmaster/plugins/jquery.easing.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:54:\"Fixes double touch required to use the menu on mobile.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:978eaddad3b1047e479407b6d92197aa\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431621;}s:36:\"4a09f745-cbb1-47c8-b50a-c8014d5d1335\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"HotelMaster - Blog\";s:9:\"condition\";s:11:\"hotelmaster\";s:10:\"exclusions\";a:3:{i:0;s:30:\"/wp-includes/js/masonry.min.js\";i:1;s:44:\"/gp-premium/blog/functions/js/scripts.min.js\";i:2;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:14:\"Loads the blog\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:e813a548bceac6765a1cdf2316f1a6ab\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431587;}s:36:\"f2d8f704-ec68-4278-9ca2-885daa0c1ce5\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"HotelMaster - Masonry\";s:9:\"condition\";s:11:\"hotelmaster\";s:10:\"exclusions\";a:2:{i:0;s:49:\"/gp-premium/menu-plus/functions/js/offside.min.js\";i:1;s:7:\"offSide\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:72:\"Display blog archive posts in a masonry layout without user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:398a264e302e42640553681e8759cd07\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724431607;}s:36:\"d62a5509-f311-4ec4-a27b-d808842cebc0\";O:8:\"stdClass\":10:{s:5:\"title\";s:22:\"Impreza - Image Popups\";s:9:\"condition\";s:7:\"Impreza\";s:10:\"exclusions\";a:3:{i:0;s:50:\"/themes/Impreza/common/js/vendor/magnific-popup.js\";i:1;s:46:\"/uploads/us-assets/kuechenstudio-reissig.de.js\";i:2;s:13:\"magnificPopup\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:83:\"When Delay JavaScript Execution is enabled, the image popups do not work correctly.\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:76e58bbda03bb74e93ec1d97828501b0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1747237800;}s:36:\"92b2e258-1f44-41c1-b1bd-f117f61ee49d\";O:8:\"stdClass\":9:{s:5:\"title\";s:31:\"Jannah Theme - Fix masonry grid\";s:9:\"condition\";s:6:\"jannah\";s:10:\"exclusions\";a:4:{i:0;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:1;s:30:\"/wp-includes/js/masonry.min.js\";i:2;s:44:\"/wp-includes/js/jquery/jquery.masonry.min.js\";i:3;s:4:\"tie-\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:16:\"Fix masonry grid\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:35f7f183089309f52046377ca65e905a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432477;}s:36:\"df52436c-53d6-461a-b81a-cd0b21680524\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"JNews\";s:9:\"condition\";s:5:\"jnews\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:17:\"/jnews/assets/js/\";i:3;s:5:\"jnews\";i:4;s:4:\"jfla\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:108:\"Toggle the search box on mobile.\r\n\r\nLoad images without interaction:\r\n\r\n/jnews/assets/js/modernizr-custom.js\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:5d90e451984f9d894b1aabb0d00f30a2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432551;}s:36:\"87ed69a2-3295-4fad-a82e-eeb02925a5dc\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Jobify\";s:9:\"condition\";s:6:\"jobify\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:24:\"/jobify/js/jobify.min.js\";i:3;s:30:\"/jobify/js/select2.full.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:64:\"Prevent white space on the mobile header before user interaction\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:592006aa4562a6915e344e5e2a09e5ee\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432575;}s:36:\"28a0b1ea-8d2f-4931-a48a-166b8df8a773\";O:8:\"stdClass\":9:{s:5:\"title\";s:4:\"JOYN\";s:9:\"condition\";s:4:\"joyn\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:81:\"/swift-framework/includes/page-builder/frontend-assets/js/lib/modernizr-custom.js\";i:3;s:78:\"/swift-framework/includes/page-builder/frontend-assets/js/spb-functions.min.js\";i:4;s:68:\"/swift-framework/includes/swift-slider/assets/js/swift-slider.min.js\";i:5;s:55:\"/swift-framework/public/js/lib/imagesloaded.pkgd.min.js\";i:6;s:28:\"/joyn/js/owl.carousel.min.js\";i:7;s:25:\"/joyn/js/theme-scripts.js\";i:8;s:21:\"/joyn/js/functions.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:51:\"Prevent the page from not loading on mobile devices\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c395470ad2d4d681836cd942bbb03120\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432590;}s:36:\"542be60a-2346-4740-9a41-8a580c4f013c\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"Juno Toys\";s:9:\"condition\";s:8:\"junotoys\";s:10:\"exclusions\";a:8:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:22:\"/jquery-migrate.min.js\";i:2;s:28:\"/junotoys/fw/js/core.init.js\";i:3;s:29:\"/junotoys/fw/js/core.utils.js\";i:4;s:28:\"/junotoys/fw/js/superfish.js\";i:5;s:32:\"/junotoys/fw/js/swiper/swiper.js\";i:6;s:41:\"/trx_utils/shortcodes/theme.shortcodes.js\";i:7;s:30:\"/wp-includes/js/jquery/ui/(.*)\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:36:\"Display the swiper/carousel products\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2acab38e8356d36355bb81d931e7fba4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432608;}s:36:\"06167710-10c7-446e-a08b-ce676e444102\";O:8:\"stdClass\":8:{s:5:\"title\";s:7:\"Jupiter\";s:9:\"condition\";s:7:\"jupiter\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/jupiter/\";i:3;s:33:\"/wp-includes/js/underscore.min.js\";i:4;s:12:\"WebFont.load\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:89c5c30498c2989611f9044be006197c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738430;}s:36:\"5d042e1f-7e62-4ec4-ba31-30d396004522\";O:8:\"stdClass\":8:{s:5:\"title\";s:8:\"JupiterX\";s:9:\"condition\";s:8:\"jupiterx\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/jupiterx/(.*).js\";i:3;s:33:\"/wp-includes/js/underscore.min.js\";i:4;s:12:\"WebFont.load\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b06632962a4948d4944fd8d79ffbfceb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679737312;}s:36:\"c4b030ea-66a1-4729-85bf-a484e373a316\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"Kadence\";s:9:\"condition\";s:7:\"kadence\";s:10:\"exclusions\";a:3:{i:0;s:36:\"/kadence/assets/js/navigation.min.js\";i:1;s:22:\"mobile_menu_breakpoint\";i:2;s:13:\"kadenceConfig\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:56:\"Avoid double click to open mobile menu and search button\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:4b7907ee68218db279648da9bf7102d1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432769;}s:36:\"20c605b4-3e3a-4bb0-a5e5-a08e2cb0f31f\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Kalium\";s:9:\"condition\";s:6:\"kalium\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/kalium/assets/js/main.min.js\";i:3;s:22:\"mobile_menu_breakpoint\";i:4;s:6:\"var _k\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:25:\"Fixes the hamburger menu.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:1fcb99a1ab06e1e36635365ed3e59ce5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432784;}s:36:\"e1e04a7d-635a-4e28-83d9-e345ce40e354\";O:8:\"stdClass\":9:{s:5:\"title\";s:4:\"Kava\";s:9:\"condition\";s:4:\"kava\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/kava/assets/js/theme-script.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Fixes the header color issue.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:359d67efbf530c998245225dd3245a88\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432796;}s:36:\"e833c36e-ee89-4924-b608-3f28327c2f85\";O:8:\"stdClass\":9:{s:5:\"title\";s:3:\"Lay\";s:9:\"condition\";s:3:\"lay\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:31:\"/wp-includes/js/backbone.min.js\";i:2;s:33:\"/wp-includes/js/underscore.min.js\";i:3;s:5:\"/lay/\";i:4;s:19:\"/laytheme-carousel/\";i:5;s:15:\"window.laytheme\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:34:\"Start showing content on pageload.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7c718c6da874ea6e4b27c6d70bc4e7e8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432836;}s:36:\"2df2ef47-a833-4711-ba54-48dc62586f37\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"LazaNews\";s:9:\"condition\";s:8:\"lazanews\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:17:\"/jquery.custom.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:79:\"Prevents the page preloading animation from being stuck until user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:85d9922ac61ed833fd047a67029df8e5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432810;}s:36:\"9443304a-34e9-4700-a03a-5f8f62f83ed1\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Listeo\";s:9:\"condition\";s:6:\"listeo\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/listeo/js/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Render the page on pageload\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:db7da585545001f5ae614a2810f08f3a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432849;}s:36:\"77afa73c-c4a8-42a8-aaee-43f6a761364e\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"ListingPro\";s:9:\"condition\";s:10:\"listingpro\";s:10:\"exclusions\";a:13:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:62:\"/listingpro/assets/lib/jquerym.menu/js/jquery.mmenu.min.all.js\";i:3;s:73:\"/listingpro/assets/lib/Magnific-Popup-master/jquery.magnific-popup.min.js\";i:4;s:41:\"/listingpro/assets/js/select2.full.min.js\";i:5;s:49:\"/listingpro/assets/js/jquery.city-autocomplete.js\";i:6;s:42:\"/listingpro/assets/js/chosen.jquery.min.js\";i:7;s:55:\"/listingpro/assets/lib/bootstrap/js/bootstrap-slider.js\";i:8;s:34:\"/listingpro/assets/js/jquery-ui.js\";i:9;s:31:\"/listingpro/assets/js/mapbox.js\";i:10;s:29:\"/listingpro/assets/js/main.js\";i:11;s:46:\"/listingpro/assets/js/leaflet.markercluster.js\";i:12;s:4:\"maps\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:41:\"Display the map and avoid console errors.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:0b365e43dfc65d2b1b70fac6510c7c9c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432862;}s:36:\"164e73e5-0603-42de-9ae6-837d822636a3\";O:8:\"stdClass\":10:{s:5:\"title\";s:17:\"Lycka - Load Menu\";s:9:\"condition\";s:5:\"lycka\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:41:\"/themes/lycka/framework/js/header.misc.js\";}s:7:\"summary\";s:101:\"When Delay JavaScript Execution is enabled, the menu does not appear until interaction with the page.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:16544487fefeb35553d3abb52856b73c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1754072604;}s:36:\"47de96e2-016b-4a8b-a707-286242f0077b\";O:8:\"stdClass\":10:{s:5:\"title\";s:21:\"Magbook - Show Slider\";s:9:\"condition\";s:7:\"magbook\";s:10:\"exclusions\";a:3:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:51:\"/wp-content/themes/magbook/js/flexslider-setting.js\";i:2;s:54:\"/wp-content/themes/magbook/js/jquery.flexslider-min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:147:\"When Delay JavaScript Execution is enabled, the slider doesn\'t show until user interaction.\r\n\r\nhttps://github.com/wp-media/rucss-backend/issues/180\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:a1be05a01927e084ea948e15017ee3d3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1743179866;}s:36:\"01b369b5-b578-4314-8e95-40b67a41d75a\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"Master Study\";s:9:\"condition\";s:11:\"masterstudy\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:32:\"/masterstudy/assets/js/custom.js\";i:3;s:50:\"/masterstudy/assets/vendors/jquery.fancybox.min.js\";i:4;s:42:\"/masterstudy/assets/js/select2.full.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:79:\"Prevents the page preloading animation from being stuck until user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:0ee224c20e4ef7d546733d933db598f2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432905;}s:36:\"6b000cc7-d33b-4109-9c39-6119a5d81cde\";O:8:\"stdClass\":9:{s:5:\"title\";s:4:\"Maya\";s:9:\"condition\";s:4:\"maya\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/maya/js/jquery.mobilemenu.js\";i:3;s:25:\"/maya/js/jquery.custom.js\";i:4;s:38:\"/maya/core/includes/js/jquery.tipsy.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:88:\"Convert the mobile menu into a selector form on mobile devices without user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:719fe28004fcdd81a820602924aa8074\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432964;}s:36:\"ef3c76d6-1041-473d-81ea-a5a6e8c86735\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"MH Magazine\";s:9:\"condition\";s:11:\"mh-magazine\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:13:\"/mh-magazine/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Display menus on page load.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2a0cd6efc2f46be69de61712729a2ec9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433164;}s:36:\"9cbb2777-5524-43b8-af36-692b27452c0d\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"Minimog\";s:9:\"condition\";s:7:\"minimog\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/minimog/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:27:\"Display menus on page load.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:61c0c235042359ee7d2a9035e79a7da2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433180;}s:36:\"7eb81c74-8062-4a6c-bf66-b7c5bc160141\";O:8:\"stdClass\":9:{s:5:\"title\";s:15:\"Moozo Elementor\";s:9:\"condition\";s:15:\"moozo-elementor\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:39:\"/moozo-elementor/assets/js/countdown.js\";i:3;s:57:\"/moozo-elementor/assets/vendor/countdown/countdown.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Display the countdown timer without interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:2ddb538c8e6b6c766fffd0d5c861fd82\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433254;}s:36:\"e90b7bfa-9ff6-4e1a-bf29-6207d55fdd39\";O:8:\"stdClass\":8:{s:5:\"title\";s:5:\"Motor\";s:9:\"condition\";s:5:\"motor\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:10:\"/motor/js/\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b33538179f5661a86cbe327a1793e199\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1683973354;}s:36:\"d4607fcd-296f-4235-ba8e-2be508181877\";O:8:\"stdClass\":10:{s:5:\"title\";s:23:\"Movedo - Autoplay Video\";s:9:\"condition\";s:6:\"movedo\";s:10:\"exclusions\";a:3:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:25:\"/themes/movedo/js/main.js\";i:2;s:28:\"/themes/movedo/js/plugins.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:160:\"When Delay JavaScript Execution is enabled, autoplay videos don\'t play until user interaction with page.\r\n\r\nhttps://github.com/wp-media/rucss-backend/issues/181\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:08e2673c5f3e451c281eba504f57290e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1743424232;}s:36:\"445e625a-f955-41fa-84de-65d9ea19be07\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"My Listing\";s:9:\"condition\";s:10:\"my-listing\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/my-listing/assets/\";i:3;s:41:\"/wp-includes/js/dist/vendor/moment.min.js\";i:4;s:19:\"maps.googleapis.com\";i:5;s:9:\"MyListing\";i:6;s:17:\"_Explore_Settings\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:30:\"Show the content on page load:\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:afacb777229ddf5cabceacc64948057d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433267;}s:36:\"677d9967-ca17-4602-8f63-4c3937f7a5c2\";O:8:\"stdClass\":9:{s:5:\"title\";s:28:\"Nature One PRO - Nivo Slider\";s:9:\"condition\";s:13:\"natureone-pro\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:10:\"nivoSlider\";}s:7:\"summary\";s:96:\"When Delay JavaScript Execution is enabled, the Nivo Slider doesn\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:53ae74a161c1588f5539b6883825d3ee\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1729860774;}s:36:\"00b8cd2d-2781-4fbb-ac5d-00750ba94ac9\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"Neve - Mobile menu\";s:9:\"condition\";s:4:\"neve\";s:10:\"exclusions\";a:1:{i:0;s:40:\"/neve/assets/js/build/modern/frontend.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:54:\"Prevents the need for a double tap on the mobile menu.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:5ae731cc06dd9284f8172675a6fe81ab\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432677;}s:36:\"483abc54-f1fc-47dc-bfc1-a269c7d1c849\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"Newspaper - Images\";s:9:\"condition\";s:9:\"Newspaper\";s:10:\"exclusions\";a:10:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"tagdiv_theme.min.js\";i:3;s:13:\"tdBlocksArray\";i:4;s:33:\"/wp-includes/js/underscore.min.js\";i:5;s:28:\"/td-cloud-library/assets/js/\";i:6;s:44:\"/npm/slick-carousel@1.8.1/slick/slick.min.js\";i:7;s:16:\"tdb-gallery-wrap\";i:8;s:13:\"tdBlocksArray\";i:9;s:4:\"tdb_\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Loads images without delay\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:649ff22527bac2b1c8e0115cd3851d53\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432710;}s:36:\"50db8d14-d421-4237-be14-a6f7b5c11ec5\";O:8:\"stdClass\":9:{s:5:\"title\";s:28:\"Newspaper - Slider & YouTube\";s:9:\"condition\";s:9:\"Newspaper\";s:10:\"exclusions\";a:14:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"tagdiv_theme.min.js\";i:3;s:13:\"tdBlocksArray\";i:4;s:11:\"tdb_globals\";i:5;s:19:\"td_youtube_list_ids\";i:6;s:9:\"iosSlider\";i:7;s:53:\"/td-cloud-library/assets/js/js_files_for_front.min.js\";i:8;s:33:\"/wp-includes/js/underscore.min.js\";i:9;s:28:\"/td-cloud-library/assets/js/\";i:10;s:44:\"/npm/slick-carousel@1.8.1/slick/slick.min.js\";i:11;s:16:\"tdb-gallery-wrap\";i:12;s:13:\"tdBlocksArray\";i:13;s:4:\"tdb_\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:48:\"Render the slider and Youtube videos on pageload\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7e2eeee57ae458c5959342eda6526bf1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432700;}s:36:\"514f4c30-2b67-4648-960e-dfe1cc401ca5\";O:8:\"stdClass\":9:{s:5:\"title\";s:4:\"Niva\";s:9:\"condition\";s:4:\"niva\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/niva/js/\";i:3;s:26:\"/sweetthemes-framework/js/\";i:4;s:8:\"mt_typed\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:42:\"Trigger the page loader and the typewriter\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c4838f73a344b829ed626635e210dcf4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432724;}s:36:\"e67ee504-c3b1-455e-88ab-1fae8c830652\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"OceanWP\";s:9:\"condition\";s:7:\"oceanwp\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/oceanwp/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:56:\"Fixes some non-function breaking browser console errors.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:db37af4b7d12695d37d9256313a5f37a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432755;}s:36:\"e44e240a-8765-4f4f-b67e-d54e4b727506\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"OceanWP - Mobile menu\";s:9:\"condition\";s:7:\"oceanwp\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:45:\"/ocean-side-panel/assets/js/side-panel.min.js\";i:3;s:39:\"/oceanwp/assets/js/theme.vanilla.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:32:\"Avoids double tap on mobile menu\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9babbcd52b2ce558d299a06cd1130a11\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724432740;}s:36:\"51ac8cbb-6018-45a5-917f-6ce48bc7fc67\";O:8:\"stdClass\":10:{s:5:\"title\";s:4:\"Ohio\";s:9:\"condition\";s:4:\"ohio\";s:10:\"exclusions\";a:5:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:34:\"/themes/ohio/assets/js/main.min.js\";i:2;s:51:\"/themes/ohio/assets/js/libs/jquery.mega-menu.min.js\";i:3;s:40:\"/themes/ohio/assets/js/libs/typed.min.js\";i:4;s:47:\"/themes/ohio/assets/js/libs/isotope.pkgd.min.js\";}s:7:\"summary\";s:109:\"Load the mobile menu on page load without user interaction\r\nLoad dynamic typing text without user interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:4ec96adb9cc39333f3d2024b28f2503f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1769790675;}s:36:\"69a88ebb-b958-4ef0-be66-a1ceab623773\";O:8:\"stdClass\":10:{s:5:\"title\";s:14:\"Pelicula Theme\";s:9:\"condition\";s:8:\"pelicula\";s:10:\"exclusions\";a:8:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:65:\"/plugins/qi-blocks/assets/js/plugins/fslightbox/fslightbox.min.js\";i:2;s:65:\"/plugins/qi-blocks/inc/masonry/assets/plugins/isotope.pkgd.min.js\";i:3;s:70:\"/plugins/qi-blocks/inc/masonry/assets/plugins/packery-mode.pkgd.min.js\";i:4;s:10:\"/pelicula/\";i:5;s:22:\"/pelicula-core/assets/\";i:6;s:25:\"/qi-addons-for-elementor/\";i:7;s:34:\"/wp-includes/js/hoverIntent.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:235:\"Allow the Pelicula theme\'s Galleries to show on the page without user interaction\r\nFix broken animated title effects so they animate properly.\r\nFix testimonial not showing until user interaction.\r\nFix Modal not triggering when clicked.\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:56bb7d07cce915321f3ed45b09b9e9e5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1742986303;}s:36:\"897b0100-958d-4a02-b6b2-1e753e9869f4\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"PenNews\";s:9:\"condition\";s:7:\"pennews\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:25:\"/pennews/js/script.min.js\";i:3;s:29:\"/pennews/js/script.lib.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:85:\"When the theme\'s lazyload functionality is used, lazyload images without interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:02811fa00bc1471bb5be0457ce0ee005\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724433732;}s:36:\"edd3ba03-e0fd-4b6e-911b-60b29f3471bf\";O:8:\"stdClass\":9:{s:5:\"title\";s:15:\"Pharmacy Mentor\";s:9:\"condition\";s:14:\"pharmacymentor\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:16:\"/pharmacymentor/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:39:\"Load slider and animations on pageload.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3188aaf1ef2c39937450f2a14ebb1174\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442943;}s:36:\"449a1b7e-5c4b-43d6-8a33-195254bfb184\";O:8:\"stdClass\":10:{s:5:\"title\";s:9:\"Phlox Pro\";s:9:\"condition\";s:9:\"phlox-pro\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:18:\"/themes/phlox-pro/\";}s:7:\"summary\";s:155:\"When Delay JavaScript Execution is enabled, we have a white page until user interaction.\r\nNo preload or transition page to deactivate on the theme setting.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:9cf68c2d2861c6cc6ad4ab1c3c8480eb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1756733274;}s:36:\"725415ff-cc76-45cc-a131-3170e5aa30fc\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"Porto\";s:9:\"condition\";s:5:\"porto\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:26:\"/wp-includes/js/jquery/ui/\";i:3;s:18:\"/porto/js/theme.js\";i:4;s:22:\"/porto/js/theme.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:15:\"Load animations\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:8493f398f200c8dffe60d46439dd3360\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442964;}s:36:\"a4f6d50c-2ee9-40d6-b13e-502bda0ab18e\";O:8:\"stdClass\":10:{s:5:\"title\";s:36:\"Porto - Load Product Archive Listing\";s:9:\"condition\";s:5:\"porto\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:43:\"/wp-content/themes/porto/js/skeleton.min.js\";i:2;s:18:\"/porto/js/theme.js\";}s:7:\"summary\";s:73:\"Load Porto product archive listing in shop pages without user interaction\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:1315f133b62df536d891c6a9c93ef4a7\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1746008976;}s:36:\"2c19bcec-f3ff-4873-bfd7-db6bc0f6433c\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"Porto - Owl Carousel\";s:9:\"condition\";s:5:\"porto\";s:10:\"exclusions\";a:6:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:26:\"/wp-includes/js/jquery/ui/\";i:2;s:25:\"/porto/js/theme(|.min).js\";i:3;s:37:\"/porto/js/libs/owl.carousel(|.min).js\";i:4;s:31:\"/porto/js/theme-async(|.min).js\";i:5;s:41:\"/prettyPhoto/jquery.prettyPhoto(|.min).js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:37:\"Load Owl Carousel without interaction\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f34f5199fb7fca78852cd3fb7758f178\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442974;}s:36:\"f7779ea7-3b3a-441a-8fe7-44e3ee9350d8\";O:8:\"stdClass\":10:{s:5:\"title\";s:23:\"Porto - Product Gallery\";s:9:\"condition\";s:5:\"porto\";s:10:\"exclusions\";a:9:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:26:\"/wp-includes/js/jquery/ui/\";i:2;s:25:\"/porto/js/theme(|.min).js\";i:3;s:37:\"/porto/js/libs/owl.carousel(|.min).js\";i:4;s:31:\"/porto/js/theme-async(|.min).js\";i:5;s:30:\"/porto/js/woocommerce-theme.js\";i:6;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:7;s:33:\"/wp-includes/js/underscore.min.js\";i:8;s:57:\"/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js\";}s:7:\"summary\";s:114:\"When Delay JavaScript Execution is enabled, the product gallery dots navigation don\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:ddb85625312fec570f0a85e1e11fbba4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1746791452;}s:36:\"5b11ec89-1cb2-4793-8b77-79e917e810a0\";O:8:\"stdClass\":9:{s:5:\"title\";s:35:\"Pro Theme - Fix menu and accordions\";s:9:\"condition\";s:3:\"pro\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:50:\"/pro/cornerstone/assets/js/site/cs-classic.(.*).js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:23:\"Fix menu and accordions\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:8f30d70dd2d9a0386445aef8fdd534a9\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443035;}s:36:\"31347ccb-f69e-4cd3-bd47-b80ce14ac76e\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"ProPhoto\";s:9:\"condition\";s:9:\"prophoto7\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:29:\"/prophoto7/js/bundle.front.js\";i:2;s:33:\"/wp-includes/js/underscore.min.js\";i:3;s:8:\"PROPHOTO\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:15:\"Fire animations\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:a5836a56c4472fade4dc6ebfe2281554\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443049;}s:36:\"a8208c04-865c-49aa-ab96-41e378d391c8\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"Publisher\";s:9:\"condition\";s:9:\"publisher\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:14:\"/publisher/js/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:91:\"Make the mobile menu expend from the first click and the cookie notice to show on pageload.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:32c73be0cb175da278c8e2af0811b0d1\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443063;}s:36:\"a0d69f3d-1356-4a1d-a600-2f2f788b8a9a\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"REHub\";s:9:\"condition\";s:11:\"rehub-theme\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/rehub-theme/js/custom_floatpanel.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:19:\"Fix the sticky menu\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:321af1febb74f488cf911380893739b2\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434339;}s:36:\"8b74bbe5-7f32-42df-908f-78c99a8cad82\";O:8:\"stdClass\":9:{s:5:\"title\";s:3:\"Rey\";s:9:\"condition\";s:3:\"rey\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:20:\"/rey/scripts-(.*).js\";i:3;s:20:\"/rey-core/assets/js/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:44:\"Fix the sticky menu on mobile and animations\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:e46567cd0f3ec9b37e7230dc87eac367\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434354;}s:36:\"5c9115d3-bcbd-49d6-8feb-4880d2b82bfe\";O:8:\"stdClass\":8:{s:5:\"title\";s:9:\"Rife Free\";s:9:\"condition\";s:9:\"rife-free\";s:10:\"exclusions\";a:5:{i:0;s:27:\"/rife-free/js/script.min.js\";i:1;s:33:\"/rife-free/js/isotope.pkgd.min.js\";i:2;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:3;s:25:\"/jquery-migrate(.min)?.js\";i:4;s:8:\"var reJS\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:74a449954de79625eccc6750e87af8f6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738107;}s:36:\"6542b2fd-1f91-4862-aa18-11eecc02faaf\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"Roisin\";s:9:\"condition\";s:6:\"roisin\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:36:\"/themes/roisin/assets/js/main.min.js\";i:3;s:49:\"/plugins/roisin-core/assets/js/roisin-core.min.js\";i:4;s:34:\"/wp-includes/js/hoverIntent.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:8f38fe58034772931110930b91cb6797\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1685964523;}s:36:\"5a192ad9-d150-4aa0-8efc-d68131cb7a37\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"Sahifa - Mobile Menu\";s:9:\"condition\";s:6:\"sahifa\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:37:\"/themes/sahifa/js/ilightbox.packed.js\";i:2;s:23:\"/translate_a/element.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:52:\"Allow mobile menu slideout to work for Safari mobile\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:06ebe49f4c1e5b04cece831f8bb198a3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434427;}s:36:\"7ae9d978-d63c-4a58-beb3-418bebb5b23c\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"Salient\";s:9:\"condition\";s:7:\"salient\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:9:\"/salient/\";i:3;s:12:\"winW > bodyW\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:85:\"Close mobile menu when using anchor links & Show the menu and animations on page load\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:b3e12d57ac23897be1bb2c673e3fc761\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434525;}s:36:\"35aaa6c5-4a37-4161-b504-fb3ebc4b1148\";O:8:\"stdClass\":9:{s:5:\"title\";s:23:\"Salient - Nectar slider\";s:9:\"condition\";s:7:\"salient\";s:10:\"exclusions\";a:3:{i:0;s:42:\"/salient-nectar-slider/js/nectar-slider.js\";i:1;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:2;s:25:\"/jquery-migrate(.min)?.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:35:\"load the images without interaction\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d612db1dd8dc76faa6a36a9ebfd336dc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434498;}s:36:\"84c95206-3e59-4eb3-a0c9-e2231a1c0a48\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"SEO Lounge\";s:9:\"condition\";s:9:\"seolounge\";s:10:\"exclusions\";a:4:{i:0;s:67:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?$\";i:1;s:52:\"/js_composer/assets/js/dist/js_composer_front.min.js\";i:2;s:37:\"/seolounge/js/radiantthemes-custom.js\";i:3;s:39:\"/seolounge/js/radiantthemes-core.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:84:\"Avoid the loader being delayed so the page can be displayed before user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3d72b779d9c4ba6b51cc5b245b141433\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434624;}s:36:\"cd44aa56-088a-40dd-bf1e-f835efa68626\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Shoptimizer\";s:9:\"condition\";s:11:\"shoptimizer\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:37:\"/shoptimizer/assets/js/lazyload-bg.js\";i:3;s:34:\"/shoptimizer/assets/js/main.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:61:\"Shows background images and fix the double tap on mobile menu\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:6c32b43f4da639e5901574fac6b7d387\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434579;}s:36:\"d2c48a48-430a-4eea-bc05-99b66f1f6a7b\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"SmartMag\";s:9:\"condition\";s:9:\"smart-mag\";s:10:\"exclusions\";a:1:{i:0;s:25:\"/smart-mag/js/lazyload.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:69:\"Fixes the images not being displayed because of the theme\'s Lazyload.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:23d6b7878bd0087addb067db3fa39864\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434887;}s:36:\"dd0d9133-ef17-4dac-b174-9f25d535838f\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"Soledad\";s:9:\"condition\";s:7:\"soledad\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:19:\"/soledad/js/main.js\";i:3;s:24:\"/soledad/js/more-post.js\";i:4;s:30:\"/soledad/js/libs-script.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:69:\"Fixes the images not being displayed because of the theme\'s Lazyload.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d3f78b26c2d11c99230171cc6378d06e\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434902;}s:36:\"3b85dd6e-9534-477e-9b15-940d0e155c8d\";O:8:\"stdClass\":9:{s:5:\"title\";s:22:\"Spacious - Mobile Menu\";s:9:\"condition\";s:8:\"spacious\";s:10:\"exclusions\";a:2:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:26:\"/spacious/js/navigation.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:32:\"Fixes mobile menu functionality.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d423c1f002b10b8682ee24d616b19c9c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724434916;}s:36:\"d657dc56-5c04-439a-8987-401f89a65bf9\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"Stockholm\";s:9:\"condition\";s:9:\"stockholm\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:14:\"/stockholm/js/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:46:\"To show the logo and prevent JavaScript errors\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:fcfff492e00727b63cf5dff9f59bc2a4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443889;}s:36:\"121f9b1b-d3cd-4dde-915e-0b348abf6687\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Storefront\";s:9:\"condition\";s:10:\"storefront\";s:10:\"exclusions\";a:1:{i:0;s:39:\"/storefront/assets/js/navigation.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:144:\"Reveals menu from the first click.\r\n\r\nSome elements on the page (Link sliders) are showed on page load:\r\n\r\n/storefront/assets/js/homepage.min.js\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:f0dca7e4eaedf573d4664be249845942\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724443926;}s:36:\"41cfc83f-ff02-4a35-a3b7-e92db213b224\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"StreamTube\";s:9:\"condition\";s:10:\"streamtube\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:12:\"/streamtube/\";i:3;s:17:\"/streamtube-core/\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:52:\"Fixes the display video error on the mobile version.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:9772ccddd470688f6bc6aee86e34d29b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444002;}s:36:\"c31366fe-9045-4767-a405-52a11e08b82e\";O:8:\"stdClass\":9:{s:5:\"title\";s:35:\"Sydney - Load elements on page load\";s:9:\"condition\";s:13:\"sydney-pro-ii\";s:10:\"exclusions\";a:6:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:46:\"/wp-content/themes/sydney-pro-ii/js/scripts.js\";i:2;s:52:\"/wp-content/themes/sydney-pro-ii/js/functions.min.js\";i:3;s:48:\"/wp-content/themes/sydney-pro-ii/js/elementor.js\";i:4;s:50:\"/wp-content/themes/sydney-pro-ii/js/hero-slider.js\";i:5;s:45:\"/wp-content/plugins/sydney-toolbox/js/main.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:47:\"Load elements on pages without user interaction\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:1fb15693856451537e331adeaf2c7d6f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724442744;}s:36:\"aec0a548-4c6b-400a-80ed-19a49e0faef0\";O:8:\"stdClass\":10:{s:5:\"title\";s:4:\"The7\";s:9:\"condition\";s:7:\"dt-the7\";s:10:\"exclusions\";a:7:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:2;s:14:\"loader-removed\";i:3;s:34:\"/Ultimate_VC_Addons/assets/min-js/\";i:4;s:9:\"/dt-the7/\";i:5;s:13:\"/js_composer/\";i:6;s:17:\"underscore.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:37:\"Remove the loader and fire animations\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:7934c689fd20e30b6bfc69bb9d46cb63\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1754635920;}s:36:\"538354ff-d69f-40be-b0cc-df3790599dd2\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"TheGem\";s:9:\"condition\";s:6:\"thegem\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/thegem/js/\";i:3;s:11:\"gemSettings\";i:4;s:15:\"thegemSlideshow\";i:5;s:19:\"tgpLazyItemsOptions\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:66:\"To show the logo, slider, animations and prevent JavaScript errors\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:153c54fe73897da838ce39152b1db5a8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444019;}s:36:\"84d95a79-270c-4223-b459-bb49c6acfaf1\";O:8:\"stdClass\":8:{s:5:\"title\";s:29:\"Theme Electiman - Mobile Menu\";s:9:\"condition\";s:9:\"electiman\";s:10:\"exclusions\";a:8:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:41:\"/themes/electiman/assets/js/navigation.js\";i:2;s:45:\"/themes/electiman/assets/js/theme-pluginjs.js\";i:3;s:36:\"/themes/electiman/assets/js/theme.js\";i:4;s:40:\"/themes/electiman/assets/js/slick.min.js\";i:5;s:40:\"/themes/electiman/venobox/venobox.min.js\";i:6;s:47:\"/themes/electiman/assets/js/owl.carousel.min.js\";i:7;s:35:\"/wp-includes/js/imagesloaded.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:a59c888391c869ed4f3417c02d71fe15\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1702923332;}s:36:\"3a59bf59-4fe5-4690-8ab7-33e6a976e2e3\";O:8:\"stdClass\":8:{s:5:\"title\";s:20:\"Thrive Theme Builder\";s:9:\"condition\";s:12:\"thrive-theme\";s:10:\"exclusions\";a:12:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:52:\"/thrive-visual-editor/editor/js/dist/modules/(.*).js\";i:3;s:38:\"TVE_Event_Manager_Registered_Callbacks\";i:4;s:12:\"ThriveGlobal\";i:5;s:9:\"TCB_Front\";i:6;s:8:\"TL_Front\";i:7;s:7:\"TVE_Ult\";i:8;s:7:\"thrive-\";i:9;s:7:\"thrive_\";i:10;s:4:\"tve_\";i:11;s:4:\"tve-\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7492fc8f8a90ad7ef680d9c560da2b0f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1710767440;}s:36:\"68f2de3b-e2b8-4edf-b82f-93fd7834c65f\";O:8:\"stdClass\":9:{s:5:\"title\";s:5:\"Total\";s:9:\"condition\";s:5:\"Total\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:29:\"/Total/assets/js/total.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:24:\"Allow the search to work\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:96b0141273eabab320119c467cdcaf17\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444033;}s:36:\"6dc1cb35-6b50-4da0-9834-dddf169edaa6\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"Townhub\";s:9:\"condition\";s:7:\"townhub\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:31:\"/townhub-add-ons/assets/js/(.*)\";i:3;s:36:\"/wp-includes/js/dist/vendor/react.js\";i:4;s:40:\"/wp-includes/js/dist/vendor/react-dom.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:38:\"Prevent add-ons from breaking the site\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:7c37c885d7fecf788f635734f99e8610\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444055;}s:36:\"f484f86b-e316-4871-9322-dee3925349fe\";O:8:\"stdClass\":9:{s:5:\"title\";s:29:\"Travel Monster - Owl Carousel\";s:9:\"condition\";s:14:\"travel-monster\";s:10:\"exclusions\";a:3:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:87:\"/wp-content/plugins/wp-travel-engine/assets/lib/owl-carousel(.*)/owl.carousel(|.min).js\";i:2;s:9:\"var isRtl\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:49:\"Load Owl Carousel Slider without user interaction\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d3e8da87b3affd399205438fbc8a4f05\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444075;}s:36:\"3ec96c3f-a6bf-4748-9b7e-78864bd24add\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"uDesign - Mobile Menu\";s:9:\"condition\";s:8:\"u-design\";s:10:\"exclusions\";a:4:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/wp-content/themes/u-design/assets/js/theme.min.js\";i:2;s:64:\"/wp-content/themes/u-design/framework/assets/js/framework.min.js\";i:3;s:70:\"/wp-content/themes/u-design/framework/assets/js/framework-async.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:38:\"Keep the mobile menu working properly.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:31ce70b0a02f8720a86d993816676943\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444158;}s:36:\"cb523239-27cc-461e-973d-c984a83223ac\";O:8:\"stdClass\":9:{s:5:\"title\";s:35:\"uDesign - Show Page Content on Load\";s:9:\"condition\";s:8:\"u-design\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:50:\"/wp-content/themes/u-design/assets/js/theme.min.js\";i:2;s:64:\"/wp-content/themes/u-design/framework/assets/js/framework.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:54:\"Display page content on load without user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:c55edd40ad3f9321da577dad70bb130c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444147;}s:36:\"14cb0a85-8bee-491e-99d7-5f20a07f4bdd\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Uncode\";s:9:\"condition\";s:6:\"uncode\";s:10:\"exclusions\";a:11:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:33:\"/uncode/library/js/init(.min)?.js\";i:3;s:36:\"/uncode/library/js/plugins(.min)?.js\";i:4;s:32:\"/uncode/library/js/app(.min)?.js\";i:5;s:47:\"/uncode/library/js/woocommerce-uncode(.min)?.js\";i:6;s:59:\"/wp-includes/js/mediaelement/mediaelement-and-player.min.js\";i:7;s:10:\"initHeader\";i:8;s:7:\"initBox\";i:9;s:13:\"fixMenuHeight\";i:10;s:7:\"initRow\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:50:\"Hides Uncode\'s preloader without user interaction.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:18ba19b98aefbb6c0fde6c6bf92e9cfc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444172;}s:36:\"ff97a78f-9c62-4bc0-9340-1ad98aa6f2fa\";O:8:\"stdClass\":10:{s:5:\"title\";s:28:\"Uncode - Display Media Items\";s:9:\"condition\";s:6:\"uncode\";s:10:\"exclusions\";a:3:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:35:\"/uncode/library/js/lib/vivus.min.js\";i:2;s:31:\"/uncode/library/js/utils.min.js\";}s:7:\"summary\";s:79:\"When Delay JavaScript Execution is enabled, media items don\'t load on the page.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:c0802221090418af389a07024262d71d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1745441048;}s:36:\"c580ba92-2ab9-418d-a5d6-801ba6ceb9ce\";O:8:\"stdClass\":10:{s:5:\"title\";s:34:\"Uncode - Show Content on Page Load\";s:9:\"condition\";s:6:\"uncode\";s:10:\"exclusions\";a:17:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:47:\"/uncode/library/js/lib/jquery.smartmenus.min.js\";i:2;s:46:\"/uncode/library/js/lib/jquery.waypoints.min.js\";i:3;s:31:\"/uncode/library/js/utils.min.js\";i:4;s:36:\"/uncode/library/js/app-loader.min.js\";i:5;s:49:\"/uncode/library/js/preventDoubleTransition.min.js\";i:6;s:36:\"/uncode/library/js/animations.min.js\";i:7;s:36:\"/uncode/library/js/menuSystem.min.js\";i:8;s:46:\"/uncode/library/js/backgroundSelfVideos.min.js\";i:9;s:34:\"/uncode/library/js/carousel.min.js\";i:10;s:40:\"/uncode/library/js/uncode-owl-nav.min.js\";i:11;s:34:\"/uncode/library/js/tapHover.min.js\";i:12;s:36:\"/uncode/library/js/lib/inview.min.js\";i:13;s:44:\"/uncode/library/js/disableHoverScroll.min.js\";i:14;s:37:\"/uncode/library/js/printScreen.min.js\";i:15;s:46:\"/uncode/library/js/lib/owl.carousel(.*).min.js\";i:16;s:59:\"/wp-includes/js/mediaelement/mediaelement-and-player.min.js\";}s:7:\"summary\";s:105:\"When Delay JavaScript Execution is enabled, much of the page content doesn\'t load until user interaction.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";N;s:2:\"id\";s:38:\"theme:befde4783fdb847bc562ea6a5882381f\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1745440617;}s:36:\"96aa49eb-6372-4b4c-b70d-f29dede8a8f2\";O:8:\"stdClass\":9:{s:5:\"title\";s:31:\"Utouch - Load menu on page load\";s:9:\"condition\";s:6:\"utouch\";s:10:\"exclusions\";a:7:{i:0;s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:36:\"/wp-includes/js/jquery/jquery.min.js\";i:2;s:18:\"/utouch/js/main.js\";i:3;s:31:\"/utouch/js/swiper.jquery.min.js\";i:4;s:21:\"/utouch/js/fitvids.js\";i:5;s:27:\"/utouch/js/theme-plugins.js\";i:6;s:28:\"/utouch/js/crum-mega-menu.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:26:\"Display menu on page load.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:18284bf26abf49a1d5d60b3fb34e4c2d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444186;}s:36:\"4cc603bb-f291-4096-aeb6-7d54832541dc\";O:8:\"stdClass\":10:{s:5:\"title\";s:20:\"Vehica - Mobile Menu\";s:9:\"condition\";s:6:\"vehica\";s:10:\"exclusions\";a:2:{i:0;s:78:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\\\'|\"|>|$)\";i:1;s:57:\"/wp-content/plugins/vehica-core/assets/js/elements.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:73:\"Mobile menu requires double click to open if it\'s the first action taken.\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:14220090cf75437b8926ea110498274a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1754069979;}s:36:\"a1fbf155-720a-4704-9794-d6749ad6df59\";O:8:\"stdClass\":9:{s:5:\"title\";s:27:\"Vivo theme - Fix blank page\";s:9:\"condition\";s:4:\"vivo\";s:10:\"exclusions\";a:2:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:46:\"/vivo/framework/assets/js/bt_framework_misc.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:19:\"Fixes a blank page.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:a140e640fed504586e24e7c0df30376b\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444202;}s:36:\"5acb5d19-caa6-4deb-b7db-0051df4c3c3b\";O:8:\"stdClass\":8:{s:5:\"title\";s:11:\"Voxel Theme\";s:9:\"condition\";s:5:\"voxel\";s:10:\"exclusions\";a:7:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:7:\"/voxel/\";i:2;s:11:\"/elementor/\";i:3;s:15:\"/elementor-pro/\";i:4;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:5;s:26:\"ElementorProFrontendConfig\";i:6;s:23:\"elementorFrontendConfig\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:240a2be0a2b66b01f83abdcd83da7c7c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1720444241;}s:36:\"88e96479-1aa2-4adc-8f07-20bc0368a63f\";O:8:\"stdClass\":9:{s:5:\"title\";s:9:\"Werkstatt\";s:9:\"condition\";s:9:\"werkstatt\";s:10:\"exclusions\";a:6:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:21:\"/js/underscore.min.js\";i:3;s:34:\"/werkstatt/assets/js/vendor.min.js\";i:4;s:38:\"/werkstatt/assets/js/fullscreen.min.js\";i:5;s:31:\"/werkstatt/assets/js/app.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:36:\"Show animated elements on page load.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:38faa29db5a07b8fef6aee9cc11cafec\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444798;}s:36:\"60c4110b-a960-4d44-b619-6d79514dbf75\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"Woodmart\";s:9:\"condition\";s:8:\"woodmart\";s:10:\"exclusions\";a:9:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:3;s:24:\"/woodmart/js/scripts/wc/\";i:4;s:28:\"/woodmart/js/scripts/global/\";i:5;s:37:\"/woodmart/js/libs/owl.carousel.min.js\";i:6;s:33:\"/woodmart/js/libs/owl.carousel.js\";i:7;s:26:\"/woodmart/js/libs/slick.js\";i:8;s:37:\"/woodmart/js/libs/autocomplete.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:68:\"Show WooCommerce thumbnails on pageload & Show product image gallery\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:06338f13cb89e5309ad2eb7e4d457be4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444297;}s:36:\"a4547b5b-10ab-407c-969c-269fddec07b8\";O:8:\"stdClass\":9:{s:5:\"title\";s:25:\"Woodmart - Cart Fragments\";s:9:\"condition\";s:8:\"woodmart\";s:10:\"exclusions\";a:4:{i:0;s:75:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>)\";i:1;s:53:\"/woocommerce/assets/js/frontend/cart-fragments.min.js\";i:2;s:49:\"/woocommerce/assets/js/js-cookie/js.cookie.min.js\";i:3;s:49:\"/woodmart/js/scripts/wc/updateCartFragmentsFix.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:51:\"Fix problem with the quantity icon of the mini cart\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:591f4f1b2e86b1e987cd8789df3ffce3\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444280;}s:36:\"c385fdb6-ac41-4b00-a350-1e2e82445e22\";O:8:\"stdClass\":9:{s:5:\"title\";s:15:\"Woodmart - Menu\";s:9:\"condition\";s:8:\"woodmart\";s:10:\"exclusions\";a:4:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:49:\"/themes/woodmart/js/scripts/global/helpers.min.js\";i:2;s:51:\"/themes/woodmart/js/scripts/menu/menuOffsets.min.js\";i:3;s:38:\"/themes/woodmart/js/libs/swiper.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:200:\"When Delay JavaScript Execution is enabled, menu dropdowns won\'t work consistently when clicked (seems to happen if page is refreshed and no user interaction happens until after page is fully loaded).\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d8453e5704ad631dd785e452ce75c9f6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1729535544;}s:36:\"97066e39-027a-4cd6-9152-7b6b53f365f5\";O:8:\"stdClass\":9:{s:5:\"title\";s:22:\"Woodmart - Mobile Menu\";s:9:\"condition\";s:8:\"woodmart\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:56:\"/themes/woodmart/js/scripts/menu/mobileNavigation.min.js\";i:2;s:49:\"/themes/woodmart/js/scripts/global/helpers.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:46:\"Allow mobile menu to work with just one click.\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:d79a3941e2f12fb93ffc980ebeb1d7f4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444264;}s:36:\"b654d55b-8094-40a6-b145-48572d2c396d\";O:8:\"stdClass\":9:{s:5:\"title\";s:24:\"Woodmart - Sticky Header\";s:9:\"condition\";s:8:\"woodmart\";s:10:\"exclusions\";a:3:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:49:\"/themes/woodmart/js/scripts/global/helpers.min.js\";i:2;s:55:\"/themes/woodmart/js/scripts/header/headerBuilder.min.js\";}s:7:\"summary\";s:104:\"When Delay JavaScript Execution is enabled, the header is no longer sticky when scrolling down the page.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:aa0d7919216f3bb2e405069d206dfda4\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1729604626;}s:36:\"926d3769-8ce6-4137-b682-44124909d2cc\";O:8:\"stdClass\":10:{s:5:\"title\";s:40:\"WooVina - Fix Preloader and Hero section\";s:9:\"condition\";s:7:\"woovina\";s:10:\"exclusions\";a:17:{i:0;s:77:\"\\/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\\?(.*))?( |\'|\"|>|$)\";i:1;s:11:\"/elementor/\";i:2;s:15:\"/elementor-pro/\";i:3;s:35:\"/wp-includes/js/imagesloaded.min.js\";i:4;s:26:\"ElementorProFrontendConfig\";i:5;s:23:\"elementorFrontendConfig\";i:6;s:28:\"/happy-elementor-addons-pro/\";i:7;s:43:\"/header-footer-elementor/inc/js/frontend.js\";i:8;s:37:\"/wp-includes/js/jquery/ui/core.min.js\";i:9;s:37:\"/wp-includes/js/dist/api-fetch.min.js\";i:10;s:33:\"/wp-includes/js/dist/hooks.min.js\";i:11;s:32:\"/wp-includes/js/dist/i18n.min.js\";i:12;s:47:\"/woovina-preloader/assets/js/wvp-main-script.js\";i:13;s:30:\"/woovina/assets/js/main.min.js\";i:14;s:56:\"/woovina-elementor-widgets/assets/js/wew-frontend.min.js\";i:15;s:57:\"/woovina-elementor-widgets/assets/js/blog-carousel.min.js\";i:16;s:48:\"/woovina-elementor-widgets/assets/js/tabs.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:32:\"Fixes preloader and hero section\";s:4:\"type\";s:5:\"theme\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:38:\"theme:23a0047d6cddc8e93a6695e42aa24da0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1739814571;}s:36:\"119ebd1c-6b46-4f07-8d6a-3498d9c8814f\";O:8:\"stdClass\":8:{s:5:\"title\";s:6:\"XStore\";s:9:\"condition\";s:6:\"xstore\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:11:\"/xstore/js/\";i:3;s:66:\"/et-core-plugin/packages/st-woo-swatches/public/js/frontend.min.js\";}s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:3de9d9ba385200548f177d9c704ae92a\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1679738190;}s:36:\"9a7a548c-07a1-4dff-93fc-6e8230b67853\";O:8:\"stdClass\":9:{s:5:\"title\";s:12:\"YOOtheme Pro\";s:9:\"condition\";s:8:\"yootheme\";s:10:\"exclusions\";a:3:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:12:\"uikit.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:65:\"Show animations and image in header on page load.\r\n\r\n\r\n/yootheme/\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:119d329456073aa10969d7cbd9760f28\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444774;}s:36:\"f74c499e-b7d9-4590-8671-379f51f468c8\";O:8:\"stdClass\":9:{s:5:\"title\";s:4:\"Zeen\";s:9:\"condition\";s:4:\"zeen\";s:10:\"exclusions\";a:4:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:16:\"/zeen/assets/js/\";i:3;s:17:\"/js.cookie.min.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:29:\"Starts animations on pageload\";s:4:\"type\";s:5:\"theme\";s:2:\"id\";s:38:\"theme:acb52844f996627788836366404a3245\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1724444815;}}s:7:\"scripts\";O:8:\"stdClass\":4:{s:9:\"analytics\";O:8:\"stdClass\":4:{s:36:\"2499bb90-0753-4b2b-9bd4-1525f94c7437\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"Google Analytics\";s:10:\"exclusions\";a:3:{i:0;s:33:\"google-analytics.com/analytics.js\";i:1;s:6:\"ga\\( \'\";i:2;s:5:\"ga\\(\'\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:16:\"Google Analytics\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"script:d86cf69a8b82547a94ca3f6a307cf9a6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096382;}s:36:\"ac2d5720-9418-468c-80a0-3874ee743c0f\";O:8:\"stdClass\":9:{s:5:\"title\";s:15:\"Google Optimize\";s:10:\"exclusions\";a:3:{i:0;s:17:\"a,s,y,n,c,h,i,d,e\";i:1;s:30:\"googleoptimize.com/optimize.js\";i:2;s:10:\"async-hide\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:34:\"Prevent a flicker or blank screen.\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"script:031a0cece38c4739df67f910dcabf1bd\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096440;}s:36:\"219277ae-b2ac-4d42-913d-eaea40985295\";O:8:\"stdClass\":9:{s:5:\"title\";s:18:\"Google Tag Manager\";s:10:\"exclusions\";a:4:{i:0;s:8:\"/gtag/js\";i:1;s:6:\"gtag\\(\";i:2;s:7:\"/gtm.js\";i:3;s:10:\"async-hide\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"script:1d3c65b2b03ef35e14df6b163ea3a1f6\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1733481215;}s:36:\"f632e3f4-20e6-471e-a78d-86afbea63586\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"HubSpot\";s:10:\"exclusions\";a:5:{i:0;s:45:\"/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js\";i:1;s:25:\"/jquery-migrate(.min)?.js\";i:2;s:18:\"js(.*).hsforms.net\";i:3;s:18:\"hbspt.forms.create\";i:4;s:37:\"MeetingsEmbed/ex/MeetingsEmbedCode.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:16:\"Display the form\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:9:\"analytics\";s:2:\"id\";s:39:\"script:de4bd8ef4675ebb85a055955de76d0ee\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1742318463;}}s:11:\"ad_networks\";O:8:\"stdClass\":4:{s:36:\"dd0c5a5b-ec56-49f9-9aa4-89e1e3a6a28a\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Amazon Ads\";s:10:\"exclusions\";a:1:{i:0;s:19:\"amazon-adsystem.com\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:15:\"To show the ads\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:11:\"ad_networks\";s:2:\"id\";s:39:\"script:b82a5936d8ea0745016caeb71629ae5d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734083105;}s:36:\"980edf32-c64b-4370-bf23-c62b079e71c3\";O:8:\"stdClass\":9:{s:5:\"title\";s:14:\"Google AdSense\";s:10:\"exclusions\";a:1:{i:0;s:11:\"adsbygoogle\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:14:\"Google Adsense\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:11:\"ad_networks\";s:2:\"id\";s:39:\"script:0206e6040c8ff64b8d6ee5fef2ce1c90\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096273;}s:36:\"49c38c0a-43b9-4237-88cb-57ddd519f0ad\";O:8:\"stdClass\":9:{s:5:\"title\";s:13:\"Venatus Media\";s:10:\"exclusions\";a:2:{i:0;s:18:\"/ad-manager.min.js\";i:1;s:8:\"__vm_add\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:22:\"Show ads on page load.\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:11:\"ad_networks\";s:2:\"id\";s:39:\"script:abe11528732aed9a19a97e73b242faa5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096334;}s:36:\"0627fe24-7e9d-400f-b064-d98bec2ba85e\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Yandex Ads\";s:10:\"exclusions\";a:2:{i:0;s:9:\"yandex.ru\";i:1;s:18:\"window.yaContextCb\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:31:\"Display Ads without interaction\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:11:\"ad_networks\";s:2:\"id\";s:39:\"script:dbd1875130c71eb4b2ef768ad18d820c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096360;}}s:18:\"payment_processors\";O:8:\"stdClass\":1:{s:36:\"05d3eb78-f574-49be-95e1-3f11714005d1\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Stripe\";s:10:\"exclusions\";a:1:{i:0;s:13:\"js.stripe.com\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:43:\"Fixes ReferenceError: Stripe is not defined\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:18:\"payment_processors\";s:2:\"id\";s:39:\"script:ce7566d1d08cc094b74cf283cf9c56a5\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734077637;}}s:14:\"other_services\";O:8:\"stdClass\":12:{s:36:\"6f2f3fce-7671-416a-a322-08875c4badb5\";O:8:\"stdClass\":9:{s:5:\"title\";s:20:\"Cloudflare Turnstile\";s:10:\"exclusions\";a:2:{i:0;s:25:\"cloudflare.com/turnstile/\";i:1;s:12:\"cf-turnstile\";}s:7:\"summary\";s:74:\"While DJE applied, the Cloudflare Turnstile Captcha doesn\'t appear at all.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:7b1ae689f336775afa7835a9da7be645\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1742993345;}s:36:\"6f460036-3106-4b8c-9951-d32de9b1258f\";O:8:\"stdClass\":9:{s:5:\"title\";s:11:\"Google Maps\";s:10:\"exclusions\";a:2:{i:0;s:19:\"maps.googleapis.com\";i:1;s:15:\"maps.google.com\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:11:\"Google Maps\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:4d60ab2c6d11d753267484006c23e54c\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096371;}s:36:\"122e6ebb-51fd-477f-97fb-559593f1a48b\";O:8:\"stdClass\":9:{s:5:\"title\";s:16:\"Google Recaptcha\";s:10:\"exclusions\";a:1:{i:0;s:9:\"recaptcha\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:51:\"Fixes dependency issues related to Google Recaptcha\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:032cb16577cbf07bc7c02bac83bd936d\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096345;}s:36:\"668df886-2f43-46fa-8426-7be3d7f7d150\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"LeadConnector Chatbox\";s:10:\"exclusions\";a:1:{i:0;s:22:\"/chat-widget/loader.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:528:\"The chatbox icon/button does not display until user interaction.\r\n\r\nThis should likely be moved to a new category aside from \'Other Services\' once the categories are expanded. Most likely \'Widgets\'.\r\n\r\nRelated discussion:\r\nhttps://wp-media.slack.com/archives/C43T1AYMQ/p1734619420716789?thread_ts=1734605228.860859&cid=C43T1AYMQ\r\n\r\nWebsite using this Chatbox:\r\nhttps://premiermarketingus.com\r\n\r\nIt uses a custom element for the Chatbox that could be used for limiting display in UI to only sites using this widget: <chat-widget>\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:eeda31f2e95b6f4c2107aebe2887bfe8\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734620886;}s:36:\"5d606add-ffb8-4a06-b295-5f722710fbfd\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Refari\";s:10:\"exclusions\";a:2:{i:0;s:16:\"widget.refari.co\";i:1;s:6:\"refari\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:13:\"www.refari.co\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:a705e197b13b47e72a105c923e044358\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096181;}s:36:\"742ec14a-27a1-4789-b9c8-a9c3a3cf7042\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Reviews.io\";s:10:\"exclusions\";a:2:{i:0;s:35:\"/carousel-inline-iframeless/dist.js\";i:1;s:20:\"carouselInlineWidget\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:33:\"Prevents the widget from breaking\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:4df445c576f45889506ba175a4c39fdc\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096412;}s:36:\"0a37e528-8718-49f7-a26d-059aa29f867d\";O:8:\"stdClass\":9:{s:5:\"title\";s:10:\"Trustindex\";s:10:\"exclusions\";a:2:{i:0;s:27:\"cdn.trustindex.io/loader.js\";i:1;s:32:\"cdn.trustindex.io/loader-cert.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:39:\"Trustindex element is shown immediately\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:1d38d6195597e8bb81966870f0a4f939\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096229;}s:36:\"dda024ec-4539-4a00-aee8-d9522aa9ba27\";O:8:\"stdClass\":9:{s:5:\"title\";s:31:\"Trustindex - Load Rich Snippets\";s:10:\"exclusions\";a:1:{i:0;s:42:\"cdn.trustindex.io/assets/js/richsnippet.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:117:\"Allow Trustindex Rich Snippets JavaScript to be loaded on the page and show up in Google\'s Rich Snippet Testing Tool.\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:55d971acbd86a7676772bca65c37c0c0\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1752130743;}s:36:\"ce9a3865-9efa-4e98-ae10-4f842a4ecc22\";O:8:\"stdClass\":9:{s:5:\"title\";s:8:\"Typeform\";s:10:\"exclusions\";a:1:{i:0;s:14:\"/next/embed.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:34:\"Load Typeforms without interaction\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:cd3889ae3b96f891186ae270dbbcc9bb\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096391;}s:36:\"b56bf06c-2f8c-4757-b536-a689fb0e75f9\";O:8:\"stdClass\":9:{s:5:\"title\";s:7:\"Typekit\";s:10:\"exclusions\";a:1:{i:0;s:7:\"typekit\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:31:\"Load Typekit fonts on page load\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:7815e38b93e3b500a632681bd594bd61\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096353;}s:36:\"03819e72-abf5-4057-9047-16d45db4641e\";O:8:\"stdClass\":9:{s:5:\"title\";s:21:\"Vidalytics - Autoplay\";s:10:\"exclusions\";a:1:{i:0;s:16:\"vidalytics_embed\";}s:7:\"summary\";s:93:\"Allows the autoplay functionality to work for videos without need for user interaction first.\";s:8:\"icon_url\";s:0:\"\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:113087c8df349e7c8b86875b46071855\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1736531452;}s:36:\"2c1d0998-8ab5-478c-8eb9-9e375b46363e\";O:8:\"stdClass\":9:{s:5:\"title\";s:6:\"Wistia\";s:10:\"exclusions\";a:2:{i:0;s:15:\"fast.wistia.com\";i:1;s:24:\"/assets/external/E-v1.js\";}s:8:\"icon_url\";s:0:\"\";s:7:\"summary\";s:23:\"Show video on page load\";s:4:\"type\";s:6:\"script\";s:8:\"category\";s:14:\"other_services\";s:2:\"id\";s:39:\"script:9a0111f8c3186c1cb3113587c660c041\";s:10:\"is_default\";i:0;s:10:\"created_at\";i:1734096254;}}}}","off");

INSERT IGNORE INTO `wp_options` VALUES 
("17507","_transient_timeout_as-post-store-dependencies-met","1783103821","off"),
("17508","_transient_as-post-store-dependencies-met","yes","off"),
("17509","edd_sl_a3082723c63b116f21b97dfd1be654bd","a:2:{s:7:\"timeout\";i:1783060624;s:5:\"value\";s:2:\"\"\"\";}","off"),
("17510","duplicator_expire_tmp_cleanup_check","{\"expire\":1783103825,\"value\":true}","on"),
("17511","duplicator_expire_rename_delay","{\"expire\":1783060625,\"value\":true}","on"),
("17512","duplicator_expire_duplicator_pro_frotend_delay","{\"expire\":1783017486,\"value\":true}","on"),
("17513","duplicator_expire_license_check","{\"expire\":1783017487,\"value\":true}","on"),
("17514","duplicator_pro_package_active","{\n    \"ID\": null,\n    \"Created\": \"2026-07-02 18:37:22\",\n    \"Version\": \"4.5.10\",\n    \"VersionWP\": \"7.0\",\n    \"VersionDB\": \"10.11.18\",\n    \"VersionPHP\": \"8.2.31\",\n    \"VersionOS\": \"Linux\",\n    \"Name\": \"20260702_drsoheila\",\n    \"Hash\": \"54857d0346c0eb4d8153_20260702183722\",\n    \"NameHash\": \"20260702_drsoheila_54857d0346c0eb4d8153_20260702183722\",\n    \"Type\": 0,\n    \"notes\": \"\",\n    \"StorePath\": \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\\/tmp\",\n    \"StoreURL\": \"https:\\/\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\\/\",\n    \"ScanFile\": \"20260702_drsoheila_54857d0346c0eb4d8153_20260702183722_scan.json\",\n    \"timer_start\": -1,\n    \"Runtime\": \"\",\n    \"ExeSize\": \"0\",\n    \"ZipSize\": \"0\",\n    \"Brand\": \"Default\",\n    \"Brand_ID\": -1,\n    \"ziparchive_mode\": 0,\n    \"Archive\": {\n        \"ExportOnlyDB\": 0,\n        \"FilterDirs\": \"\",\n        \"FilterExts\": \"\",\n        \"FilterFiles\": \"\",\n        \"FilterDirsAll\": [\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.opcache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.tmb\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/ai1wm-backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-lite\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backups-dup-pro\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/backupwordpress\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/bps-backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/content\\/cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/contents\\/cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/infinitewp\\/backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/managewp\\/backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/old-cache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/plugins\\/wordfence\\/tmp\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/updraft\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/aiowps_backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/backup-guard\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/backupbuddy_backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/backupbuddy_temp\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/mainwp\\/backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/pb_backupbuddy\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/snapshots\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/sucuri\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/wp-clone\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/wp_all_backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/uploads\\/wpbackitup_backups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/wfcache\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/wishlist-backup\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-content\\/wpvividbackups\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-snapshots\"\n        ],\n        \"FilterExtsAll\": [],\n        \"FilterFilesAll\": [\n            \".DS_Store\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.htaccess\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/.user.ini\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/php.ini\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/web.config\",\n            \"\\/home\\/cugzileb\\/dr.frex.digital\\/wp-config.php\",\n            \"dbcache\",\n            \"debug_log\",\n            \"error_log\",\n            \"objectcache\",\n            \"pgcache\",\n            \"ws_ftp.log\"\n        ],\n        \"FilterOn\": 0,\n        \"FilterNames\": false,\n        \"File\": null,\n        \"Format\": \"ZIP\",\n        \"PackDir\": \"\\/home\\/cugzileb\\/dr.frex.digital\",\n        \"Size\": 825413918,\n        \"Dirs\": null,\n        \"DirCount\": 2441,\n        \"RecursiveLinks\": [],\n        \"Files\": null,\n        \"FileCount\": 21878,\n        \"file_count\": -1,\n        \"FilterInfo\": {\n            \"Dirs\": {\n                \"AddonSites\": [],\n                \"Size\": [],\n                \"Core\": [],\n                \"Global\": [],\n                \"Instance\": [],\n                \"Unreadable\": []\n            },\n            \"Files\": {\n                \"Size\": [],\n                \"Core\": [],\n                \"Global\": [],\n                \"Instance\": [],\n                \"Unreadable\": []\n            },\n            \"Exts\": {\n                \"Core\": [],\n                \"Global\": [],\n                \"Instance\": [],\n                \"Unreadable\": []\n            },\n            \"TreeSize\": null\n        },\n        \"ListDelimiter\": \"\\n\"\n    },\n    \"Multisite\": {\n        \"FilterSites\": \"\"\n    },\n    \"Installer\": {\n        \"File\": \"\",\n        \"Size\": 0,\n        \"OptsSecureOn\": 0,\n        \"passowrd\": \"BfuknQmAnUb9B+4APGT3vR9a2h8QeQF2HdSAeGbKF528bn5W+zJUtamWNkEvyiZYYtCWwgd9yCdcCw6DBzfmWw==\",\n        \"OptsSecurePass\": \"\",\n        \"OptsSkipScan\": 0,\n        \"OptsDBHost\": \"\",\n        \"OptsDBName\": \"\",\n        \"OptsDBUser\": \"\",\n        \"OptsCPNLHost\": \"\",\n        \"OptsCPNLUser\": \"\",\n        \"OptsCPNLPass\": \"\",\n        \"OptsCPNLEnable\": 0,\n        \"OptsCPNLConnect\": false,\n        \"OptsCPNLDBAction\": \"create\",\n        \"OptsCPNLDBHost\": \"\",\n        \"OptsCPNLDBName\": \"\",\n        \"OptsCPNLDBUser\": \"\",\n        \"numFilesAdded\": 0,\n        \"numDirsAdded\": 0\n    },\n    \"Database\": {\n        \"info\": {\n            \"buildMode\": \"PHPCHUNKING\",\n            \"charSetList\": [\n                \"utf8mb4\",\n                \"ascii\",\n                \"latin1\"\n            ],\n            \"collationList\": [\n                \"ascii_general_ci\",\n                \"latin1_swedish_ci\",\n                \"utf8mb4_unicode_520_ci\"\n            ],\n            \"engineList\": [\n                \"InnoDB\",\n                \"MyISAM\",\n                \"MEMORY\"\n            ],\n            \"isTablesUpperCase\": false,\n            \"isNameUpperCase\": false,\n            \"name\": \"cugzileb_drsohdb\",\n            \"tablesBaseCount\": 50,\n            \"tablesFinalCount\": 50,\n            \"muFilteredTableCount\": 0,\n            \"tablesRowCount\": 7305,\n            \"tablesSizeOnDisk\": 141767364,\n            \"tablesList\": {\n                \"wp_actionscheduler_actions\": {\n                    \"inaccurateRows\": 133,\n                    \"insertedRows\": false,\n                    \"size\": 180224\n                },\n                \"wp_actionscheduler_claims\": {\n                    \"inaccurateRows\": 3,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_actionscheduler_groups\": {\n                    \"inaccurateRows\": 4,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_actionscheduler_logs\": {\n                    \"inaccurateRows\": 397,\n                    \"insertedRows\": false,\n                    \"size\": 98304\n                },\n                \"wp_awb_critical_css\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_commentmeta\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_comments\": {\n                    \"inaccurateRows\": 1,\n                    \"insertedRows\": false,\n                    \"size\": 98304\n                },\n                \"wp_duplicator_activity_logs\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 14948\n                },\n                \"wp_duplicator_backups\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 81204\n                },\n                \"wp_duplicator_entities\": {\n                    \"inaccurateRows\": 8,\n                    \"insertedRows\": false,\n                    \"size\": 40276\n                },\n                \"wp_duplicator_packages\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_duplicator_pro_entities\": {\n                    \"inaccurateRows\": 5,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_duplicator_pro_packages\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_fusion_forms\": {\n                    \"inaccurateRows\": 4,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_fusion_form_entries\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_fusion_form_fields\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_fusion_form_submissions\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_gf_draft_submissions\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_gf_entry\": {\n                    \"inaccurateRows\": 12,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_gf_entry_meta\": {\n                    \"inaccurateRows\": 81,\n                    \"insertedRows\": false,\n                    \"size\": 65536\n                },\n                \"wp_gf_entry_notes\": {\n                    \"inaccurateRows\": 11,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_gf_form\": {\n                    \"inaccurateRows\": 2,\n                    \"insertedRows\": false,\n                    \"size\": 16384\n                },\n                \"wp_gf_form_meta\": {\n                    \"inaccurateRows\": 2,\n                    \"insertedRows\": false,\n                    \"size\": 16384\n                },\n                \"wp_gf_form_revisions\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_gf_form_view\": {\n                    \"inaccurateRows\": 35,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_imunify_bot_rl\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 0\n                },\n                \"wp_links\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_options\": {\n                    \"inaccurateRows\": 394,\n                    \"insertedRows\": false,\n                    \"size\": 6438912\n                },\n                \"wp_postmeta\": {\n                    \"inaccurateRows\": 3838,\n                    \"insertedRows\": false,\n                    \"size\": 2965504\n                },\n                \"wp_posts\": {\n                    \"inaccurateRows\": 1800,\n                    \"insertedRows\": false,\n                    \"size\": 128581632\n                },\n                \"wp_sbi_feeds\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_sbi_feed_caches\": {\n                    \"inaccurateRows\": 13,\n                    \"insertedRows\": false,\n                    \"size\": 1081344\n                },\n                \"wp_sbi_instagram_feeds_posts\": {\n                    \"inaccurateRows\": 39,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_sbi_instagram_feed_locator\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_sbi_instagram_posts\": {\n                    \"inaccurateRows\": 32,\n                    \"insertedRows\": false,\n                    \"size\": 409600\n                },\n                \"wp_sbi_sources\": {\n                    \"inaccurateRows\": 2,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_termmeta\": {\n                    \"inaccurateRows\": 138,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_terms\": {\n                    \"inaccurateRows\": 28,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_term_relationships\": {\n                    \"inaccurateRows\": 105,\n                    \"insertedRows\": false,\n                    \"size\": 32768\n                },\n                \"wp_term_taxonomy\": {\n                    \"inaccurateRows\": 31,\n                    \"insertedRows\": false,\n                    \"size\": 49152\n                },\n                \"wp_usermeta\": {\n                    \"inaccurateRows\": 35,\n                    \"insertedRows\": false,\n                    \"size\": 15668\n                },\n                \"wp_users\": {\n                    \"inaccurateRows\": 1,\n                    \"insertedRows\": false,\n                    \"size\": 8356\n                },\n                \"wp_wow_fmp\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 16384\n                },\n                \"wp_wpr_above_the_fold\": {\n                    \"inaccurateRows\": 16,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_lazy_render_content\": {\n                    \"inaccurateRows\": 16,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_performance_monitoring\": {\n                    \"inaccurateRows\": 1,\n                    \"insertedRows\": false,\n                    \"size\": 114688\n                },\n                \"wp_wpr_preconnect_external_domains\": {\n                    \"inaccurateRows\": 16,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_preload_fonts\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 81920\n                },\n                \"wp_wpr_rocket_cache\": {\n                    \"inaccurateRows\": 102,\n                    \"insertedRows\": false,\n                    \"size\": 65536\n                },\n                \"wp_wpr_rucss_used_css\": {\n                    \"inaccurateRows\": 0,\n                    \"insertedRows\": false,\n                    \"size\": 114688\n                }\n            },\n            \"dbEngine\": \"MariaDB\",\n            \"version\": \"10.11.18\",\n            \"versionComment\": \"MariaDB Server\",\n            \"viewCount\": 0,\n            \"procCount\": 0,\n            \"funcCount\": 0,\n            \"triggerList\": []\n        },\n        \"Type\": \"MySQL\",\n        \"Size\": 0,\n        \"File\": \"\",\n        \"FilterTables\": \"\",\n        \"FilterOn\": 0,\n        \"prefixFilter\": false,\n        \"prefixSubFilter\": false,\n        \"DBMode\": \"PHP\",\n        \"Compatible\": \"\",\n        \"Comments\": \"MariaDB Server\",\n        \"dbStorePathPublic\": \"\"\n    },\n    \"Status\": 5,\n    \"schedule_id\": -1,\n    \"build_progress\": {\n        \"thread_start_time\": 0,\n        \"initialized\": false,\n        \"installer_built\": false,\n        \"archive_started\": false,\n        \"archive_start_time\": 0,\n        \"archive_has_database\": false,\n        \"archive_built\": false,\n        \"database_script_built\": false,\n        \"failed\": false,\n        \"next_archive_file_index\": 0,\n        \"next_archive_dir_index\": 0,\n        \"retries\": 0,\n        \"current_build_mode\": -1,\n        \"current_build_compression\": true,\n        \"dupCreate\": null,\n        \"dupExpand\": null,\n        \"warnings\": []\n    },\n    \"db_build_progress\": {\n        \"tablesToProcess\": [],\n        \"validationStage1\": false,\n        \"doneInit\": false,\n        \"doneFiltering\": false,\n        \"doneCreates\": false,\n        \"completed\": false,\n        \"startTime\": 0,\n        \"wasInterrupted\": false,\n        \"errorOut\": false,\n        \"failureCount\": 0,\n        \"countCheckData\": {\n            \"impreciseTotalRows\": 0,\n            \"countTotal\": 0,\n            \"tables\": []\n        }\n    },\n    \"upload_infos\": [\n        {\n            \"storage_id\": \"-2\",\n            \"archive_offset\": 0,\n            \"copied_installer\": false,\n            \"copied_archive\": false,\n            \"progress\": 0,\n            \"num_failures\": 0,\n            \"failed\": false,\n            \"cancelled\": false,\n            \"upload_id\": null,\n            \"failure_count\": 0,\n            \"data\": \"\",\n            \"data2\": \"\",\n            \"has_started\": false,\n            \"status_message_details\": \"\",\n            \"started_timestamp\": null,\n            \"stopped_timestamp\": null,\n            \"chunkPosition\": []\n        }\n    ],\n    \"active_storage_id\": -1,\n    \"template_id\": 4\n}","auto");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("3","5","_edit_last","1"),
("4","5","_wp_page_template","100-width.php"),
("5","5","_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:\"-1px\";}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\";}"),
("6","5","fusion_builder_status","active"),
("8","7","_fusion","a:16:{s:17:\"header_breakpoint\";s:5:\"small\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:16:\"color8_overwrite\";s:7:\"#22201d\";s:16:\"color5_overwrite\";s:7:\"#e86247\";s:16:\"color6_overwrite\";s:7:\"#c34535\";s:21:\"typography3_overwrite\";a:5:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:9:\"font-size\";s:4:\"16px\";}s:21:\"typography4_overwrite\";a:7:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"20px\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f7efdc\";s:16:\"color3_overwrite\";s:7:\"#e2d4d0\";s:16:\"color4_overwrite\";s:7:\"#e5cd30\";s:16:\"color7_overwrite\";s:7:\"#3d3a36\";}"),
("94","7","_fusion_google_fonts","a:2:{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)\";}}}"),
("95","7","fusion_builder_status","active"),
("96","19","_fusion","a:1:{s:15:\"custom_icon_set\";a:7:{s:13:\"attachment_id\";s:3:\"845\";s:17:\"icon_set_dir_name\";s:10:\"Dance-v1.4\";s:7:\"service\";s:7:\"icomoon\";s:10:\"css_prefix\";s:11:\"icon-dance-\";s:5:\"icons\";a:10:{i:0;s:5:\"times\";i:1;s:4:\"bars\";i:2;s:5:\"graph\";i:3;s:4:\"menu\";i:4;s:6:\"adress\";i:5;s:5:\"arrow\";i:6;s:5:\"phone\";i:7;s:3:\"tag\";i:8;s:4:\"time\";i:9;s:4:\"user\";}s:10:\"icon_count\";i:10;s:11:\"icon_set_id\";s:32:\"419ee836f207c09d92566feaa14320d2\";}}"),
("97","19","_edit_lock","1706803673:7496"),
("100","19","_edit_last","7496"),
("103","25","_wp_attached_file","2023/07/logo.svg"),
("104","25","_wp_attachment_metadata","a:3:{s:8:\"filesize\";i:17599;s:5:\"width\";i:197;s:6:\"height\";i:42;}"),
("107","28","_wp_attached_file","2023/07/pattern-2.svg"),
("108","28","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:459;}"),
("109","5","avada_post_views_count","2969"),
("110","5","avada_today_post_views_count","187"),
("111","5","avada_post_views_count_today_date","02-07-2026"),
("117","47","_menu_item_type","post_type"),
("118","47","_menu_item_menu_item_parent","0"),
("119","47","_menu_item_object_id","5"),
("120","47","_menu_item_object","page"),
("121","47","_menu_item_target",""),
("122","47","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("123","47","_menu_item_xfn",""),
("124","47","_menu_item_url",""),
("126","47","_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:\"\";}"),
("127","48","_edit_last","7496"),
("128","48","_wp_page_template","100-width.php"),
("129","48","_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\";}"),
("130","48","fusion_builder_status","active"),
("132","50","_edit_last","7496"),
("133","50","_wp_page_template","100-width.php"),
("134","50","_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\";}"),
("135","50","fusion_builder_status","active"),
("137","52","_edit_last","7496"),
("138","52","_wp_page_template","100-width.php"),
("139","52","_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\";}"),
("140","52","fusion_builder_status","active"),
("142","54","_edit_last","7496"),
("143","54","_wp_page_template","100-width.php"),
("144","54","_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\";}"),
("145","54","fusion_builder_status","active"),
("147","56","_edit_last","7496"),
("148","56","_wp_page_template","100-width.php"),
("149","56","_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\";}"),
("150","56","fusion_builder_status","active"),
("152","59","_menu_item_type","post_type"),
("153","59","_menu_item_menu_item_parent","0"),
("154","59","_menu_item_object_id","48"),
("155","59","_menu_item_object","page"),
("156","59","_menu_item_target",""),
("157","59","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("158","59","_menu_item_xfn",""),
("159","59","_menu_item_url",""),
("161","59","_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:\"\";}"),
("172","61","_menu_item_type","post_type"),
("173","61","_menu_item_menu_item_parent","0"),
("174","61","_menu_item_object_id","56"),
("175","61","_menu_item_object","page"),
("176","61","_menu_item_target",""),
("177","61","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("178","61","_menu_item_xfn",""),
("179","61","_menu_item_url",""),
("181","61","_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:\"\";}"),
("210","96","_wp_attached_file","2023/07/hero-1-scaled.jpg"),
("211","96","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1155;s:4:\"file\";s:25:\"2023/07/hero-1-scaled.jpg\";s:8:\"filesize\";i:251959;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"hero-1-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5928;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"hero-1-1024x462.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"hero-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"hero-1-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23836;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"hero-1-1536x693.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85109;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"hero-1-2048x924.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:924;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154996;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"hero-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17963;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"hero-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9682;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"hero-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33548;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"hero-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2480;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"hero-1-200x90.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3803;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"hero-1-400x180.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8776;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"hero-1-600x271.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16037;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"hero-1-800x361.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25680;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"hero-1-1200x541.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52642;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"hero-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32394;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"hero-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15725;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"hero-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16985;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"hero-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10214;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"hero-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5699;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"hero-1.jpg\";}"),
("212","5","_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-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}"),
("222","48","avada_post_views_count","743"),
("223","48","avada_today_post_views_count","9"),
("224","48","avada_post_views_count_today_date","02-07-2026"),
("225","50","avada_post_views_count","486"),
("226","50","avada_today_post_views_count","8"),
("227","50","avada_post_views_count_today_date","02-07-2026"),
("228","52","avada_post_views_count","597"),
("229","52","avada_today_post_views_count","8"),
("230","52","avada_post_views_count_today_date","02-07-2026"),
("234","135","_wp_attached_file","2023/07/class-1.jpg"),
("235","135","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:992;s:4:\"file\";s:19:\"2023/07/class-1.jpg\";s:8:\"filesize\";i:163813;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"class-1-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"class-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8273;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"class-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37693;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"class-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16462;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:19:\"class-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60940;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"class-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3049;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"class-1-200x266.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15867;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"class-1-400x532.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47622;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:19:\"class-1-600x798.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95572;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:19:\"class-1-746x400.jpg\";s:5:\"width\";i:746;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68497;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:19:\"class-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31655;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:19:\"class-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29760;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:19:\"class-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16678;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:19:\"class-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8700;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("236","140","_wp_attached_file","2023/07/Dance-v1.2.zip"),
("237","140","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:35419;}"),
("238","140","_fusion_icon_set_id","b37d4650ab6bcd16657b72b343cb9595"),
("240","145","_wp_attached_file","2023/07/class-2.jpg"),
("241","145","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:992;s:4:\"file\";s:19:\"2023/07/class-2.jpg\";s:8:\"filesize\";i:126056;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"class-2-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17865;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"class-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9178;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"class-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36781;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"class-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18036;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:19:\"class-2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59303;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"class-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3377;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"class-2-200x266.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14787;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"class-2-400x532.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42268;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:19:\"class-2-600x798.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81043;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:19:\"class-2-746x400.jpg\";s:5:\"width\";i:746;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60694;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:19:\"class-2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32549;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:19:\"class-2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31254;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:19:\"class-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17953;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:19:\"class-2-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9528;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("242","146","_wp_attached_file","2023/07/class-3.jpg"),
("243","146","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:992;s:4:\"file\";s:19:\"2023/07/class-3.jpg\";s:8:\"filesize\";i:86835;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"class-3-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14390;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"class-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6831;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"class-3-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23238;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"class-3-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12802;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:19:\"class-3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39062;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"class-3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2797;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"class-3-200x266.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12127;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"class-3-400x532.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32330;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:19:\"class-3-600x798.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59133;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:19:\"class-3-746x400.jpg\";s:5:\"width\";i:746;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38079;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:19:\"class-3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21042;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:19:\"class-3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21296;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:19:\"class-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13165;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:19:\"class-3-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7360;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("244","154","_wp_attached_file","2023/07/info-1.jpg"),
("245","154","_wp_attachment_metadata","a:6:{s:5:\"width\";i:986;s:6:\"height\";i:1148;s:4:\"file\";s:18:\"2023/07/info-1.jpg\";s:8:\"filesize\";i:124551;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-1-258x300.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15806;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-1-879x1024.jpg\";s:5:\"width\";i:879;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6806;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-1-768x894.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:894;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79000;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21805;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12043;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36377;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2813;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-1-200x233.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11024;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-1-400x466.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29416;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-1-600x699.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54053;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-1-800x931.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:931;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84566;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39363;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19810;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19821;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12453;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7073;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("248","160","_fusion","a:24:{s:14:\"special_effect\";s:4:\"none\";s:13:\"setup_content\";s:2:\"no\";s:16:\"color2_overwrite\";s:7:\"#fcf4db\";s:16:\"color3_overwrite\";s:7:\"#fbdf98\";s:16:\"color4_overwrite\";s:7:\"#bab080\";s:16:\"color5_overwrite\";s:7:\"#0d6e59\";s:16:\"color6_overwrite\";s:7:\"#073d31\";s:16:\"color7_overwrite\";s:7:\"#031c17\";s:16:\"color8_overwrite\";s:7:\"#001214\";s:7:\"h1_size\";s:4:\"67px\";s:7:\"h2_size\";s:4:\"50px\";s:7:\"h3_size\";s:4:\"39px\";s:7:\"h4_size\";s:4:\"28px\";s:7:\"h5_size\";s:4:\"21px\";s:7:\"h6_size\";s:4:\"16px\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:12:\"Montagu Slab\";s:11:\"font-backup\";s:14:\"Georgia, serif\";s:9:\"font-size\";s:4:\"67px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Glory\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Glory\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.7\";s:14:\"letter-spacing\";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\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";}"),
("250","161","_menu_item_type","custom"),
("251","161","_menu_item_menu_item_parent","0"),
("252","161","_menu_item_object_id","161"),
("253","161","_menu_item_object","custom"),
("254","161","_menu_item_target",""),
("255","161","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("256","161","_menu_item_xfn",""),
("257","161","_menu_item_url","#"),
("258","161","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("259","161","_avada_studio_post","1367"),
("260","162","_menu_item_type","custom"),
("261","162","_menu_item_menu_item_parent","0"),
("262","162","_menu_item_object_id","162"),
("263","162","_menu_item_object","custom"),
("264","162","_menu_item_target",""),
("265","162","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("266","162","_menu_item_xfn",""),
("267","162","_menu_item_url","#"),
("268","162","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("269","162","_avada_studio_post","1365"),
("270","163","_menu_item_type","custom"),
("271","163","_menu_item_menu_item_parent","0"),
("272","163","_menu_item_object_id","163"),
("273","163","_menu_item_object","custom"),
("274","163","_menu_item_target",""),
("275","163","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("276","163","_menu_item_xfn",""),
("277","163","_menu_item_url","#"),
("278","163","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("279","163","_avada_studio_post","1366"),
("280","164","_menu_item_type","custom"),
("281","164","_menu_item_menu_item_parent","0"),
("282","164","_menu_item_object_id","164"),
("283","164","_menu_item_object","custom"),
("284","164","_menu_item_target",""),
("285","164","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("286","164","_menu_item_xfn",""),
("287","164","_menu_item_url","#"),
("288","164","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("289","164","_avada_studio_post","1018"),
("290","165","_menu_item_type","custom"),
("291","165","_menu_item_menu_item_parent","0"),
("292","165","_menu_item_object_id","165"),
("293","165","_menu_item_object","custom"),
("294","165","_menu_item_target",""),
("295","165","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("296","165","_menu_item_xfn",""),
("297","165","_menu_item_url","#"),
("298","165","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("299","165","_avada_studio_post","1019"),
("300","166","_menu_item_type","custom"),
("301","166","_menu_item_menu_item_parent","0"),
("302","166","_menu_item_object_id","166"),
("303","166","_menu_item_object","custom"),
("304","166","_menu_item_target",""),
("305","166","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("306","166","_menu_item_xfn",""),
("307","166","_menu_item_url","#"),
("308","166","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("309","166","_avada_studio_post","1020"),
("310","167","_fusion","a:41:{s:16:\"member_only_form\";s:2:\"no\";s:12:\"nonce_method\";s:4:\"ajax\";s:14:\"label_position\";s:5:\"above\";s:18:\"tooltip_text_color\";s:17:\"var(--awb-color1)\";s:12:\"field_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:14:\"form_font_size\";s:4:\"18px\";s:13:\"form_bg_color\";s:98:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\";s:15:\"form_text_color\";s:17:\"var(--awb-color1)\";s:16:\"form_label_color\";s:17:\"var(--awb-color6)\";s:22:\"form_placeholder_color\";s:97:\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 20%))\";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:9:\"form_type\";s:8:\"database\";s:6:\"method\";s:4:\"post\";s:10:\"url_method\";s:4:\"post\";s:14:\"custom_headers\";s:2:\"[]\";s:9:\"step_type\";s:5:\"above\";s:20:\"steps_wrapper_margin\";a:4:{s:16:\"steps_margin_top\";s:0:\"\";s:18:\"steps_margin_right\";s:0:\"\";s:19:\"steps_margin_bottom\";s:0:\"\";s:17:\"steps_margin_left\";s:0:\"\";}s:13:\"steps_padding\";a:4:{s:16:\"step_padding_top\";s:0:\"\";s:18:\"step_padding_right\";s:0:\"\";s:19:\"step_padding_bottom\";s:0:\"\";s:17:\"step_padding_left\";s:0:\"\";}s:19:\"steps_border_radius\";a:4:{s:18:\"steps_bor_top_left\";s:0:\"\";s:19:\"steps_bor_top_right\";s:0:\"\";s:22:\"steps_bor_bottom_right\";s:0:\"\";s:21:\"steps_bor_bottom_left\";s:0:\"\";}s:15:\"step_sep_margin\";a:2:{s:20:\"step_sep_margin_left\";s:0:\"\";s:21:\"step_sep_margin_right\";s:0:\"\";}s:17:\"steps_number_icon\";s:4:\"icon\";s:12:\"step_icon_bg\";s:2:\"no\";s:23:\"step_icon_border_radius\";a:4:{s:22:\"step_icon_bor_top_left\";s:0:\"\";s:23:\"step_icon_bor_top_right\";s:0:\"\";s:26:\"step_icon_bor_bottom_right\";s:0:\"\";s:25:\"step_icon_bor_bottom_left\";s:0:\"\";}s:11:\"steps_title\";s:3:\"yes\";s:9:\"step_typo\";a:5:{s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:18:\"step_pb_percentage\";s:11:\"percentages\";s:12:\"step_pb_typo\";a:5:{s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:15:\"step_pb_striped\";s:2:\"no\";s:24:\"step_pb_animated_stripes\";s:2:\"no\";s:21:\"step_pb_border_radius\";a:4:{s:20:\"step_pb_bor_top_left\";s:0:\"\";s:21:\"step_pb_bor_top_right\";s:0:\"\";s:24:\"step_pb_bor_bottom_right\";s:0:\"\";s:23:\"step_pb_bor_bottom_left\";s:0:\"\";}s:19:\"privacy_store_ip_ua\";s:2:\"no\";s:12:\"form_actions\";a:1:{i:0;s:8:\"database\";}s:22:\"form_confirmation_type\";s:7:\"message\";s:9:\"steps_nav\";s:4:\"none\";s:14:\"steps_bor_type\";s:5:\"solid\";s:13:\"steps_spacing\";s:6:\"around\";s:24:\"steps_sep_type_completed\";s:5:\"solid\";s:14:\"steps_sep_type\";s:6:\"dashed\";s:18:\"step_icon_bor_type\";s:5:\"solid\";s:20:\"steps_title_position\";s:5:\"after\";s:25:\"privacy_expiration_action\";s:6:\"ignore\";}"),
("311","167","_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)\";}}}"),
("312","167","_avada_studio_import_key","26eb4b915c521607564fa31d6097ff09"),
("313","167","_avada_studio_post","3678"),
("314","160","_fusion_google_fonts",""),
("315","160","fusion_builder_status","active"),
("322","178","_wp_attached_file","2023/07/pexels-cottonbro-10637173-720p.mp4"),
("323","178","_wp_attachment_metadata","a:10:{s:7:\"bitrate\";i:1880177;s:8:\"filesize\";i:7324713;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:31;s:16:\"length_formatted\";s:4:\"0:31\";s:5:\"width\";i:1366;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1640358822;}"),
("324","182","_wp_attached_file","2023/07/instructor-1.jpg"),
("325","182","_wp_attachment_metadata","a:6:{s:5:\"width\";i:686;s:6:\"height\";i:962;s:4:\"file\";s:24:\"2023/07/instructor-1.jpg\";s:8:\"filesize\";i:186728;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"instructor-1-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19067;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"instructor-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8369;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"instructor-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42853;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"instructor-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18917;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"instructor-1-686x441.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82607;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"instructor-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2868;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"instructor-1-200x280.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16787;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"instructor-1-400x561.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57472;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:24:\"instructor-1-600x841.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:841;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119391;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:24:\"instructor-1-686x400.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73967;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:24:\"instructor-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36662;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:24:\"instructor-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36091;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:24:\"instructor-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19147;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:24:\"instructor-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9149;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("326","183","_wp_attached_file","2023/07/instructor-2.jpg"),
("327","183","_wp_attachment_metadata","a:6:{s:5:\"width\";i:686;s:6:\"height\";i:962;s:4:\"file\";s:24:\"2023/07/instructor-2.jpg\";s:8:\"filesize\";i:70596;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"instructor-2-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11640;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"instructor-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6064;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"instructor-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21708;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"instructor-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11736;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"instructor-2-686x441.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40556;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"instructor-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2612;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"instructor-2-200x280.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10349;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"instructor-2-400x561.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27951;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:24:\"instructor-2-600x841.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:841;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52620;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:24:\"instructor-2-686x400.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35214;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:24:\"instructor-2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19554;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:24:\"instructor-2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19832;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:24:\"instructor-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12234;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:24:\"instructor-2-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6664;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("329","185","_wp_attached_file","2023/07/instructor-3.jpg"),
("330","185","_wp_attachment_metadata","a:6:{s:5:\"width\";i:686;s:6:\"height\";i:962;s:4:\"file\";s:24:\"2023/07/instructor-3.jpg\";s:8:\"filesize\";i:52561;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"instructor-3-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5923;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"instructor-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3553;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"instructor-3-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11724;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"instructor-3-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5370;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"instructor-3-686x441.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21081;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"instructor-3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1862;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"instructor-3-200x280.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5387;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"instructor-3-400x561.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14354;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:24:\"instructor-3-600x841.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:841;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30321;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:24:\"instructor-3-686x400.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19574;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:24:\"instructor-3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9728;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:24:\"instructor-3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9214;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:24:\"instructor-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5812;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:24:\"instructor-3-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3635;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("331","188","_wp_attached_file","2023/07/pexels-cottonbro-8208001-720p.mp4"),
("332","188","_wp_attachment_metadata","a:10:{s:7:\"bitrate\";i:1988600;s:8:\"filesize\";i:12445928;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:50;s:16:\"length_formatted\";s:4:\"0:50\";s:5:\"width\";i:1366;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1622813993;}"),
("335","194","_edit_last","1"),
("336","195","_wp_attached_file","2023/07/blog-3-scaled.jpg"),
("337","195","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1155;s:4:\"file\";s:25:\"2023/07/blog-3-scaled.jpg\";s:8:\"filesize\";i:382434;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog-3-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8533;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog-3-1024x462.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5656;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog-3-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33952;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"blog-3-1536x693.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115224;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"blog-3-2048x924.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:924;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221432;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"blog-3-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24593;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"blog-3-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12444;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"blog-3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39643;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"blog-3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2469;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"blog-3-200x90.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5053;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"blog-3-400x180.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12980;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"blog-3-600x271.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23523;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"blog-3-800x361.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36380;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"blog-3-1200x541.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71279;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"blog-3-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43907;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"blog-3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21875;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"blog-3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20814;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"blog-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12466;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"blog-3-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6492;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:2:{s:10:\"fusion-500\";s:7:\"500x383\";s:11:\"fusion-1000\";s:8:\"1000x766\";}}s:14:\"original_image\";s:10:\"blog-3.jpg\";}"),
("338","194","_thumbnail_id","1002"),
("341","194","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:19:\"blog_page_title_bar\";s:7:\"default\";}"),
("342","194","fusion_builder_status","off"),
("343","197","_edit_lock","1781261674:1"),
("344","197","_edit_last","1"),
("345","198","_wp_attached_file","2023/07/blog-2-scaled.jpg"),
("346","198","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1155;s:4:\"file\";s:25:\"2023/07/blog-2-scaled.jpg\";s:8:\"filesize\";i:315173;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog-2-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9672;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog-2-1024x462.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6152;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog-2-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34834;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"blog-2-1536x693.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105551;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"blog-2-2048x924.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:924;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188816;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"blog-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27234;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"blog-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13338;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"blog-2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40545;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"blog-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2650;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"blog-2-200x90.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5807;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"blog-2-400x180.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14183;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"blog-2-600x271.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24769;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"blog-2-800x361.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37284;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"blog-2-1200x541.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68924;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"blog-2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45997;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"blog-2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23341;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"blog-2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22259;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"blog-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13069;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"blog-2-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6943;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"blog-2.jpg\";}"),
("347","197","_thumbnail_id","1001"),
("350","197","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:19:\"blog_page_title_bar\";s:7:\"default\";}"),
("351","197","fusion_builder_status","off"),
("353","200","_edit_last","1"),
("354","201","_wp_attached_file","2023/07/blog-1-scaled.jpg"),
("355","201","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1155;s:4:\"file\";s:25:\"2023/07/blog-1-scaled.jpg\";s:8:\"filesize\";i:152053;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"blog-1-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5501;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"blog-1-1024x462.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30602;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blog-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3972;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"blog-1-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19853;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"blog-1-1536x693.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58885;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"blog-1-2048x924.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:924;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98308;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"blog-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15129;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"blog-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8365;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"blog-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25234;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"blog-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2031;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"blog-1-200x90.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3573;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"blog-1-400x180.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7932;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"blog-1-600x271.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13675;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"blog-1-800x361.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21061;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"blog-1-1200x541.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39069;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"blog-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25792;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"blog-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13464;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"blog-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13768;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"blog-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8044;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"blog-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4449;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:2:{s:10:\"fusion-500\";s:7:\"500x383\";s:11:\"fusion-1000\";s:8:\"1000x766\";}}s:14:\"original_image\";s:10:\"blog-1.jpg\";}"),
("356","200","_thumbnail_id","1000"),
("359","200","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:19:\"blog_page_title_bar\";s:7:\"default\";}"),
("360","200","fusion_builder_status","off"),
("364","204","_fusion","a:5:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";s:3:\"194\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}"),
("366","99","_fusion","a:0:{}"),
("367","204","fusion_builder_status","active"),
("370","217","_wp_attached_file","2023/07/banner-1-scaled.jpg"),
("371","217","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1072;s:4:\"file\";s:27:\"2023/07/banner-1-scaled.jpg\";s:8:\"filesize\";i:412001;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-1-300x126.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13397;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-1-1024x429.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8836;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-1-768x322.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57377;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-1-1536x643.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:643;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176245;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-1-2048x858.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:287080;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44875;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20779;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69414;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3190;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-1-200x84.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7439;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-1-400x168.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20653;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-1-600x251.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38859;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-1-800x335.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60651;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-1-1200x503.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116524;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79571;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38538;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36251;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20522;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10049;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"banner-1.jpg\";}"),
("372","222","_wp_attached_file","2023/07/signature-1.png"),
("373","222","_wp_attachment_metadata","a:6:{s:5:\"width\";i:174;s:6:\"height\";i:63;s:4:\"file\";s:23:\"2023/07/signature-1.png\";s:8:\"filesize\";i:2183;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"signature-1-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2053;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"signature-1-66x63.png\";s:5:\"width\";i:66;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1258;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("378","224","_fusion","a:33:{s:13:\"preview_width\";s:3:\"100\";s:14:\"label_position\";s:5:\"above\";s:12:\"field_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:0:\"\";}s:17:\"form_input_height\";s:4:\"62px\";s:14:\"form_font_size\";s:4:\"15px\";s:15:\"form_text_color\";s:17:\"var(--awb-color8)\";s:16:\"form_label_color\";s:17:\"var(--awb-color8)\";s:22:\"form_placeholder_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\";s:17:\"form_border_width\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"0px\";}s:17:\"form_border_color\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\";s:23:\"form_focus_border_color\";s:17:\"var(--awb-color8)\";s:6:\"method\";s:4:\"post\";s:17:\"email_attachments\";s:2:\"no\";s:16:\"member_only_form\";s:2:\"no\";s:19:\"privacy_store_ip_ua\";s:2:\"no\";s:9:\"form_type\";s:8:\"database\";s:22:\"form_confirmation_type\";s:7:\"message\";s:25:\"privacy_expiration_action\";s:9:\"anonymize\";s:18:\"form_border_radius\";s:1:\"0\";s:16:\"color8_overwrite\";s:7:\"#000d10\";s:16:\"color6_overwrite\";s:7:\"#8e8e95\";s:18:\"tooltip_text_color\";s:17:\"var(--awb-color1)\";s:24:\"tooltip_background_color\";s:17:\"var(--awb-color8)\";s:13:\"form_bg_color\";s:98:\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:4:\"30px\";s:14:\"letter-spacing\";s:8:\"-0.006em\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"600\";s:11:\"font-weight\";s:3:\"600\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Inter\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"24px\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"avada_78_upgrade\";s:4:\"true\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f4f2f2\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color7_overwrite\";s:7:\"#212326\";}"),
("380","224","_fusion_google_fonts",""),
("381","224","fusion_builder_status","active"),
("384","197","avada_post_views_count","258"),
("385","197","avada_today_post_views_count","8"),
("386","197","avada_post_views_count_today_date","02-07-2026"),
("387","231","_wp_attached_file","2023/07/gallery-1.jpg"),
("388","231","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/07/gallery-1.jpg\";s:8:\"filesize\";i:74306;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18459;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6784;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"gallery-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29768;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"gallery-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14890;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"gallery-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46968;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"gallery-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2797;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"gallery-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10185;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"gallery-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28180;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"gallery-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51564;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"gallery-1-750x400.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47559;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"gallery-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26813;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"gallery-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25344;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"gallery-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14611;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"gallery-1-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("389","232","_wp_attached_file","2023/07/gallery-2.jpg"),
("390","232","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/07/gallery-2.jpg\";s:8:\"filesize\";i:52436;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6075;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"gallery-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24548;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"gallery-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12552;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"gallery-2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36792;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"gallery-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2674;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"gallery-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8611;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"gallery-2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21715;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"gallery-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38345;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"gallery-2-750x400.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36406;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"gallery-2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21776;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"gallery-2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20690;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"gallery-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12487;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"gallery-2-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6882;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("391","233","_wp_attached_file","2023/07/gallery-3.jpg"),
("392","233","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/07/gallery-3.jpg\";s:8:\"filesize\";i:79118;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20370;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7382;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"gallery-3-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30244;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"gallery-3-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15206;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"gallery-3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46609;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"gallery-3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2810;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"gallery-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11101;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"gallery-3-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30875;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"gallery-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55252;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"gallery-3-750x400.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45739;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"gallery-3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25970;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"gallery-3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25886;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"gallery-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15481;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"gallery-3-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8091;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("393","234","_wp_attached_file","2023/07/gallery-4.jpg"),
("394","234","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/07/gallery-4.jpg\";s:8:\"filesize\";i:50453;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13133;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5378;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"gallery-4-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16900;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"gallery-4-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10096;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"gallery-4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30043;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"gallery-4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2420;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"gallery-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7559;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"gallery-4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19343;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"gallery-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35227;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"gallery-4-750x400.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27877;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"gallery-4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16151;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"gallery-4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16656;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"gallery-4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10132;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"gallery-4-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("395","235","_wp_attached_file","2023/07/gallery-5.jpg"),
("396","235","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/07/gallery-5.jpg\";s:8:\"filesize\";i:49903;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5422;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"gallery-5-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21350;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"gallery-5-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10950;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"gallery-5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32051;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"gallery-5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2407;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"gallery-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7800;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"gallery-5-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19684;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"gallery-5-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34985;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"gallery-5-750x400.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32445;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"gallery-5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19040;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"gallery-5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18067;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"gallery-5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10853;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"gallery-5-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6063;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("397","236","_wp_attached_file","2023/07/gallery-6.jpg"),
("398","236","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/07/gallery-6.jpg\";s:8:\"filesize\";i:54491;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"gallery-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11110;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gallery-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4801;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"gallery-6-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17497;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"gallery-6-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8570;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"gallery-6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28019;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"gallery-6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2308;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"gallery-6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6509;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"gallery-6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16471;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"gallery-6-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31818;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"gallery-6-750x400.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28981;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"gallery-6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14657;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"gallery-6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14257;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"gallery-6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8527;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"gallery-6-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5007;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("399","243","_wp_attached_file","2023/07/banner-2-scaled.jpg"),
("400","243","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:983;s:4:\"file\";s:27:\"2023/07/banner-2-scaled.jpg\";s:8:\"filesize\";i:222682;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-2-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8828;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-2-1024x393.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-2-768x295.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32433;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-2-1536x590.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92470;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-2-2048x786.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149303;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27142;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12546;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38928;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2519;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-2-200x77.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5293;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-2-400x154.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12970;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-2-600x230.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22655;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-2-800x307.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34347;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-2-1200x461.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62905;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45659;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22388;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21223;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12030;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-2-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6411;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"banner-2.jpg\";}"),
("402","54","avada_post_views_count","400"),
("403","54","avada_today_post_views_count","8"),
("404","54","avada_post_views_count_today_date","02-07-2026"),
("405","56","avada_post_views_count","462"),
("406","56","avada_today_post_views_count","8"),
("407","56","avada_post_views_count_today_date","02-07-2026"),
("411","167","_edit_last","7496"),
("412","167","fusion_builder_status","active"),
("417","250","_fusion","a:78:{s:4:\"type\";s:11:\"sliding-bar\";s:16:\"off_canvas_state\";s:6:\"closed\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:7:\"overlap\";s:5:\"width\";s:5:\"340px\";s:26:\"horizontal_position_medium\";s:6:\"center\";s:25:\"horizontal_position_small\";s:6:\"center\";s:19:\"horizontal_position\";s:6:\"center\";s:24:\"vertical_position_medium\";s:6:\"center\";s:23:\"vertical_position_small\";s:6:\"center\";s:17:\"vertical_position\";s:6:\"center\";s:14:\"content_layout\";s:6:\"column\";s:13:\"align_content\";s:10:\"flex-start\";s:14:\"valign_content\";s:10:\"flex-start\";s:12:\"content_wrap\";s:4:\"wrap\";s:16:\"background_color\";s:17:\"var(--awb-color8)\";s:22:\"background_custom_size\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}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:\"\";}s:12:\"border_width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"margin\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:7:\"padding\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:10:\"box_shadow\";s:2:\"no\";s:19:\"box_shadow_position\";a:2:{s:8:\"vertical\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";}s:7:\"overlay\";s:3:\"yes\";s:22:\"overlay_close_on_click\";s:3:\"yes\";s:22:\"overlay_page_scrollbar\";s:3:\"yes\";s:24:\"overlay_background_color\";s:109:\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 10%),calc(var(--awb-color8-a) - 40%))\";s:30:\"overlay_background_custom_size\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}s:12:\"close_button\";s:3:\"yes\";s:12:\"close_on_esc\";s:3:\"yes\";s:21:\"close_button_position\";s:5:\"right\";s:19:\"close_button_margin\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:18:\"close_button_color\";s:17:\"var(--awb-color8)\";s:24:\"close_button_color_hover\";s:97:\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 20%))\";s:15:\"close_icon_size\";s:2:\"17\";s:18:\"conditions_enabled\";s:3:\"yes\";s:12:\"on_page_load\";s:2:\"no\";s:12:\"time_on_page\";s:2:\"no\";s:9:\"on_scroll\";s:2:\"no\";s:16:\"scroll_direction\";s:2:\"up\";s:9:\"scroll_to\";s:8:\"position\";s:8:\"on_click\";s:3:\"yes\";s:11:\"exit_intent\";s:2:\"no\";s:16:\"after_inactivity\";s:2:\"no\";s:18:\"after_x_page_views\";s:2:\"no\";s:16:\"after_x_sessions\";s:2:\"no\";s:5:\"users\";s:3:\"all\";s:12:\"preview_page\";s:1:\"0\";s:15:\"preview_product\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:6:\"height\";s:3:\"fit\";s:19:\"background_position\";s:8:\"left top\";s:17:\"background_repeat\";s:6:\"repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_blend_mode\";s:4:\"none\";s:27:\"overlay_background_position\";s:8:\"left top\";s:25:\"overlay_background_repeat\";s:6:\"repeat\";s:23:\"overlay_background_size\";s:4:\"auto\";s:29:\"overlay_background_blend_mode\";s:4:\"none\";s:25:\"enter_animation_direction\";s:6:\"static\";s:24:\"exit_animation_direction\";s:6:\"static\";s:18:\"sb_enter_animation\";s:10:\"slideShort\";s:17:\"sb_exit_animation\";s:10:\"slideShort\";s:9:\"frequency\";s:7:\"forever\";s:16:\"color4_overwrite\";s:7:\"#71c159\";s:16:\"color5_overwrite\";s:7:\"#736eef\";s:16:\"color8_overwrite\";s:7:\"#22201d\";s:16:\"color2_overwrite\";s:7:\"#f7f6fe\";s:16:\"color7_overwrite\";s:7:\"#3b3a30\";s:16:\"color6_overwrite\";s:7:\"#58574b\";s:16:\"color3_overwrite\";s:7:\"#d6e0d1\";s:21:\"typography1_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:21:\"typography3_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"28px\";s:14:\"letter-spacing\";s:1:\"0\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:5:\"Chivo\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"26px\";s:14:\"letter-spacing\";s:1:\"0\";}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"on_click_element\";s:15:\"#menu-offcanvas\";}"),
("419","251","_menu_item_type","custom"),
("420","251","_menu_item_menu_item_parent","0"),
("421","251","_menu_item_object_id","251"),
("422","251","_menu_item_object","custom"),
("423","251","_menu_item_target",""),
("424","251","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("425","251","_menu_item_xfn",""),
("426","251","_menu_item_url","#"),
("427","251","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("428","251","_avada_studio_post","1002"),
("429","252","_menu_item_type","custom"),
("430","252","_menu_item_menu_item_parent","0"),
("431","252","_menu_item_object_id","252"),
("432","252","_menu_item_object","custom"),
("433","252","_menu_item_target",""),
("434","252","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("435","252","_menu_item_xfn",""),
("436","252","_menu_item_url","#"),
("437","252","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("438","252","_avada_studio_post","1003"),
("439","253","_menu_item_type","custom"),
("440","253","_menu_item_menu_item_parent","0"),
("441","253","_menu_item_object_id","253"),
("442","253","_menu_item_object","custom"),
("443","253","_menu_item_target",""),
("444","253","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("445","253","_menu_item_xfn",""),
("446","253","_menu_item_url","#"),
("447","253","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("448","253","_avada_studio_post","1004"),
("449","254","_menu_item_type","custom"),
("450","254","_menu_item_menu_item_parent","0"),
("451","254","_menu_item_object_id","254"),
("452","254","_menu_item_object","custom"),
("453","254","_menu_item_target",""),
("454","254","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("455","254","_menu_item_xfn",""),
("456","254","_menu_item_url","#"),
("457","254","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("458","254","_avada_studio_post","1005"),
("459","255","_menu_item_type","custom"),
("460","255","_menu_item_menu_item_parent","0"),
("461","255","_menu_item_object_id","255"),
("462","255","_menu_item_object","custom"),
("463","255","_menu_item_target",""),
("464","255","_menu_item_classes","a:1:{i:0;s:6:\"a1i0s0\";}"),
("465","255","_menu_item_xfn",""),
("466","255","_menu_item_url","#"),
("467","255","_menu_item_fusion_megamenu","a:22:{s:5:\"style\";s:0:\"\";s:4:\"icon\";s:0:\"\";s:8:\"icononly\";s:0:\"\";s:5:\"modal\";s:0:\"\";s:15:\"highlight_label\";s:0:\"\";s:26:\"highlight_label_background\";s:0:\"\";s:21:\"highlight_label_color\";s:0:\"\";s:28:\"highlight_label_border_color\";s:0:\"\";s:12:\"special_link\";s:0:\"\";s:21:\"show_woo_cart_counter\";s:0:\"\";s:27:\"show_empty_woo_cart_counter\";s:0:\"\";s:20:\"cart_counter_display\";s:0:\"\";s:22:\"show_woo_cart_contents\";s:0:\"\";s:15:\"searchform_mode\";s:0:\"\";s:6:\"status\";s:0:\"\";s:5:\"width\";s:0:\"\";s:7:\"columns\";s:4:\"auto\";s:11:\"columnwidth\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:6:\"select\";b:0;}"),
("468","255","_avada_studio_post","1006"),
("469","250","_fusion_google_fonts","a:2:{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)\";}}}"),
("470","250","fusion_builder_status","active"),
("487","267","_fusion","a:7:{s:13:\"preview_width\";s:3:\"100\";s:28:\"dynamic_content_preview_type\";s:5:\"class\";s:12:\"preview_post\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:3:\"262\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";s:13:\"preview_class\";s:3:\"297\";}"),
("489","267","_fusion_google_fonts","a:1:{s:34:\"var(--awb-typography4-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography4)\";}}}"),
("490","267","fusion_builder_status","active"),
("494","267","_edit_last","7496"),
("495","267","_wp_old_date","2023-07-14"),
("502","283","_edit_lock","1689088241:7496"),
("503","283","_edit_last","7496"),
("504","283","_fusion","a:0:{}"),
("505","284","_edit_lock","1689094177:7496"),
("506","284","_edit_last","7496"),
("507","284","_fusion","a:0:{}"),
("510","286","_edit_last","7496"),
("511","286","_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\";}"),
("512","286","fusion_builder_status","active"),
("513","287","_edit_lock","1706883520:8087"),
("514","287","_edit_last","7496"),
("515","287","_fusion","a:0:{}"),
("516","286","difficulty","Beginner"),
("517","286","_difficulty","field_64ad774377f6d"),
("518","289","_fusion","a:5:{s:28:\"dynamic_content_preview_type\";s:5:\"class\";s:12:\"preview_post\";s:1:\"0\";s:13:\"preview_class\";s:3:\"286\";s:18:\"preview_instructor\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}"),
("521","289","_edit_last","1"),
("522","289","fusion_builder_status","active"),
("524","289","_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)\";}}}"),
("525","286","_thumbnail_id","145"),
("529","286","avada_post_views_count","277"),
("530","286","avada_today_post_views_count","8"),
("531","286","avada_post_views_count_today_date","02-07-2026"),
("533","297","_edit_last","7496"),
("535","297","difficulty","Intermediate"),
("536","297","_difficulty","field_64ad774377f6d"),
("537","297","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";}"),
("538","297","fusion_builder_status","active"),
("540","298","_edit_last","7496"),
("541","298","_thumbnail_id","146"),
("542","298","difficulty","Beginner"),
("543","298","_difficulty","field_64ad774377f6d"),
("544","298","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";}"),
("545","298","fusion_builder_status","active"),
("547","298","_wp_old_date","2023-07-11"),
("549","313","_fusion","a:5:{s:28:\"dynamic_content_preview_type\";s:10:\"instructor\";s:12:\"preview_post\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";s:3:\"318\";s:12:\"preview_term\";s:8:\"category\";}"),
("551","313","_edit_last","1"),
("552","313","fusion_builder_status","active"),
("553","316","_edit_lock","1706780510:2707"),
("554","316","_edit_last","7496"),
("555","316","_fusion","a:0:{}"),
("557","318","_edit_last","7496"),
("558","318","_thumbnail_id","182"),
("559","318","_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\";}"),
("560","318","fusion_builder_status","active"),
("562","313","_fusion_google_fonts",""),
("564","318","classes","a:2:{i:0;s:3:\"297\";i:1;s:3:\"298\";}"),
("565","318","_classes","field_64ad86d9ad160"),
("568","318","classes_teaching","a:2:{i:0;s:3:\"297\";i:1;s:3:\"298\";}"),
("569","318","_classes_teaching","field_64ad86d9ad160"),
("570","318","social_links_twitter","https://twitter.com/Theme_Fusion/"),
("571","318","_social_links_twitter","field_64ad8bf8c5dd7"),
("572","318","social_links_instagram","https://www.instagram.com/themefusion/"),
("573","318","_social_links_instagram","field_64ad8c04c5dd8"),
("574","318","social_links_youtube","https://www.youtube.com/user/ThemeFusionVideos/"),
("575","318","_social_links_youtube","field_64ad8c42b15e7"),
("576","318","social_links",""),
("577","318","_social_links","field_64ad8b65c5dd6"),
("579","339","_edit_lock","1689688040:7496"),
("580","339","_edit_last","7496"),
("581","339","_thumbnail_id","183"),
("582","339","classes_teaching","a:2:{i:0;s:3:\"286\";i:1;s:3:\"298\";}"),
("583","339","_classes_teaching","field_64ad86d9ad160"),
("584","339","social_links_twitter","https://twitter.com/Theme_Fusion/"),
("585","339","_social_links_twitter","field_64ad8bf8c5dd7"),
("586","339","social_links_instagram","https://www.instagram.com/themefusion/"),
("587","339","_social_links_instagram","field_64ad8c04c5dd8"),
("588","339","social_links_youtube","https://www.youtube.com/user/ThemeFusionVideos/"),
("589","339","_social_links_youtube","field_64ad8c42b15e7"),
("590","339","social_links_facebook",""),
("591","339","_social_links_facebook","field_64ad8e86dc1fa"),
("592","339","social_links",""),
("593","339","_social_links","field_64ad8b65c5dd6"),
("594","339","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";}"),
("595","339","fusion_builder_status",""),
("596","340","_edit_lock","1706883581:8087"),
("597","340","_edit_last","7496"),
("598","340","_thumbnail_id","185"),
("599","340","classes_teaching","a:2:{i:0;s:3:\"298\";i:1;s:3:\"348\";}"),
("600","340","_classes_teaching","field_64ad86d9ad160"),
("601","340","social_links_twitter","https://twitter.com/Theme_Fusion/"),
("602","340","_social_links_twitter","field_64ad8bf8c5dd7"),
("603","340","social_links_instagram","https://www.instagram.com/themefusion/"),
("604","340","_social_links_instagram","field_64ad8c04c5dd8"),
("605","340","social_links_youtube","https://www.youtube.com/user/ThemeFusionVideos/"),
("606","340","_social_links_youtube","field_64ad8c42b15e7"),
("607","340","social_links_facebook",""),
("608","340","_social_links_facebook","field_64ad8e86dc1fa"),
("609","340","social_links",""),
("610","340","_social_links","field_64ad8b65c5dd6"),
("611","340","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";}"),
("612","340","fusion_builder_status",""),
("614","347","_edit_lock","1689698728:7496"),
("615","347","_edit_last","7496"),
("616","347","_thumbnail_id","234"),
("617","347","classes_teaching","a:2:{i:0;s:3:\"298\";i:1;s:3:\"348\";}"),
("618","347","_classes_teaching","field_64ad86d9ad160"),
("619","347","social_links_twitter","https://twitter.com/Theme_Fusion/"),
("620","347","_social_links_twitter","field_64ad8bf8c5dd7"),
("621","347","social_links_instagram","https://www.instagram.com/themefusion/"),
("622","347","_social_links_instagram","field_64ad8c04c5dd8"),
("623","347","social_links_youtube","https://www.youtube.com/user/ThemeFusionVideos/"),
("624","347","_social_links_youtube","field_64ad8c42b15e7"),
("625","347","social_links_facebook",""),
("626","347","_social_links_facebook","field_64ad8e86dc1fa"),
("627","347","social_links",""),
("628","347","_social_links","field_64ad8b65c5dd6"),
("629","347","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";}"),
("630","347","fusion_builder_status",""),
("631","347","_wp_old_date","2023-07-11"),
("633","348","_edit_last","7496"),
("634","348","difficulty","Beginner"),
("635","348","_difficulty","field_64ad774377f6d"),
("636","348","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:14:\"page_title_bar\";s:7:\"default\";}"),
("637","348","fusion_builder_status","active"),
("639","348","_wp_old_date","2023-07-11"),
("640","348","_wp_old_date","2023-07-10"),
("641","298","avada_post_views_count","244"),
("642","298","avada_today_post_views_count","8"),
("643","298","avada_post_views_count_today_date","02-07-2026"),
("647","297","next_class_date","20230722"),
("648","297","_next_class_date","field_64ad9d1e0bf9b"),
("650","297","next_class_time_start","16:00 - 18:00"),
("651","297","_next_class_time_start","field_64ad9fdcd664b"),
("652","297","next_class_time_end","18:00:00"),
("653","297","_next_class_time_end","field_64ada01af221f"),
("656","286","next_class_date","20230730"),
("657","286","_next_class_date","field_64ad9d1e0bf9b"),
("658","286","next_class_time_start","14:00 - 16:00"),
("659","286","_next_class_time_start","field_64ad9fdcd664b"),
("662","348","next_class_date","20230707"),
("663","348","_next_class_date","field_64ad9d1e0bf9b"),
("664","348","next_class_time_start","16:00 - 18:00"),
("665","348","_next_class_time_start","field_64ad9fdcd664b"),
("669","385","_wp_attached_file","2023/07/info-2.jpg"),
("670","385","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1010;s:6:\"height\";i:1078;s:4:\"file\";s:18:\"2023/07/info-2.jpg\";s:8:\"filesize\";i:122446;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-2-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16135;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-2-959x1024.jpg\";s:5:\"width\";i:959;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6566;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-2-768x820.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71649;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25906;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13173;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40491;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2612;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-2-200x213.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9853;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-2-400x427.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26380;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-2-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48348;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-2-800x854.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76312;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45532;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22705;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22290;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13495;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-2-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("675","397","_wp_attached_file","2023/07/banner-3-scaled.jpg"),
("676","397","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:983;s:4:\"file\";s:27:\"2023/07/banner-3-scaled.jpg\";s:8:\"filesize\";i:99559;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-3-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4626;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-3-1024x393.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4172;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-3-768x295.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13821;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-3-1536x590.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38095;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-3-2048x786.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64416;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-3-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12208;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-3-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7180;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20048;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2086;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-3-200x77.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3076;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-3-400x154.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6211;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-3-600x230.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10021;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-3-800x307.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14639;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-3-1200x461.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25643;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-3-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20404;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11550;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11374;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7310;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-3-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4462;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"banner-3.jpg\";}"),
("677","401","_wp_attached_file","2023/07/info-3.jpg"),
("678","401","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1010;s:6:\"height\";i:1078;s:4:\"file\";s:18:\"2023/07/info-3.jpg\";s:8:\"filesize\";i:125803;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-3-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15132;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-3-959x1024.jpg\";s:5:\"width\";i:959;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5897;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-3-768x820.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74543;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-3-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21826;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-3-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11218;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36160;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2481;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-3-200x213.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9085;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-3-400x427.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25830;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-3-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49349;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-3-800x854.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79428;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-3-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38542;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19223;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19268;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11551;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-3-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6306;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("680","405","_wp_attached_file","2023/07/pexels-cottonbro-7975419-540p.mp4"),
("681","405","_wp_attachment_metadata","a:10:{s:7:\"bitrate\";i:1669346;s:8:\"filesize\";i:5484666;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:26;s:16:\"length_formatted\";s:4:\"0:26\";s:5:\"width\";i:960;s:6:\"height\";i:506;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1621540215;}"),
("688","48","_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)\";}}}"),
("689","440","_wp_attached_file","2023/07/info-4.jpg"),
("690","440","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1010;s:6:\"height\";i:1078;s:4:\"file\";s:18:\"2023/07/info-4.jpg\";s:8:\"filesize\";i:170343;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-4-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21496;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-4-959x1024.jpg\";s:5:\"width\";i:959;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142497;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8380;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-4-768x820.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97885;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-4-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35611;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-4-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17637;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57015;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3123;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-4-200x213.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12942;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-4-400x427.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35799;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-4-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66042;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-4-800x854.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105139;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-4-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64082;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31094;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30267;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17724;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-4-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("691","443","_wp_attached_file","2023/07/info-5.jpg"),
("692","443","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1010;s:6:\"height\";i:1078;s:4:\"file\";s:18:\"2023/07/info-5.jpg\";s:8:\"filesize\";i:175671;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-5-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25920;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-5-959x1024.jpg\";s:5:\"width\";i:959;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9965;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-5-768x820.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114906;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-5-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39510;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-5-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21567;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67016;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3605;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-5-200x213.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15305;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-5-400x427.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43423;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-5-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79436;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-5-800x854.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121882;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-5-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68366;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35845;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36703;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22050;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-5-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11141;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("693","446","_wp_attached_file","2023/07/info-6.jpg"),
("694","446","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1010;s:6:\"height\";i:1078;s:4:\"file\";s:18:\"2023/07/info-6.jpg\";s:8:\"filesize\";i:104966;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-6-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12271;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-6-959x1024.jpg\";s:5:\"width\";i:959;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86134;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5142;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-6-768x820.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58439;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-6-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25703;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-6-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11151;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36755;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2319;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-6-200x213.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7643;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-6-400x427.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20661;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-6-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38870;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-6-800x854.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63049;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-6-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45039;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21254;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19132;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10780;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-6-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5675;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("697","454","_wp_attached_file","2023/07/info-8.jpg"),
("698","454","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1010;s:6:\"height\";i:1078;s:4:\"file\";s:18:\"2023/07/info-8.jpg\";s:8:\"filesize\";i:197321;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-8-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17827;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-8-959x1024.jpg\";s:5:\"width\";i:959;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145689;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-8-768x820.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92443;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-8-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31394;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-8-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15820;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-8-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54051;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-8-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2835;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-8-200x213.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10862;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-8-400x427.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29749;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-8-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57753;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-8-800x854.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100181;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-8-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61391;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-8-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27684;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-8-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27421;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-8-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15726;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-8-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8240;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("702","460","_wp_attached_file","2023/07/info-9.jpg"),
("703","460","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1415;s:6:\"height\";i:1078;s:4:\"file\";s:18:\"2023/07/info-9.jpg\";s:8:\"filesize\";i:121732;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"info-9-300x229.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9748;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"info-9-1024x780.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"info-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4676;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"info-9-768x585.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41178;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"info-9-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22937;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"info-9-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10200;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"info-9-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34360;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"info-9-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2140;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"info-9-200x152.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5807;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"info-9-400x305.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:305;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14903;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"info-9-600x457.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27463;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"info-9-800x609.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:609;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44236;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"info-9-1200x914.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:914;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88124;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"info-9-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41756;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"info-9-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18810;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"info-9-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17566;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"info-9-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9583;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"info-9-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("705","50","_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-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}"),
("708","479","_wp_attached_file","2023/07/banner-4-scaled.jpg"),
("709","479","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:724;s:4:\"file\";s:27:\"2023/07/banner-4-scaled.jpg\";s:8:\"filesize\";i:136379;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"banner-4-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2982;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-4-1024x290.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3624;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-4-768x217.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9101;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-4-1536x434.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36175;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-4-2048x579.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75070;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-4-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11100;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-4-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5965;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21608;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1891;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-4-200x57.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2221;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-4-400x113.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3930;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-4-600x170.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6547;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-4-800x226.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9763;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-4-1200x339.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20842;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-4-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22490;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10225;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10382;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6181;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-4-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3715;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"banner-4.jpg\";}"),
("710","486","_wp_attached_file","2023/07/signature-2.png"),
("711","486","_wp_attachment_metadata","a:6:{s:5:\"width\";i:147;s:6:\"height\";i:70;s:4:\"file\";s:23:\"2023/07/signature-2.png\";s:8:\"filesize\";i:2223;s:5:\"sizes\";a:1:{s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"signature-2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2516;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("712","488","_wp_attached_file","2023/07/banner-5-scaled.jpg"),
("713","488","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:724;s:4:\"file\";s:27:\"2023/07/banner-5-scaled.jpg\";s:8:\"filesize\";i:255534;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"banner-5-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7013;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-5-1024x290.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43216;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7283;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-5-768x217.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26784;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-5-1536x434.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88766;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-5-2048x579.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159025;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-5-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30553;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-5-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14835;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51380;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2845;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-5-200x57.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4261;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-5-400x113.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10477;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-5-600x170.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18723;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-5-800x226.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28628;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-5-1200x339.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56546;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-5-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56452;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26303;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25853;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14769;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-5-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7765;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"banner-5.jpg\";}"),
("714","490","_wp_attached_file","2023/07/signature-3.png"),
("715","490","_wp_attachment_metadata","a:6:{s:5:\"width\";i:147;s:6:\"height\";i:63;s:4:\"file\";s:23:\"2023/07/signature-3.png\";s:8:\"filesize\";i:1797;s:5:\"sizes\";a:1:{s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"signature-3-66x63.png\";s:5:\"width\";i:66;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("716","493","_wp_attached_file","2023/07/banner-6-scaled.jpg"),
("717","493","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:725;s:4:\"file\";s:27:\"2023/07/banner-6-scaled.jpg\";s:8:\"filesize\";i:401276;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"banner-6-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7243;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-6-1024x290.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73713;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7052;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-6-768x217.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42791;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-6-1536x435.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156490;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-6-2048x580.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:580;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266779;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-6-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45066;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-6-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17695;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73061;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2070;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-6-200x57.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3542;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-6-400x113.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12395;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-6-600x170.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26873;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-6-800x226.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46441;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-6-1200x340.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98663;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-6-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88570;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36992;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34381;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17603;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-6-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7775;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"banner-6.jpg\";}"),
("718","495","_wp_attached_file","2023/07/signature-4.png"),
("719","495","_wp_attachment_metadata","a:6:{s:5:\"width\";i:147;s:6:\"height\";i:55;s:4:\"file\";s:23:\"2023/07/signature-4.png\";s:8:\"filesize\";i:2058;s:5:\"sizes\";a:1:{s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"signature-4-66x55.png\";s:5:\"width\";i:66;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1104;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("723","52","_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)\";}}}"),
("728","505","_wp_old_slug","class-2-cloned"),
("729","505","_fusion","a:7:{s:28:\"dynamic_content_preview_type\";s:5:\"class\";s:12:\"preview_post\";s:1:\"0\";s:13:\"preview_class\";s:3:\"286\";s:18:\"preview_instructor\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}"),
("731","505","_edit_last","7496"),
("732","505","_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)\";}}}"),
("733","505","fusion_builder_status","active"),
("736","513","_fusion","a:6:{s:12:\"preview_post\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}"),
("738","513","_edit_last","7496"),
("739","513","fusion_builder_status","active"),
("743","523","_wp_attached_file","2023/07/class-4.jpg"),
("744","523","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:992;s:4:\"file\";s:19:\"2023/07/class-4.jpg\";s:8:\"filesize\";i:131324;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"class-4-226x300.jpg\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11719;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"class-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5694;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"class-4-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30223;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"class-4-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12325;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:19:\"class-4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50587;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"class-4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2272;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"class-4-200x266.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9697;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"class-4-400x532.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30028;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:19:\"class-4-600x798.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65118;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:19:\"class-4-746x400.jpg\";s:5:\"width\";i:746;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59887;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:19:\"class-4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25522;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:19:\"class-4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23413;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:19:\"class-4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12339;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:19:\"class-4-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6271;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("745","348","_thumbnail_id","523"),
("750","528","_wp_attached_file","2023/07/info-11.jpg"),
("751","528","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1010;s:6:\"height\";i:1078;s:4:\"file\";s:19:\"2023/07/info-11.jpg\";s:8:\"filesize\";i:243093;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"info-11-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18586;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"info-11-959x1024.jpg\";s:5:\"width\";i:959;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"info-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6834;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"info-11-768x820.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118715;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"info-11-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40914;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"info-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16374;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:19:\"info-11-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67579;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"info-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2580;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"info-11-200x213.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10622;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"info-11-400x427.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34117;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:19:\"info-11-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73379;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:19:\"info-11-800x854.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128359;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:19:\"info-11-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81052;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:19:\"info-11-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33688;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:19:\"info-11-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31214;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:19:\"info-11-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16102;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:19:\"info-11-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7720;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("756","297","avada_post_views_count","347"),
("757","297","avada_today_post_views_count","8"),
("758","297","avada_post_views_count_today_date","02-07-2026"),
("760","550","_fusion","a:3:{s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:28:\"dynamic_content_preview_type\";s:5:\"class\";s:13:\"preview_class\";s:3:\"297\";}"),
("762","550","_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)\";}}}"),
("763","550","fusion_builder_status","active"),
("764","297","instructors","a:1:{i:0;s:3:\"318\";}"),
("765","297","_instructors","field_64b031e09a5a1"),
("767","562","_wp_old_slug","instructor-1-cloned"),
("768","562","_fusion","a:7:{s:28:\"dynamic_content_preview_type\";s:10:\"instructor\";s:12:\"preview_post\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";s:3:\"318\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}"),
("770","562","_edit_last","7496"),
("771","562","_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)\";}}}"),
("772","562","fusion_builder_status","active"),
("786","297","_thumbnail_id","135"),
("789","286","instructors","a:1:{i:0;s:3:\"339\";}"),
("790","286","_instructors","field_64b031e09a5a1"),
("791","297","banner_image","588"),
("792","297","_banner_image","field_64b0471060fc7"),
("793","588","_wp_attached_file","2023/07/banner-8.jpg"),
("794","588","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2351;s:6:\"height\";i:1078;s:4:\"file\";s:20:\"2023/07/banner-8.jpg\";s:8:\"filesize\";i:735049;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-8-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13079;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-8-1024x470.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-8-768x352.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61328;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-8-1536x704.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241187;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-8-2048x939.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:939;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:443570;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-8-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43232;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-8-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18598;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-8-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71331;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-8-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3224;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-8-200x92.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6902;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-8-400x183.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20155;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-8-600x275.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40141;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-8-800x367.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65779;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-8-1200x550.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144975;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-8-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83372;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-8-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36287;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-8-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34237;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-8-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18501;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-8-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9347;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("797","590","_wp_attached_file","2023/07/banner-9.jpg"),
("798","590","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2351;s:6:\"height\";i:1078;s:4:\"file\";s:20:\"2023/07/banner-9.jpg\";s:8:\"filesize\";i:408953;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-9-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13785;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-9-1024x470.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8335;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-9-768x352.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58221;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-9-1536x704.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188320;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"banner-9-2048x939.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:939;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309799;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"banner-9-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42559;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"banner-9-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19020;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"banner-9-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65062;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-9-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3134;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"banner-9-200x92.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7523;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"banner-9-400x183.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20873;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"banner-9-600x275.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39451;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"banner-9-800x367.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62234;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"banner-9-1200x550.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122651;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:20:\"banner-9-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76409;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"banner-9-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36212;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"banner-9-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33406;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"banner-9-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18391;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"banner-9-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9167;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("799","286","banner_image","590"),
("800","286","_banner_image","field_64b0471060fc7"),
("806","595","_wp_attached_file","2023/07/banner-10-scaled.jpg"),
("807","595","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:732;s:4:\"file\";s:28:\"2023/07/banner-10-scaled.jpg\";s:8:\"filesize\";i:235581;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-10-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8477;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-10-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48181;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7621;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-10-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31372;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-10-1536x439.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91049;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"banner-10-2048x586.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152789;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"banner-10-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36378;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"banner-10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17264;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"banner-10-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56083;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"banner-10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3114;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"banner-10-200x57.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5096;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"banner-10-400x114.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12480;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"banner-10-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22127;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:21:\"banner-10-800x229.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33384;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"banner-10-1200x343.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61285;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"banner-10-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64454;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"banner-10-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32141;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"banner-10-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29814;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"banner-10-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16952;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"banner-10-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8638;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"banner-10.jpg\";}"),
("814","297","duration","90"),
("815","297","_duration","field_64b148958c965"),
("820","611","_wp_attached_file","2023/07/banner-11-scaled.jpg"),
("821","611","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:732;s:4:\"file\";s:28:\"2023/07/banner-11-scaled.jpg\";s:8:\"filesize\";i:233379;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-11-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5139;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-11-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4626;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-11-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21189;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-11-1536x439.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81081;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"banner-11-2048x586.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148450;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"banner-11-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23583;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"banner-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10405;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"banner-11-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40840;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"banner-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2160;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"banner-11-200x57.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3292;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"banner-11-400x114.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7557;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"banner-11-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13959;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:21:\"banner-11-800x229.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22780;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"banner-11-1200x343.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48868;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"banner-11-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46828;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"banner-11-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20186;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"banner-11-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18790;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"banner-11-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10147;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"banner-11-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5175;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"banner-11.jpg\";}"),
("822","348","instructors","a:1:{i:0;s:3:\"340\";}"),
("823","348","_instructors","field_64b031e09a5a1"),
("824","348","banner_image","611"),
("825","348","_banner_image","field_64b0471060fc7"),
("826","348","duration","60"),
("827","348","_duration","field_64b148958c965"),
("829","348","avada_post_views_count","233"),
("830","348","avada_today_post_views_count","8"),
("831","348","avada_post_views_count_today_date","02-07-2026"),
("832","340","avada_post_views_count","206"),
("833","340","avada_today_post_views_count","8"),
("834","340","avada_post_views_count_today_date","02-07-2026"),
("835","340","short_bio","Integer tincidunt. Proin sapien ipsum, porta a, auctor quis, euismod ut, mi."),
("836","340","_short_bio","field_64b157d10fbd9"),
("839","618","_edit_lock","1706883618:8087"),
("840","618","_edit_last","7496"),
("841","618","_fusion","a:0:{}"),
("842","286","duration","30"),
("843","286","_duration","field_64b148958c965"),
("844","298","next_class_date","20230818"),
("845","298","_next_class_date","field_64ad9d1e0bf9b"),
("846","298","next_class_time_start","16:00 - 18:00"),
("847","298","_next_class_time_start","field_64ad9fdcd664b"),
("848","298","instructors","a:1:{i:0;s:3:\"347\";}"),
("849","298","_instructors","field_64b031e09a5a1"),
("850","298","banner_image","623"),
("851","298","_banner_image","field_64b0471060fc7"),
("852","298","duration","60"),
("853","298","_duration","field_64b148958c965"),
("859","298","_edit_lock","1706883649:8087"),
("860","623","_wp_attached_file","2023/07/banner-12-scaled.jpg"),
("861","623","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:732;s:4:\"file\";s:28:\"2023/07/banner-12-scaled.jpg\";s:8:\"filesize\";i:232188;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-12-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7882;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"banner-12-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8486;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"banner-12-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31364;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"banner-12-1536x439.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93040;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"banner-12-2048x586.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154291;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"banner-12-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38892;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"banner-12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18912;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"banner-12-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64392;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"banner-12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3196;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"banner-12-200x57.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4882;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"banner-12-400x114.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11949;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"banner-12-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21509;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:21:\"banner-12-800x229.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32968;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"banner-12-1200x343.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62024;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:21:\"banner-12-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69639;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:21:\"banner-12-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33758;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:21:\"banner-12-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33325;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:21:\"banner-12-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18744;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:21:\"banner-12-177x142.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"banner-12.jpg\";}"),
("862","348","_edit_lock","1689353739:7496"),
("863","347","_wp_old_slug","4th-intructor"),
("864","347","short_bio","Donec mi odio, faucibus at, scelerisque quis, convallis in."),
("865","347","_short_bio","field_64b157d10fbd9"),
("871","318","avada_post_views_count","208"),
("872","318","avada_today_post_views_count","8"),
("873","318","avada_post_views_count_today_date","02-07-2026"),
("874","318","social_links_facebook",""),
("875","318","_social_links_facebook","field_64ad8e86dc1fa"),
("876","318","short_bio","Sed cursus turpis vitae in erat ut urna cursus vestibulum."),
("877","318","_short_bio","field_64b157d10fbd9"),
("878","339","avada_post_views_count","194"),
("879","339","avada_today_post_views_count","8"),
("880","339","avada_post_views_count_today_date","02-07-2026"),
("881","339","short_bio","Donec pede justo, fringilla vel, aliquet nec, vulputate."),
("882","339","_short_bio","field_64b157d10fbd9"),
("894","54","_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)\";}}}"),
("896","644","_wp_old_slug","blog-1-cloned"),
("897","644","_fusion","a:7:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";s:3:\"194\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";s:1:\"0\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}"),
("899","644","_edit_last","7496"),
("900","644","fusion_builder_status","active"),
("912","656","_fusion","a:1:{s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}}"),
("915","656","_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)\";}}}"),
("916","656","fusion_builder_status","active"),
("919","200","avada_post_views_count","301"),
("920","200","avada_today_post_views_count","8"),
("921","200","avada_post_views_count_today_date","02-07-2026"),
("922","194","avada_post_views_count","240"),
("923","194","avada_today_post_views_count","8"),
("924","194","avada_post_views_count_today_date","02-07-2026"),
("928","297","_edit_lock","1706883551:8087"),
("938","200","_edit_lock","1781261595:1"),
("954","56","_fusion_google_fonts",""),
("955","702","_wp_attached_file","2023/07/pexels_videos_2795731-540p.mp4"),
("956","702","_wp_attachment_metadata","a:10:{s:8:\"filesize\";i:2068200;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:10;s:16:\"length_formatted\";s:4:\"0:10\";s:5:\"width\";i:960;s:6:\"height\";i:540;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1565698096;}"),
("966","707","_fusion","a:37:{s:16:\"member_only_form\";s:1:\"0\";s:12:\"nonce_method\";s:4:\"ajax\";s:14:\"label_position\";s:5:\"above\";s:12:\"field_margin\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:17:\"form_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:9:\"step_type\";s:5:\"above\";s:20:\"steps_wrapper_margin\";a:4:{s:16:\"steps_margin_top\";s:0:\"\";s:18:\"steps_margin_right\";s:0:\"\";s:19:\"steps_margin_bottom\";s:0:\"\";s:17:\"steps_margin_left\";s:0:\"\";}s:13:\"steps_padding\";a:4:{s:16:\"step_padding_top\";s:0:\"\";s:18:\"step_padding_right\";s:0:\"\";s:19:\"step_padding_bottom\";s:0:\"\";s:17:\"step_padding_left\";s:0:\"\";}s:19:\"steps_border_radius\";a:4:{s:18:\"steps_bor_top_left\";s:0:\"\";s:19:\"steps_bor_top_right\";s:0:\"\";s:22:\"steps_bor_bottom_right\";s:0:\"\";s:21:\"steps_bor_bottom_left\";s:0:\"\";}s:15:\"step_sep_margin\";a:2:{s:20:\"step_sep_margin_left\";s:0:\"\";s:21:\"step_sep_margin_right\";s:0:\"\";}s:17:\"steps_number_icon\";s:4:\"icon\";s:12:\"step_icon_bg\";s:2:\"no\";s:23:\"step_icon_border_radius\";a:4:{s:22:\"step_icon_bor_top_left\";s:0:\"\";s:23:\"step_icon_bor_top_right\";s:0:\"\";s:26:\"step_icon_bor_bottom_right\";s:0:\"\";s:25:\"step_icon_bor_bottom_left\";s:0:\"\";}s:11:\"steps_title\";s:3:\"yes\";s:9:\"step_typo\";a:5:{s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:18:\"step_pb_percentage\";s:11:\"percentages\";s:12:\"step_pb_typo\";a:5:{s:11:\"font-family\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:15:\"step_pb_striped\";s:2:\"no\";s:24:\"step_pb_animated_stripes\";s:2:\"no\";s:21:\"step_pb_border_radius\";a:4:{s:20:\"step_pb_bor_top_left\";s:0:\"\";s:21:\"step_pb_bor_top_right\";s:0:\"\";s:24:\"step_pb_bor_bottom_right\";s:0:\"\";s:23:\"step_pb_bor_bottom_left\";s:0:\"\";}s:19:\"privacy_store_ip_ua\";s:2:\"no\";s:10:\"off_canvas\";s:3:\"250\";s:22:\"form_confirmation_type\";s:7:\"message\";s:9:\"steps_nav\";s:4:\"none\";s:14:\"steps_bor_type\";s:5:\"solid\";s:13:\"steps_spacing\";s:6:\"around\";s:24:\"steps_sep_type_completed\";s:5:\"solid\";s:14:\"steps_sep_type\";s:6:\"dashed\";s:18:\"step_icon_bor_type\";s:5:\"solid\";s:20:\"steps_title_position\";s:5:\"after\";s:25:\"privacy_expiration_action\";s:9:\"anonymize\";s:17:\"form_border_color\";s:17:\"var(--awb-color8)\";s:23:\"form_focus_border_color\";s:97:\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 17%),var(--awb-color5-a))\";}"),
("968","707","fusion_builder_status","active"),
("971","707","_edit_last","7496"),
("987","729","_fusion","a:12:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:28:\"dynamic_content_preview_type\";s:10:\"instructor\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";s:3:\"318\";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\";}"),
("989","729","_edit_last","7496"),
("990","729","fusion_builder_status","active"),
("991","729","_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)\";}}}"),
("997","347","avada_post_views_count","188"),
("998","347","avada_today_post_views_count","8"),
("999","347","avada_post_views_count_today_date","02-07-2026"),
("1000","318","_edit_lock","1689687802:7496"),
("1004","772","_fusion","a:11:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";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\";}"),
("1006","772","_edit_last","7496"),
("1007","772","fusion_builder_status","active"),
("1010","772","_fusion_google_fonts",""),
("1011","782","_fusion","a:11:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";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\";}"),
("1014","782","_edit_last","7496"),
("1015","782","fusion_builder_status","active"),
("1019","793","_fusion","a:11:{s:27:\"fusion_tb_section_width_100\";s:3:\"yes\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";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\";}"),
("1021","793","_edit_last","7496"),
("1022","793","fusion_builder_status","active"),
("1059","845","_wp_attached_file","2023/07/Dance-v1.4.zip"),
("1060","845","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:41125;}"),
("1061","845","_fusion_icon_set_id","419ee836f207c09d92566feaa14320d2"),
("1063","7","avada_media","a:3:{s:6:\"images\";a:2:{s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\";s:4:\"true\";s:59:\"https://dr.frex.digital/wp-content/uploads/2023/07/logo.svg\";a:1:{s:8:\"image_id\";s:7:\"25|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";s:4:\"true\";}s:5:\"icons\";a:1:{i:19;s:11:\"icon-dance-\";}}"),
("1068","160","avada_media","a:3:{s:6:\"images\";a:1:{s:59:\"https://dr.frex.digital/wp-content/uploads/2023/07/logo.svg\";a:1:{s:8:\"image_id\";s:7:\"25|full\";}}s:5:\"menus\";a:2:{s:24:\"header-blocks-right-menu\";s:4:\"true\";s:26:\"footer-pages-menu-04-legal\";s:4:\"true\";}s:5:\"forms\";a:1:{i:167;s:4:\"true\";}}"),
("1069","250","avada_media","a:2:{s:6:\"images\";a:2:{s:59:\"https://dr.frex.digital/wp-content/uploads/2023/07/logo.svg\";a:1:{s:8:\"image_id\";s:7:\"25|full\";}s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\";a:1:{s:8:\"image_id\";s:8:\"233|full\";}}s:5:\"menus\";a:1:{s:15:\"dance-main-menu\";s:4:\"true\";}}"),
("1078","856","_wp_attached_file","2024/02/mobile-bg.jpg"),
("1079","856","_wp_attachment_metadata","a:6:{s:5:\"width\";i:742;s:6:\"height\";i:740;s:4:\"file\";s:21:\"2024/02/mobile-bg.jpg\";s:8:\"filesize\";i:58010;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"mobile-bg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12957;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"mobile-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5341;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"mobile-bg-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18202;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"mobile-bg-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10027;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"mobile-bg-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32248;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"mobile-bg-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2420;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"mobile-bg-200x199.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7659;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"mobile-bg-400x399.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19233;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"mobile-bg-600x598.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"),
("1089","550","avada_media","a:3:{s:6:\"images\";a:4:{s:70:\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-7-scaled.jpg\";s:4:\"true\";s:70:\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\";s:4:\"true\";s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\";s:4:\"true\";s:66:\"https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png\";a:1:{s:8:\"image_id\";s:8:\"222|full\";}}s:5:\"forms\";a:1:{i:224;s:4:\"true\";}s:10:\"post_cards\";a:2:{i:289;s:4:\"true\";i:562;s:4:\"true\";}}"),
("1091","729","avada_media","a:3:{s:6:\"images\";a:3:{s:70:\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\";s:4:\"true\";s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\";s:4:\"true\";s:66:\"https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png\";a:1:{s:8:\"image_id\";s:8:\"222|full\";}}s:5:\"forms\";a:1:{i:224;s:4:\"true\";}s:10:\"post_cards\";a:1:{i:289;s:4:\"true\";}}"),
("1098","5","avada_media","a:4:{s:6:\"images\";a:17:{s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\";s:4:\"true\";s:64:\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\";s:4:\"true\";s:68:\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\";s:4:\"true\";s:61:\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\";s:4:\"true\";s:70:\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\";s:4:\"true\";s:66:\"https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png\";a:1:{s:8:\"image_id\";s:8:\"222|full\";}s:67:\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\";a:1:{s:8:\"image_id\";s:8:\"182|full\";}s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\";a:1:{s:8:\"image_id\";s:3:\"234\";}s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\";a:1:{s:8:\"image_id\";s:8:\"235|full\";}s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\";a:1:{s:8:\"image_id\";s:8:\"236|full\";}s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\";a:1:{s:8:\"image_id\";s:8:\"231|full\";}s:67:\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\";a:1:{s:8:\"image_id\";s:8:\"185|full\";}s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\";a:1:{s:8:\"image_id\";s:8:\"232|full\";}s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\";a:1:{s:8:\"image_id\";s:8:\"233|full\";}s:70:\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\";s:4:\"true\";s:61:\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\";s:4:\"true\";s:61:\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\";s:4:\"true\";}s:5:\"forms\";a:1:{i:224;s:4:\"true\";}s:10:\"post_cards\";a:4:{i:204;s:4:\"true\";i:267;s:4:\"true\";i:289;s:4:\"true\";i:313;s:4:\"true\";}s:6:\"videos\";a:2:{s:84:\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\";s:4:\"true\";s:84:\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\";s:4:\"true\";}}"),
("1099","54","_edit_lock","1706896810:8087"),
("1112","880","_fusion","a:8:{s:17:\"header_breakpoint\";s:5:\"small\";s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_post\";s:1:\"0\";s:12:\"preview_page\";s:1:\"0\";s:13:\"preview_class\";s:1:\"0\";s:18:\"preview_instructor\";s:1:\"0\";s:16:\"preview_archives\";s:4:\"post\";s:12:\"preview_term\";s:8:\"category\";}"),
("1114","880","_edit_last","303"),
("1115","880","avada_media","a:7:{s:6:\"images\";a:2:{s:64:\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\";b:1;s:59:\"https://dr.frex.digital/wp-content/uploads/2023/07/logo.svg\";a:1:{s:8:\"image_id\";s:7:\"25|full\";}}s:5:\"menus\";a:1:{s:18:\"header-blocks-menu\";b:1;}s:5:\"forms\";a:0:{}s:10:\"post_cards\";a:0:{}s:6:\"videos\";a:0:{}s:5:\"icons\";a:1:{i:19;s:11:\"icon-dance-\";}s:12:\"off_canvases\";a:0:{}}"),
("1116","880","_fusion_google_fonts","a:2:{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)\";}}}"),
("1117","880","fusion_builder_status","active"),
("1136","892","_wp_attached_file","2026/06/favicon-32x32-1.png"),
("1137","892","_wp_attachment_metadata","a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:27:\"2026/06/favicon-32x32-1.png\";s:8:\"filesize\";i:1599;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1138","893","_wp_attached_file","2026/06/apple-icon-180x180-1.png"),
("1139","893","_wp_attachment_metadata","a:6:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:32:\"2026/06/apple-icon-180x180-1.png\";s:8:\"filesize\";i:6377;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"apple-icon-180x180-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:4700;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"apple-icon-180x180-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:1477;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1140","894","_wp_attached_file","2026/06/android-icon-192x192-1.png"),
("1141","894","_wp_attachment_metadata","a:6:{s:5:\"width\";i:192;s:6:\"height\";i:192;s:4:\"file\";s:34:\"2026/06/android-icon-192x192-1.png\";s:8:\"filesize\";i:5258;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"android-icon-192x192-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:4308;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"android-icon-192x192-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:1437;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1142","895","_wp_attached_file","2026/06/ms-icon-310x310-1.png"),
("1143","895","_wp_attachment_metadata","a:6:{s:5:\"width\";i:310;s:6:\"height\";i:310;s:4:\"file\";s:29:\"2026/06/ms-icon-310x310-1.png\";s:8:\"filesize\";i:13779;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"ms-icon-310x310-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11821;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"ms-icon-310x310-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:4534;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"ms-icon-310x310-1-310x272.png\";s:5:\"width\";i:310;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11902;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"ms-icon-310x310-1-310x202.png\";s:5:\"width\";i:310;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11671;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"ms-icon-310x310-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:1470;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"ms-icon-310x310-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6782;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1144","896","_wp_attached_file","2026/06/logo-drsohiela-white-X.png"),
("1145","896","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:293;s:4:\"file\";s:34:\"2026/06/logo-drsohiela-white-X.png\";s:8:\"filesize\";i:16598;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-X-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7011;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-X-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2822;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-X-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20437;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-X-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7017;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-X-700x293.png\";s:5:\"width\";i:700;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16365;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"logo-drsohiela-white-X-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1174;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"logo-drsohiela-white-X-200x78.png\";s:5:\"width\";i:200;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4457;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-X-400x156.png\";s:5:\"width\";i:400;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10096;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-X-600x234.png\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16830;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1146","897","_wp_attached_file","2026/06/logo-drsohiela-black-2X.png"),
("1147","897","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:586;s:4:\"file\";s:35:\"2026/06/logo-drsohiela-black-2X.png\";s:8:\"filesize\";i:51974;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6460;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"logo-drsohiela-black-2X-1024x400.png\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28998;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2623;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-768x300.png\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19854;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16857;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6282;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16257;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"logo-drsohiela-black-2X-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1197;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-2X-200x78.png\";s:5:\"width\";i:200;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4212;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-400x156.png\";s:5:\"width\";i:400;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9025;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-600x234.png\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14292;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-black-2X-800x313.png\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20930;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:36:\"logo-drsohiela-black-2X-1200x469.png\";s:5:\"width\";i:1200;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35742;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1148","898","_wp_attached_file","2026/06/logo-drsohiela-black-X.png"),
("1149","898","_wp_attachment_metadata","a:6:{s:5:\"width\";i:750;s:6:\"height\";i:293;s:4:\"file\";s:34:\"2026/06/logo-drsohiela-black-X.png\";s:8:\"filesize\";i:19616;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-X-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6862;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-X-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2869;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-X-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20018;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-X-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6908;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-X-700x293.png\";s:5:\"width\";i:700;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15855;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"logo-drsohiela-black-X-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1222;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"logo-drsohiela-black-X-200x78.png\";s:5:\"width\";i:200;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4399;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-X-400x156.png\";s:5:\"width\";i:400;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9769;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-black-X-600x234.png\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16606;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1150","899","_wp_attached_file","2026/06/logo-drsohiela-white-2X.png"),
("1151","899","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:586;s:4:\"file\";s:35:\"2026/06/logo-drsohiela-white-2X.png\";s:8:\"filesize\";i:37832;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6604;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"logo-drsohiela-white-2X-1024x400.png\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30073;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-768x300.png\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20697;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17563;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6357;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16569;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"logo-drsohiela-white-2X-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1138;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"logo-drsohiela-white-2X-200x78.png\";s:5:\"width\";i:200;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4298;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-400x156.png\";s:5:\"width\";i:400;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9362;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-600x234.png\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14855;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:35:\"logo-drsohiela-white-2X-800x313.png\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21768;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:36:\"logo-drsohiela-white-2X-1200x469.png\";s:5:\"width\";i:1200;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36616;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1182","47","_wp_old_date","2023-07-07"),
("1183","59","_wp_old_date","2023-07-07"),
("1184","61","_wp_old_date","2023-07-07"),
("1247","920","_edit_last","1"),
("1249","920","_wp_page_template","100-width.php"),
("1250","920","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1251","920","fusion_builder_status","active"),
("1252","922","_edit_last","1"),
("1254","922","_wp_page_template","100-width.php"),
("1255","922","_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:0:\"\";s:6:\"bottom\";s:0:\"\";}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\";}"),
("1256","922","fusion_builder_status","active"),
("1258","924","_edit_last","1"),
("1259","924","_edit_lock","1781615227:1"),
("1260","924","_fusion","a:0:{}"),
("1261","920","relationship","a:1:{i:0;s:3:\"922\";}"),
("1262","920","_relationship","field_6a1eb7c7f8c75"),
("1263","926","relationship","a:1:{i:0;s:3:\"922\";}"),
("1264","926","_relationship","field_6a1eb7c7f8c75"),
("1268","920","post_cart","show"),
("1269","920","_post_cart","field_6a1eb9ec09978"),
("1273","920","excerpt","Subtle, natural looking enhancement"),
("1274","920","_excerpt","field_6a1ebcb11e905"),
("1275","920","age_appropriate","22"),
("1276","920","_age_appropriate","field_6a1ebcd74eee9"),
("1277","934","relationship","a:1:{i:0;s:3:\"922\";}"),
("1278","934","_relationship","field_6a1eb7c7f8c75"),
("1279","934","post_cart","show"),
("1280","934","_post_cart","field_6a1eb9ec09978"),
("1281","934","excerpt","Subtle, natural-looking enhancement"),
("1282","934","_excerpt","field_6a1ebcb11e905"),
("1283","934","age_appropriate","21"),
("1284","934","_age_appropriate","field_6a1ebcd74eee9"),
("1285","935","relationship","a:1:{i:0;s:3:\"922\";}"),
("1286","935","_relationship","field_6a1eb7c7f8c75"),
("1287","935","post_cart","show"),
("1288","935","_post_cart","field_6a1eb9ec09978"),
("1289","935","excerpt","Subtle, natural-looking enhancement"),
("1290","935","_excerpt","field_6a1ebcb11e905"),
("1291","935","age_appropriate","21"),
("1292","935","_age_appropriate","field_6a1ebcd74eee9"),
("1293","936","_wp_attached_file","2026/06/Dermal-Fillers.jpg"),
("1294","936","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:26:\"2026/06/Dermal-Fillers.jpg\";s:8:\"filesize\";i:1124928;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12096;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Dermal-Fillers-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5968;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Dermal-Fillers-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93052;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22667;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12050;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39202;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"Dermal-Fillers-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2253;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12096;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34307;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64365;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"Dermal-Fillers-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98430;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1295","920","_thumbnail_id","1878"),
("1296","937","relationship","a:1:{i:0;s:3:\"922\";}"),
("1297","937","_relationship","field_6a1eb7c7f8c75"),
("1298","937","post_cart","show"),
("1299","937","_post_cart","field_6a1eb9ec09978"),
("1300","937","excerpt","Subtle, natural looking enhancement"),
("1301","937","_excerpt","field_6a1ebcb11e905"),
("1302","937","age_appropriate","21"),
("1303","937","_age_appropriate","field_6a1ebcd74eee9"),
("1304","938","_wp_attached_file","2026/06/Dermal-Fillers02.jpg"),
("1305","938","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:28:\"2026/06/Dermal-Fillers02.jpg\";s:8:\"filesize\";i:45726;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Dermal-Fillers02-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10466;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Dermal-Fillers02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4818;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"Dermal-Fillers02-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13511;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"Dermal-Fillers02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8448;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"Dermal-Fillers02-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22627;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"Dermal-Fillers02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1982;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"Dermal-Fillers02-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10466;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"Dermal-Fillers02-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27377;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1306","939","_wp_page_template","100-width.php"),
("1307","939","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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:2:\"no\";s:17:\"content_bg_repeat\";s:7:\"default\";}"),
("1308","939","fusion_builder_status","active"),
("1309","939","relationship","a:1:{i:0;s:3:\"922\";}"),
("1310","939","_relationship","field_6a1eb7c7f8c75"),
("1311","939","post_cart","show"),
("1312","939","_post_cart","field_6a1eb9ec09978"),
("1313","939","excerpt","A refreshed, well-rested look"),
("1314","939","_excerpt","field_6a1ebcb11e905"),
("1315","939","age_appropriate","18"),
("1316","939","_age_appropriate","field_6a1ebcd74eee9"),
("1317","939","_thumbnail_id","1875"),
("1319","939","_edit_last","1"),
("1320","940","_wp_attached_file","2026/06/Botox-Anti-Wrinkle.jpg"),
("1321","940","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:30:\"2026/06/Botox-Anti-Wrinkle.jpg\";s:8:\"filesize\";i:1081336;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11363;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Botox-Anti-Wrinkle-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75994;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5742;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Botox-Anti-Wrinkle-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91785;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22752;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11192;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37385;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Botox-Anti-Wrinkle-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2215;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11363;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32060;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Botox-Anti-Wrinkle-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61960;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Botox-Anti-Wrinkle-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97865;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1322","941","relationship","a:1:{i:0;s:3:\"922\";}"),
("1323","941","_relationship","field_6a1eb7c7f8c75"),
("1324","941","post_cart","show"),
("1325","941","_post_cart","field_6a1eb9ec09978"),
("1326","941","excerpt","A refreshed, well-rested look"),
("1327","941","_excerpt","field_6a1ebcb11e905"),
("1328","941","age_appropriate","18"),
("1329","941","_age_appropriate","field_6a1ebcd74eee9"),
("1330","943","_wp_page_template","100-width.php"),
("1331","943","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1332","943","fusion_builder_status","active"),
("1333","943","relationship","a:1:{i:0;s:3:\"922\";}"),
("1334","943","_relationship","field_6a1eb7c7f8c75"),
("1335","943","post_cart","show"),
("1336","943","_post_cart","field_6a1eb9ec09978"),
("1337","943","excerpt","Natural collagen renewal, from within"),
("1338","943","_excerpt","field_6a1ebcb11e905"),
("1339","943","age_appropriate","18"),
("1340","943","_age_appropriate","field_6a1ebcd74eee9"),
("1341","943","_thumbnail_id","2037"),
("1343","943","_edit_last","1"),
("1344","944","relationship","a:1:{i:0;s:3:\"922\";}"),
("1345","944","_relationship","field_6a1eb7c7f8c75"),
("1346","944","post_cart","show"),
("1347","944","_post_cart","field_6a1eb9ec09978"),
("1348","944","excerpt","Subtle, natural looking enhancement"),
("1349","944","_excerpt","field_6a1ebcb11e905"),
("1350","944","age_appropriate","22"),
("1351","944","_age_appropriate","field_6a1ebcd74eee9"),
("1352","945","_wp_attached_file","2026/06/Biostimulators-Sculptra.jpg"),
("1353","945","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:35:\"2026/06/Biostimulators-Sculptra.jpg\";s:8:\"filesize\";i:52099;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Biostimulators-Sculptra-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11312;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Biostimulators-Sculptra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5913;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Biostimulators-Sculptra-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19528;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Biostimulators-Sculptra-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11271;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Biostimulators-Sculptra-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30389;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Biostimulators-Sculptra-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2302;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Biostimulators-Sculptra-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11312;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Biostimulators-Sculptra-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30577;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1354","946","relationship","a:1:{i:0;s:3:\"922\";}"),
("1355","946","_relationship","field_6a1eb7c7f8c75"),
("1356","946","post_cart","show"),
("1357","946","_post_cart","field_6a1eb9ec09978"),
("1358","946","excerpt","Natural collagen renewal, from within"),
("1359","946","_excerpt","field_6a1ebcb11e905"),
("1360","946","age_appropriate","18"),
("1361","946","_age_appropriate","field_6a1ebcd74eee9"),
("1363","948","_edit_last","1"),
("1364","948","_wp_page_template","100-width.php"),
("1365","948","_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:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}"),
("1366","948","fusion_builder_status","active"),
("1376","952","_edit_last","1"),
("1378","953","_fusion","a:0:{}"),
("1379","953","_edit_lock","1780404690:1"),
("1380","953","_edit_last","1"),
("1381","952","_wp_page_template","100-width.php"),
("1382","952","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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:2:\"no\";s:17:\"content_bg_repeat\";s:7:\"default\";}"),
("1383","952","fusion_builder_status","active"),
("1384","952","postcart","show"),
("1385","952","_postcart","field_6a1ecc5c3bda3"),
("1386","952","treatment","PRP, Mesotherapy"),
("1387","952","_treatment","field_6a1ecc5c3bddb"),
("1388","959","postcart","show"),
("1389","959","_postcart","field_6a1ecc5c3bda3"),
("1390","959","treatment","PDRN · Skin Booster"),
("1391","959","_treatment","field_6a1ecc5c3bddb"),
("1392","960","_wp_attached_file","2026/06/Dark-Circles.jpg"),
("1393","960","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:24:\"2026/06/Dark-Circles.jpg\";s:8:\"filesize\";i:51110;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Dark-Circles-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9772;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Dark-Circles-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4859;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"Dark-Circles-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16866;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"Dark-Circles-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9694;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"Dark-Circles-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26259;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"Dark-Circles-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1938;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"Dark-Circles-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9772;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"Dark-Circles-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28255;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1394","952","_thumbnail_id","1854"),
("1396","964","_wp_page_template","100-width.php"),
("1397","964","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1398","964","fusion_builder_status","active"),
("1399","964","postcart","show"),
("1400","964","_postcart","field_6a1ecc5c3bda3"),
("1401","964","treatment","Botox"),
("1402","964","_treatment","field_6a1ecc5c3bddb"),
("1403","964","_thumbnail_id","1853"),
("1404","964","_edit_lock","1782999592:1"),
("1405","964","_edit_last","1"),
("1406","965","postcart","show"),
("1407","965","_postcart","field_6a1ecc5c3bda3"),
("1408","965","treatment","Skin Booster · PDRN"),
("1409","965","_treatment","field_6a1ecc5c3bddb"),
("1410","966","_wp_attached_file","2026/06/Under-Eye-Wrinkles.jpg"),
("1411","966","_wp_attachment_metadata","a:6:{s:5:\"width\";i:415;s:6:\"height\";i:740;s:4:\"file\";s:30:\"2026/06/Under-Eye-Wrinkles.jpg\";s:8:\"filesize\";i:111753;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-168x300.jpg\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4582;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-415x272.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13124;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8087;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-415x441.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21617;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Under-Eye-Wrinkles-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1897;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-200x357.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10034;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-400x713.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28870;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1412","967","_wp_attached_file","2026/06/Under-Eye-Wrinkles-1.jpg"),
("1413","967","_wp_attachment_metadata","a:6:{s:5:\"width\";i:415;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2026/06/Under-Eye-Wrinkles-1.jpg\";s:8:\"filesize\";i:111753;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Under-Eye-Wrinkles-1-168x300.jpg\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Under-Eye-Wrinkles-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4582;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Under-Eye-Wrinkles-1-415x272.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13124;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Under-Eye-Wrinkles-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8087;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Under-Eye-Wrinkles-1-415x441.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21617;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Under-Eye-Wrinkles-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1897;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Under-Eye-Wrinkles-1-200x357.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10034;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Under-Eye-Wrinkles-1-400x713.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28870;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1414","968","_wp_page_template","100-width.php"),
("1415","968","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1416","968","fusion_builder_status","active"),
("1417","968","postcart","show"),
("1418","968","_postcart","field_6a1ecc5c3bda3"),
("1419","968","treatment","Botox"),
("1420","968","_treatment","field_6a1ecc5c3bddb"),
("1421","968","_thumbnail_id","1852"),
("1423","968","_edit_last","1"),
("1424","969","_wp_attached_file","2026/06/Underarm-Bikini-Brightening.jpg"),
("1425","969","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2026/06/Underarm-Bikini-Brightening.jpg\";s:8:\"filesize\";i:43782;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Underarm-Bikini-Brightening-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9477;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Underarm-Bikini-Brightening-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5165;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"Underarm-Bikini-Brightening-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20024;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"Underarm-Bikini-Brightening-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10744;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"Underarm-Bikini-Brightening-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28132;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Underarm-Bikini-Brightening-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2007;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"Underarm-Bikini-Brightening-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9477;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"Underarm-Bikini-Brightening-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25822;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1426","970","postcart","show"),
("1427","970","_postcart","field_6a1ecc5c3bda3"),
("1428","970","treatment","Chemical Peel · Brightening Injection"),
("1429","970","_treatment","field_6a1ecc5c3bddb"),
("1432","982","_wp_attached_file","2026/06/A-Natural-Approach-to-Beauty.jpg"),
("1433","982","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1015;s:4:\"file\";s:40:\"2026/06/A-Natural-Approach-to-Beauty.jpg\";s:8:\"filesize\";i:782065;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"A-Natural-Approach-to-Beauty-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58723;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5388;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38261;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21175;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10521;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31734;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"A-Natural-Approach-to-Beauty-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2174;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-200x135.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5899;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15213;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-600x406.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27028;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-800x541.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40674;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:41:\"A-Natural-Approach-to-Beauty-1200x812.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:812;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73813;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1434","983","_wp_attached_file","2026/06/Your-Journey-Starts-with-a-Consultation.jpg"),
("1435","983","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:998;s:4:\"file\";s:51:\"2026/06/Your-Journey-Starts-with-a-Consultation.jpg\";s:8:\"filesize\";i:760560;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10030;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Your-Journey-Starts-with-a-Consultation-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36080;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19848;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10557;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30384;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Your-Journey-Starts-with-a-Consultation-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2095;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5976;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14727;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25532;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:51:\"Your-Journey-Starts-with-a-Consultation-800x532.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38189;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:52:\"Your-Journey-Starts-with-a-Consultation-1200x798.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67799;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1436","984","_wp_attached_file","2026/06/doctor.jpg"),
("1437","984","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:18:\"2026/06/doctor.jpg\";s:8:\"filesize\";i:46224;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"doctor-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10234;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"doctor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5270;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"doctor-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17591;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"doctor-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10156;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"doctor-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26791;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"doctor-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2029;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"doctor-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10234;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"doctor-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27385;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1438","990","_wp_attached_file","2026/06/BG01-scaled.jpg"),
("1439","990","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1406;s:4:\"file\";s:23:\"2026/06/BG01-scaled.jpg\";s:8:\"filesize\";i:165670;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG01-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7576;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG01-1024x563.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3709;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG01-768x422.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27456;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG01-1536x844.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74880;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:18:\"BG01-2048x1125.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116264;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16671;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8526;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25572;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1584;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG01-200x110.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4434;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG01-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11064;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG01-600x330.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19465;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG01-800x439.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29143;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG01-1200x659.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52209;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}s:14:\"original_image\";s:8:\"BG01.jpg\";}"),
("1440","991","_wp_attached_file","2026/06/0_Beauty_Facial_1920x1080.mp4"),
("1441","991","_wp_attachment_metadata","a:11:{s:7:\"bitrate\";i:12089597;s:8:\"filesize\";i:9029504;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:6;s:16:\"length_formatted\";s:4:\"0:06\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:16:\"H.264/MPEG-4 AVC\";s:17:\"created_timestamp\";i:-2082844800;}"),
("1443","204","_edit_last","1"),
("1450","200","_wp_old_slug","meet-our-new-dance-instructor-maria-gonzalez"),
("1453","197","_wp_old_slug","the-benefits-of-dancing-for-your-health-and-well-being"),
("1456","194","_wp_old_slug","how-to-master-the-salsa-in-10-easy-steps"),
("1457","1000","_wp_attached_file","2023/07/Sun-and-Water-Damage-The-Dubai-Guide.jpg"),
("1458","1000","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:48:\"2023/07/Sun-and-Water-Damage-The-Dubai-Guide.jpg\";s:8:\"filesize\";i:2974835;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22084;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Sun-and-Water-Damage-The-Dubai-Guide-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178678;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6968;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105239;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Sun-and-Water-Damage-The-Dubai-Guide-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:353422;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35611;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16351;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59835;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:46:\"Sun-and-Water-Damage-The-Dubai-Guide-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2290;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11015;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35156;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69802;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:48:\"Sun-and-Water-Damage-The-Dubai-Guide-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112061;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:50:\"Sun-and-Water-Damage-The-Dubai-Guide-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226373;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("1461","1001","_wp_attached_file","2023/07/Secrets-to-an-Elegant-Neck.jpg"),
("1462","1001","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:38:\"2023/07/Secrets-to-an-Elegant-Neck.jpg\";s:8:\"filesize\";i:3015668;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18837;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"Secrets-to-an-Elegant-Neck-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147689;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6855;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85254;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Secrets-to-an-Elegant-Neck-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:334925;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26668;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13327;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44193;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Secrets-to-an-Elegant-Neck-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2473;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10231;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28911;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55597;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Secrets-to-an-Elegant-Neck-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90762;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:40:\"Secrets-to-an-Elegant-Neck-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196448;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1465","1002","_wp_attached_file","2023/07/Best-Under-Eye-Treatments.jpg"),
("1466","1002","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:37:\"2023/07/Best-Under-Eye-Treatments.jpg\";s:8:\"filesize\";i:2223151;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12031;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Best-Under-Eye-Treatments-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96014;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4556;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57987;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Best-Under-Eye-Treatments-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194443;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19757;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9651;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32896;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Best-Under-Eye-Treatments-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1890;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6610;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18833;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37859;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:37:\"Best-Under-Eye-Treatments-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62117;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:39:\"Best-Under-Eye-Treatments-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125473;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1470","964","avada_post_views_count","200"),
("1471","964","avada_today_post_views_count","20"),
("1472","964","avada_post_views_count_today_date","02-07-2026"),
("1473","1008","_wp_attached_file","2026/06/Before-After-Lip-Filler-5-copy.jpg"),
("1474","1008","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:42:\"2026/06/Before-After-Lip-Filler-5-copy.jpg\";s:8:\"filesize\";i:485290;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15772;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5383;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77371;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28172;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11727;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44579;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Before-After-Lip-Filler-5-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2091;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8051;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25390;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51073;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-5-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82086;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1475","1009","_wp_attached_file","2026/06/Before-After-Lip-Filler-6-copy.jpg"),
("1476","1009","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:42:\"2026/06/Before-After-Lip-Filler-6-copy.jpg\";s:8:\"filesize\";i:424190;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13546;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4805;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66657;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23431;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10346;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38037;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Before-After-Lip-Filler-6-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1942;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7112;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21993;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43937;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-6-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71053;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1477","1010","_wp_attached_file","2026/06/Before-After-Full-Face-Filler-1-copy.jpg"),
("1478","1010","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:48:\"2026/06/Before-After-Full-Face-Filler-1-copy.jpg\";s:8:\"filesize\";i:541845;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13122;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4969;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62639;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26074;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11249;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40662;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:46:\"Before-After-Full-Face-Filler-1-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2063;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7116;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20816;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40365;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:48:\"Before-After-Full-Face-Filler-1-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67323;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1479","1011","_wp_attached_file","2026/06/Before-After-calcium-injection-1-copy.jpg"),
("1480","1011","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:49:\"2026/06/Before-After-calcium-injection-1-copy.jpg\";s:8:\"filesize\";i:498465;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6107;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79031;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23760;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12541;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44563;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"Before-After-calcium-injection-1-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2311;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9011;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26918;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52378;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-1-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83770;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1481","1012","_wp_attached_file","2026/06/Before-After-calcium-injection-2-copy.jpg"),
("1482","1012","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:49:\"2026/06/Before-After-calcium-injection-2-copy.jpg\";s:8:\"filesize\";i:528008;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5792;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82554;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30138;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13556;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52431;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"Before-After-calcium-injection-2-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2163;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8556;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26438;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53353;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-2-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88538;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1483","1013","_wp_attached_file","2026/06/Before-After-Lip-Filler-1-copy.jpg"),
("1484","1013","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:42:\"2026/06/Before-After-Lip-Filler-1-copy.jpg\";s:8:\"filesize\";i:318862;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12856;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5078;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52574;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17622;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8982;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27731;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Before-After-Lip-Filler-1-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2103;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7219;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19672;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36032;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-1-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55581;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1485","1014","_wp_attached_file","2026/06/Before-After-calcium-injection-3-copy.jpg"),
("1486","1014","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:49:\"2026/06/Before-After-calcium-injection-3-copy.jpg\";s:8:\"filesize\";i:508490;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5963;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79645;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30274;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13504;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50392;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"Before-After-calcium-injection-3-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2330;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8851;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26740;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52625;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"Before-After-calcium-injection-3-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84840;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1487","1015","_wp_attached_file","2026/06/Before-After-Lip-Filler-3-copy.jpg"),
("1488","1015","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:42:\"2026/06/Before-After-Lip-Filler-3-copy.jpg\";s:8:\"filesize\";i:530482;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16045;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5507;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75870;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25772;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11526;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42176;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Before-After-Lip-Filler-3-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2064;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8274;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25733;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50659;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-3-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80410;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1489","1016","_wp_attached_file","2026/06/Before-After-Underarm-whitening-1-copy.jpg"),
("1490","1016","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:50:\"2026/06/Before-After-Underarm-whitening-1-copy.jpg\";s:8:\"filesize\";i:400494;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12693;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4588;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59376;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23438;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10278;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37849;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:48:\"Before-After-Underarm-whitening-1-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1863;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6541;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20242;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39423;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:50:\"Before-After-Underarm-whitening-1-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63320;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1491","1017","_wp_attached_file","2026/06/Before-After-Lip-Filler-4-copy.jpg"),
("1492","1017","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:42:\"2026/06/Before-After-Lip-Filler-4-copy.jpg\";s:8:\"filesize\";i:517113;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15122;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5117;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77738;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28057;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10914;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44007;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Before-After-Lip-Filler-4-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2068;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7710;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24634;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50438;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"Before-After-Lip-Filler-4-copy-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83156;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1493","1018","_wp_attached_file","2026/06/DrSoheila-Picture-copy.jpg"),
("1494","1018","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:34:\"2026/06/DrSoheila-Picture-copy.jpg\";s:8:\"filesize\";i:218029;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"DrSoheila-Picture-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10279;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"DrSoheila-Picture-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5596;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"DrSoheila-Picture-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19015;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"DrSoheila-Picture-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10618;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"DrSoheila-Picture-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30869;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"DrSoheila-Picture-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2119;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"DrSoheila-Picture-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10279;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"DrSoheila-Picture-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30164;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:4:\"1.78\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 15 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1777997495\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:15:\"6.7649998656528\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:18:\"0.0060975609756098\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1495","1020","_wp_attached_file","2026/06/Under-Eye-Dark-Cirlcle-Pic-copy.jpg"),
("1496","1020","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:43:\"2026/06/Under-Eye-Dark-Cirlcle-Pic-copy.jpg\";s:8:\"filesize\";i:206510;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Under-Eye-Dark-Cirlcle-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9720;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Under-Eye-Dark-Cirlcle-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4948;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Under-Eye-Dark-Cirlcle-Pic-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18534;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Under-Eye-Dark-Cirlcle-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10350;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Under-Eye-Dark-Cirlcle-Pic-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28075;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Under-Eye-Dark-Cirlcle-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2003;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Under-Eye-Dark-Cirlcle-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9720;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Under-Eye-Dark-Cirlcle-Pic-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28019;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1497","1021","_wp_attached_file","2026/06/Underarm-Brightening-Pic-copy.jpg"),
("1498","1021","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2026/06/Underarm-Brightening-Pic-copy.jpg\";s:8:\"filesize\";i:188589;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Underarm-Brightening-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7760;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Underarm-Brightening-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3456;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"Underarm-Brightening-Pic-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11821;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"Underarm-Brightening-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6576;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"Underarm-Brightening-Pic-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19432;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"Underarm-Brightening-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1570;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"Underarm-Brightening-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7760;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"Underarm-Brightening-Pic-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22973;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1499","1022","_wp_attached_file","2026/06/Under-Eye-Wrinkles-Pic-copy.jpg"),
("1500","1022","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2026/06/Under-Eye-Wrinkles-Pic-copy.jpg\";s:8:\"filesize\";i:179714;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Wrinkles-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9076;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Wrinkles-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4840;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Wrinkles-Pic-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15615;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Wrinkles-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9553;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Wrinkles-Pic-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24945;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Wrinkles-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1979;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Wrinkles-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9076;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Wrinkles-Pic-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25012;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1501","1027","_wp_attached_file","2026/06/Dermal-Fillers-Pic-copy.jpg"),
("1502","1027","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:35:\"2026/06/Dermal-Fillers-Pic-copy.jpg\";s:8:\"filesize\";i:159408;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Dermal-Fillers-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7349;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Dermal-Fillers-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4240;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Dermal-Fillers-Pic-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13793;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Dermal-Fillers-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8107;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Dermal-Fillers-Pic-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22524;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Dermal-Fillers-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1809;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Dermal-Fillers-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7349;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Dermal-Fillers-Pic-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20846;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1503","1028","_wp_attached_file","2026/06/Biostimulators-Sculptra-Pic-copy.jpg"),
("1504","1028","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:44:\"2026/06/Biostimulators-Sculptra-Pic-copy.jpg\";s:8:\"filesize\";i:175092;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Biostimulators-Sculptra-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8420;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Biostimulators-Sculptra-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4381;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:44:\"Biostimulators-Sculptra-Pic-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15677;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:44:\"Biostimulators-Sculptra-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8885;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:44:\"Biostimulators-Sculptra-Pic-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26103;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"Biostimulators-Sculptra-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1694;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:44:\"Biostimulators-Sculptra-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8420;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:44:\"Biostimulators-Sculptra-Pic-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24898;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1505","1029","_wp_attached_file","2026/06/Botox-Anti-Wrinkle-Pic-copy.jpg"),
("1506","1029","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2026/06/Botox-Anti-Wrinkle-Pic-copy.jpg\";s:8:\"filesize\";i:185016;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Botox-Anti-Wrinkle-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Botox-Anti-Wrinkle-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4467;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"Botox-Anti-Wrinkle-Pic-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17492;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"Botox-Anti-Wrinkle-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9324;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"Botox-Anti-Wrinkle-Pic-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26461;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Botox-Anti-Wrinkle-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1774;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"Botox-Anti-Wrinkle-Pic-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9424;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"Botox-Anti-Wrinkle-Pic-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27393;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1507","1030","_wp_attached_file","2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg"),
("1508","1030","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1015;s:4:\"file\";s:60:\"2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\";s:8:\"filesize\";i:512180;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9124;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4546;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32806;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17520;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9309;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27274;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:58:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1923;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-200x135.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5338;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13129;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-600x406.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23193;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:60:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-800x541.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34771;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:61:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-1200x812.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:812;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62683;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1509","1031","_wp_attached_file","2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg"),
("1510","1031","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1015;s:4:\"file\";s:49:\"2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\";s:8:\"filesize\";i:402257;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9447;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"A-Natural-Approach-to-Beauty-Pic-copy-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5747;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34936;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18803;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9759;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29380;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"A-Natural-Approach-to-Beauty-Pic-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2291;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-200x135.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5577;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14079;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-600x406.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24904;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"A-Natural-Approach-to-Beauty-Pic-copy-800x541.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36970;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:50:\"A-Natural-Approach-to-Beauty-Pic-copy-1200x812.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:812;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66080;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1511","1034","_fusion","a:3:{s:22:\"megamenu_wrapper_width\";s:10:\"site_width\";s:28:\"dynamic_content_preview_type\";s:7:\"default\";s:12:\"preview_term\";s:8:\"category\";}"),
("1513","1035","_wp_attached_file","2026/06/Botox-Anti-Wrinkle-Pic-copy2.jpg"),
("1514","1035","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:40:\"2026/06/Botox-Anti-Wrinkle-Pic-copy2.jpg\";s:8:\"filesize\";i:187062;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Botox-Anti-Wrinkle-Pic-copy2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Botox-Anti-Wrinkle-Pic-copy2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4647;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"Botox-Anti-Wrinkle-Pic-copy2-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17903;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"Botox-Anti-Wrinkle-Pic-copy2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9591;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"Botox-Anti-Wrinkle-Pic-copy2-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27423;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"Botox-Anti-Wrinkle-Pic-copy2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1839;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"Botox-Anti-Wrinkle-Pic-copy2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9672;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"Botox-Anti-Wrinkle-Pic-copy2-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28056;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1515","1036","_wp_attached_file","2026/06/DrSoheila-Picture-copy2.jpg"),
("1516","1036","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:35:\"2026/06/DrSoheila-Picture-copy2.jpg\";s:8:\"filesize\";i:217496;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"DrSoheila-Picture-copy2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"DrSoheila-Picture-copy2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5575;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"DrSoheila-Picture-copy2-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18815;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"DrSoheila-Picture-copy2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10506;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"DrSoheila-Picture-copy2-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30691;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"DrSoheila-Picture-copy2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2107;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"DrSoheila-Picture-copy2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10208;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"DrSoheila-Picture-copy2-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30007;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1777997495\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1518","1038","_wp_attached_file","2026/06/topology.jpg"),
("1519","1038","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1360;s:4:\"file\";s:20:\"2026/06/topology.jpg\";s:8:\"filesize\";i:551403;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"topology-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21221;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"topology-1024x725.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196783;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"topology-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7765;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"topology-768x544.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123088;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"topology-1536x1088.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:358068;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"topology-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54236;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"topology-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21676;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"topology-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92955;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"topology-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1906;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"topology-200x142.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9338;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"topology-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36909;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"topology-600x425.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79640;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"topology-800x567.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131238;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:21:\"topology-1200x850.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253206;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1520","1038","_source_url","https://avada.studio/wp-content/uploads/2022/06/topology.jpg"),
("1521","1038","_avada_studio_media","abd8dca0879ae343f3ae8990db31f4cc"),
("1522","1039","_wp_attached_file","2026/06/galery-img-4.jpg"),
("1523","1039","_wp_attachment_metadata","a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2026/06/galery-img-4.jpg\";s:8:\"filesize\";i:35493;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"galery-img-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14809;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"galery-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5754;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"galery-img-4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53777;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"galery-img-4-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15722;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"galery-img-4-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10051;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"galery-img-4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29513;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"galery-img-4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2239;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"galery-img-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8364;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"galery-img-4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21934;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:24:\"galery-img-4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38589;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1524","1039","_source_url","https://avada.studio/wp-content/uploads/2022/05/galery-img-4.jpg"),
("1525","1039","_avada_studio_media","fd4f82d16a8d823270bd7eb55c2410e6"),
("1526","1040","_wp_attached_file","2026/06/443.jpg"),
("1527","1040","_wp_attachment_metadata","a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:15:\"2026/06/443.jpg\";s:8:\"filesize\";i:260621;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"443-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34358;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"443-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11029;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"443-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154319;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:15:\"443-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59252;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:15:\"443-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27657;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:15:\"443-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98618;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:13:\"443-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3298;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"443-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17705;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:15:\"443-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57552;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:15:\"443-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106934;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1528","1040","_source_url","https://avada.studio/wp-content/uploads/2022/06/443.jpg"),
("1529","1040","_avada_studio_media","31e54d87850616002aba7a98dbab4404"),
("1530","1034","_edit_last","1"),
("1531","1034","_fusion_google_fonts",""),
("1532","1034","fusion_builder_status","active"),
("1533","1044","_wp_attached_file","2026/06/0602.mp4"),
("1534","1044","_wp_attachment_metadata","a:12:{s:7:\"bitrate\";i:10504922;s:8:\"filesize\";i:19854362;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:15;s:16:\"length_formatted\";s:4:\"0:15\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:16:\"H.264/MPEG-4 AVC\";s:5:\"audio\";a:9:{s:10:\"dataformat\";s:3:\"mp4\";s:7:\"bitrate\";i:2090;s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.00148100907029478467795413632046575003187172114849090576171875;}s:17:\"created_timestamp\";i:1780419708;}"),
("1537","1048","_wp_attached_file","2026/06/06021.mp4"),
("1538","1048","_wp_attachment_metadata","a:11:{s:8:\"filesize\";i:8576453;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:15;s:16:\"length_formatted\";s:4:\"0:15\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:10:\"H.265/HEVC\";s:5:\"audio\";a:9:{s:10:\"dataformat\";s:3:\"mp4\";s:7:\"bitrate\";i:2090;s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.00148100907029478467795413632046575003187172114849090576171875;}s:17:\"created_timestamp\";i:1780420224;}"),
("1539","1052","wpconsent_cookie_duration","30 days"),
("1540","1052","wpconsent_cookie_id","wpconsent_preferences"),
("1541","1053","_wp_attached_file","2026/06/Before-After-Lip-Filler.jpg"),
("1542","1053","_wp_attachment_metadata","a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2026/06/Before-After-Lip-Filler.jpg\";s:8:\"filesize\";i:485290;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15772;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5383;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77371;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28172;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11727;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44579;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Before-After-Lip-Filler-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2091;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8051;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25390;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51073;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:35:\"Before-After-Lip-Filler-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82086;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1543","1056","_wp_attached_file","2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6-scaled.png"),
("1544","1056","_wp_attachment_metadata","a:7:{s:5:\"width\";i:694;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6-scaled.png\";s:8:\"filesize\";i:1298987;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-81x300.png\";s:5:\"width\";i:81;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30902;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-278x1024.png\";s:5:\"width\";i:278;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268250;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39033;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-768x2831.png\";s:5:\"width\";i:768;s:6:\"height\";i:2831;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1544018;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-417x1536.png\";s:5:\"width\";i:417;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:540512;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-556x2048.png\";s:5:\"width\";i:556;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:885572;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:48:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227481;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:48:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96524;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:48:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:373274;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:46:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8967;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:48:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-200x737.png\";s:5:\"width\";i:200;s:6:\"height\";i:737;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150630;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-400x1475.png\";s:5:\"width\";i:400;s:6:\"height\";i:1475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:503766;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-600x2212.png\";s:5:\"width\";i:600;s:6:\"height\";i:2212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:998593;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-800x2949.png\";s:5:\"width\";i:800;s:6:\"height\";i:2949;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1656811;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:50:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1200x4424.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4424;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3251522;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}s:14:\"original_image\";s:40:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6.png\";}"),
("1545","1057","_wp_attached_file","2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-scaled.png"),
("1546","1057","_wp_attachment_metadata","a:7:{s:5:\"width\";i:694;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-scaled.png\";s:8:\"filesize\";i:1269957;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-81x300.png\";s:5:\"width\";i:81;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30851;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-278x1024.png\";s:5:\"width\";i:278;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:265441;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-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:38888;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-768x2831.png\";s:5:\"width\";i:768;s:6:\"height\";i:2831;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1504831;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-417x1536.png\";s:5:\"width\";i:417;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:532546;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-556x2048.png\";s:5:\"width\";i:556;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:869277;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:50:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222192;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:50:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-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:95452;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:50:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:364826;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:48:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-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:8976;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:50:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-200x737.png\";s:5:\"width\";i:200;s:6:\"height\";i:737;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149501;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-400x1475.png\";s:5:\"width\";i:400;s:6:\"height\";i:1475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:496850;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:51:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-600x2212.png\";s:5:\"width\";i:600;s:6:\"height\";i:2212;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:977110;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:51:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-800x2949.png\";s:5:\"width\";i:800;s:6:\"height\";i:2949;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1613520;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:52:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-1200x4424.png\";s:5:\"width\";i:1200;s:6:\"height\";i:4424;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3109570;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}s:14:\"original_image\";s:42:\"85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1.png\";}"),
("1547","1060","_wp_attached_file","2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd.png"),
("1548","1060","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1994;s:4:\"file\";s:48:\"2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd.png\";s:8:\"filesize\";i:484821;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75599;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-986x1024.png\";s:5:\"width\";i:986;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:611742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24616;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-768x798.png\";s:5:\"width\";i:768;s:6:\"height\";i:798;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:400537;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1479x1536.png\";s:5:\"width\";i:1479;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1185256;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220275;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74431;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285910;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:46:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6133;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-200x208.png\";s:5:\"width\";i:200;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40448;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-400x415.png\";s:5:\"width\";i:400;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132494;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-600x623.png\";s:5:\"width\";i:600;s:6:\"height\";i:623;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:264922;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-800x831.png\";s:5:\"width\";i:800;s:6:\"height\";i:831;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:432394;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1200x1246.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1246;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:848006;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1549","1064","_wp_attached_file","2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd-1.png"),
("1550","1064","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1994;s:4:\"file\";s:50:\"2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd-1.png\";s:8:\"filesize\";i:440622;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61691;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-986x1024.png\";s:5:\"width\";i:986;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:499005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-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:20118;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-768x798.png\";s:5:\"width\";i:768;s:6:\"height\";i:798;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:327064;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-1479x1536.png\";s:5:\"width\";i:1479;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:965419;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:219502;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-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:67339;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:258036;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:48:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-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:4979;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-200x208.png\";s:5:\"width\";i:200;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33103;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-400x415.png\";s:5:\"width\";i:400;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108504;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-600x623.png\";s:5:\"width\";i:600;s:6:\"height\";i:623;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:216520;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:50:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-800x831.png\";s:5:\"width\";i:800;s:6:\"height\";i:831;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:353326;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:52:\"4ae13b0d-0273-4b55-aa97-81db8fd465fd-1-1200x1246.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1246;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:692352;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1551","1066","_fusion_is_global","yes"),
("1553","920","avada_post_views_count","303"),
("1554","920","avada_today_post_views_count","51"),
("1555","920","avada_post_views_count_today_date","02-07-2026"),
("1556","968","avada_post_views_count","193"),
("1557","968","avada_today_post_views_count","20"),
("1558","968","avada_post_views_count_today_date","02-07-2026"),
("1559","943","avada_post_views_count","272"),
("1560","943","avada_today_post_views_count","17"),
("1561","943","avada_post_views_count_today_date","02-07-2026"),
("1562","952","avada_post_views_count","266"),
("1563","952","avada_today_post_views_count","16"),
("1564","952","avada_post_views_count_today_date","02-07-2026"),
("1574","47","_wp_old_date","2026-06-02"),
("1581","59","_wp_old_date","2026-06-02"),
("1582","61","_wp_old_date","2026-06-02"),
("1585","1089","_wpcode_auto_insert","1"),
("1586","1089","_wpcode_auto_insert_number","1"),
("1587","1090","_wpcode_auto_insert","1"),
("1588","1090","_wpcode_library_id","12"),
("1589","1091","_wpcode_auto_insert","1"),
("1590","1091","_wpcode_auto_insert_number","1"),
("1591","1091","_wpcode_conditional_logic_enabled",""),
("1592","1091","_wpcode_priority","10"),
("1593","1091","_wpcode_note",""),
("1594","1091","_wpcode_location_extra",""),
("1595","1091","_wpcode_shortcode_attributes","a:0:{}"),
("1596","1091","_edit_lock","1781616898:1"),
("1599","1091","_wpcode_conditional_logic","a:0:{}"),
("1602","1095","_wp_attached_file","2026/06/06022-2.mp4"),
("1603","1095","_wp_attachment_metadata","a:12:{s:7:\"bitrate\";i:646111;s:8:\"filesize\";i:1251113;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:15;s:16:\"length_formatted\";s:4:\"0:15\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:16:\"H.264/MPEG-4 AVC\";s:5:\"audio\";a:9:{s:10:\"dataformat\";s:3:\"mp4\";s:7:\"bitrate\";i:15999;s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.0113371598639455777035589534307291614823043346405029296875;}s:17:\"created_timestamp\";i:1780688723;}"),
("1604","1097","_wp_attached_file","2026/06/060221.mp4"),
("1605","1097","_wp_attachment_metadata","a:12:{s:7:\"bitrate\";i:1939959;s:8:\"filesize\";i:3695870;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:15;s:16:\"length_formatted\";s:4:\"0:15\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:16:\"H.264/MPEG-4 AVC\";s:5:\"audio\";a:9:{s:10:\"dataformat\";s:3:\"mp4\";s:7:\"bitrate\";i:15999;s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.0113371598639455777035589534307291614823043346405029296875;}s:17:\"created_timestamp\";i:1780688819;}"),
("1606","939","avada_post_views_count","292"),
("1607","939","avada_today_post_views_count","35"),
("1608","939","avada_post_views_count_today_date","02-07-2026"),
("1610","1108","_wp_attached_file","2026/06/BG03.jpg"),
("1611","1108","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:773;s:4:\"file\";s:16:\"2026/06/BG03.jpg\";s:8:\"filesize\";i:75101;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"BG03-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3204;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG03-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21988;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1851;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG03-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13918;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG03-1536x464.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40563;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"BG03-2048x618.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62323;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14270;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4756;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15127;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1023;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"BG03-200x60.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1822;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG03-400x121.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4846;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG03-600x181.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9377;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG03-800x242.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15043;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG03-1200x362.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28068;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1612","922","avada_post_views_count","749"),
("1613","922","avada_today_post_views_count","131"),
("1614","922","avada_post_views_count_today_date","02-07-2026"),
("1615","1112","_wpcode_auto_insert","1"),
("1616","1112","_wpcode_auto_insert_number","1"),
("1617","1112","_wpcode_conditional_logic_enabled",""),
("1618","1112","_wpcode_priority","10"),
("1619","1112","_wpcode_note",""),
("1620","1112","_wpcode_location_extra",""),
("1621","1112","_wpcode_shortcode_attributes","a:0:{}"),
("1622","1112","_edit_lock","1780766340:1"),
("1623","1112","_wpcode_conditional_logic","a:0:{}"),
("1627","1116","_wp_attached_file","2026/06/forehead_1862845.png"),
("1628","1116","_wp_attachment_metadata","a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2026/06/forehead_1862845.png\";s:8:\"filesize\";i:19386;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"forehead_1862845-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"forehead_1862845-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5273;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"forehead_1862845-512x272.png\";s:5:\"width\";i:512;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10937;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"forehead_1862845-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9948;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"forehead_1862845-512x441.png\";s:5:\"width\";i:512;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15706;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"forehead_1862845-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2027;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"forehead_1862845-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7477;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"forehead_1862845-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19024;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1633","1131","_wpcode_auto_insert","1"),
("1634","1131","_wpcode_auto_insert_number","1"),
("1635","1131","_wpcode_conditional_logic_enabled",""),
("1636","1131","_wpcode_priority","10"),
("1637","1131","_wpcode_note",""),
("1638","1131","_wpcode_location_extra",""),
("1639","1131","_wpcode_shortcode_attributes","a:0:{}"),
("1640","1131","_edit_lock","1780776231:1"),
("1642","1131","_wpcode_conditional_logic","a:0:{}"),
("1643","1133","_wpcode_auto_insert","1"),
("1644","1133","_wpcode_auto_insert_number","1"),
("1645","1133","_wpcode_conditional_logic_enabled",""),
("1646","1133","_wpcode_priority","10"),
("1647","1133","_wpcode_note",""),
("1648","1133","_wpcode_location_extra",""),
("1649","1133","_wpcode_shortcode_attributes","a:0:{}"),
("1650","1133","_edit_lock","1780776257:1"),
("1651","1133","_wpcode_conditional_logic","a:0:{}"),
("1652","1149","_menu_item_type","post_type"),
("1653","1149","_menu_item_menu_item_parent","0"),
("1654","1149","_menu_item_object_id","922"),
("1655","1149","_menu_item_object","page"),
("1656","1149","_menu_item_target",""),
("1657","1149","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("1658","1149","_menu_item_xfn",""),
("1659","1149","_menu_item_url",""),
("1661","1149","_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:\"\";}"),
("1662","47","_wp_old_date","2026-06-05"),
("1668","59","_wp_old_date","2026-06-05"),
("1669","61","_wp_old_date","2026-06-05"),
("1671","1158","_wpcode_auto_insert","1"),
("1672","1158","_wpcode_auto_insert_number","1"),
("1673","1158","_wpcode_conditional_logic_enabled",""),
("1674","1158","_wpcode_priority","10"),
("1675","1158","_wpcode_note",""),
("1676","1158","_wpcode_location_extra",""),
("1677","1158","_wpcode_shortcode_attributes","a:0:{}"),
("1678","1158","_edit_lock","1780820070:1"),
("1680","1161","_wp_attached_file","2026/06/BG04-scaled.jpg"),
("1681","1161","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:773;s:4:\"file\";s:23:\"2026/06/BG04-scaled.jpg\";s:8:\"filesize\";i:102850;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"BG04-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2644;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG04-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17648;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2013;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG04-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10889;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG04-1536x464.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35998;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"BG04-2048x619.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:619;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64286;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG04-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10593;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4003;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG04-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14648;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1056;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"BG04-200x60.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1630;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG04-400x121.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3936;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG04-600x181.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7374;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG04-800x242.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11826;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG04-1200x362.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23005;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}s:14:\"original_image\";s:8:\"BG04.jpg\";}"),
("1684","1169","_wpcode_auto_insert","1"),
("1685","1169","_wpcode_auto_insert_number","1"),
("1686","1169","_wpcode_conditional_logic_enabled",""),
("1687","1169","_wpcode_priority","10"),
("1688","1169","_wpcode_note",""),
("1689","1169","_wpcode_location_extra",""),
("1690","1169","_wpcode_shortcode_attributes","a:0:{}"),
("1691","1169","_edit_lock","1780831113:1"),
("1692","939","_edit_lock","1781779717:1"),
("1693","1172","relationship","a:1:{i:0;s:3:\"922\";}"),
("1694","1172","_relationship","field_6a1eb7c7f8c75"),
("1695","1172","post_cart","show"),
("1696","1172","_post_cart","field_6a1eb9ec09978"),
("1697","1172","excerpt","Subtle, natural looking enhancement"),
("1698","1172","_excerpt","field_6a1ebcb11e905"),
("1699","1172","age_appropriate","22"),
("1700","1172","_age_appropriate","field_6a1ebcd74eee9"),
("1702","1176","relationship","a:1:{i:0;s:3:\"922\";}"),
("1703","1176","_relationship","field_6a1eb7c7f8c75"),
("1704","1176","post_cart","show"),
("1705","1176","_post_cart","field_6a1eb9ec09978"),
("1706","1176","excerpt","Natural collagen renewal, from within"),
("1707","1176","_excerpt","field_6a1ebcb11e905"),
("1708","1176","age_appropriate","18"),
("1709","1176","_age_appropriate","field_6a1ebcd74eee9"),
("1713","1180","_wp_page_template","100-width.php"),
("1714","1180","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1715","1180","fusion_builder_status","active"),
("1716","1180","relationship","a:1:{i:0;s:3:\"922\";}"),
("1717","1180","_relationship","field_6a1eb7c7f8c75"),
("1718","1180","post_cart","show"),
("1719","1180","_post_cart","field_6a1eb9ec09978"),
("1720","1180","excerpt","Deep hydration for radiant skin"),
("1721","1180","_excerpt","field_6a1ebcb11e905"),
("1722","1180","age_appropriate","18"),
("1723","1180","_age_appropriate","field_6a1ebcd74eee9"),
("1726","1180","_edit_last","1"),
("1727","1181","relationship","a:1:{i:0;s:3:\"922\";}"),
("1728","1181","_relationship","field_6a1eb7c7f8c75"),
("1729","1181","post_cart","hide"),
("1730","1181","_post_cart","field_6a1eb9ec09978"),
("1731","1181","excerpt",""),
("1732","1181","_excerpt","field_6a1ebcb11e905"),
("1733","1181","age_appropriate",""),
("1734","1181","_age_appropriate","field_6a1ebcd74eee9"),
("1741","1186","_wp_page_template","100-width.php"),
("1742","1186","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1743","1186","fusion_builder_status","active"),
("1744","1186","relationship","a:1:{i:0;s:3:\"922\";}"),
("1745","1186","_relationship","field_6a1eb7c7f8c75"),
("1746","1186","post_cart","show"),
("1747","1186","_post_cart","field_6a1eb9ec09978"),
("1748","1186","excerpt","Advanced cellular repair and hydration"),
("1749","1186","_excerpt","field_6a1ebcb11e905"),
("1750","1186","age_appropriate","18"),
("1751","1186","_age_appropriate","field_6a1ebcd74eee9"),
("1754","1186","_edit_last","1"),
("1755","1187","relationship","a:1:{i:0;s:3:\"922\";}"),
("1756","1187","_relationship","field_6a1eb7c7f8c75"),
("1757","1187","post_cart","hide"),
("1758","1187","_post_cart","field_6a1eb9ec09978"),
("1759","1187","excerpt",""),
("1760","1187","_excerpt","field_6a1ebcb11e905"),
("1761","1187","age_appropriate",""),
("1762","1187","_age_appropriate","field_6a1ebcd74eee9"),
("1764","1189","_wp_page_template","100-width.php"),
("1765","1189","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1766","1189","fusion_builder_status","active"),
("1767","1189","relationship","a:1:{i:0;s:3:\"922\";}"),
("1768","1189","_relationship","field_6a1eb7c7f8c75"),
("1769","1189","post_cart","show"),
("1770","1189","_post_cart","field_6a1eb9ec09978"),
("1771","1189","excerpt","Advanced texture and collagen boost"),
("1772","1189","_excerpt","field_6a1ebcb11e905"),
("1773","1189","age_appropriate","18"),
("1774","1189","_age_appropriate","field_6a1ebcd74eee9"),
("1776","1189","_edit_last","1"),
("1777","1190","relationship","a:1:{i:0;s:3:\"922\";}"),
("1778","1190","_relationship","field_6a1eb7c7f8c75"),
("1779","1190","post_cart","hide"),
("1780","1190","_post_cart","field_6a1eb9ec09978"),
("1781","1190","excerpt",""),
("1782","1190","_excerpt","field_6a1ebcb11e905"),
("1783","1190","age_appropriate",""),
("1784","1190","_age_appropriate","field_6a1ebcd74eee9"),
("1785","1189","avada_post_views_count","198"),
("1786","1189","avada_today_post_views_count","15"),
("1787","1189","avada_post_views_count_today_date","02-07-2026"),
("1788","1180","avada_post_views_count","220"),
("1789","1180","avada_today_post_views_count","19"),
("1790","1180","avada_post_views_count_today_date","02-07-2026"),
("1791","1193","_wp_page_template","100-width.php"),
("1792","1193","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1793","1193","fusion_builder_status","active"),
("1794","1193","relationship","a:1:{i:0;s:3:\"922\";}"),
("1795","1193","_relationship","field_6a1eb7c7f8c75"),
("1796","1193","post_cart","show"),
("1797","1193","_post_cart","field_6a1eb9ec09978"),
("1798","1193","excerpt","Natural tissue regeneration and renewal"),
("1799","1193","_excerpt","field_6a1ebcb11e905"),
("1800","1193","age_appropriate","18"),
("1801","1193","_age_appropriate","field_6a1ebcd74eee9"),
("1803","1193","_edit_last","1"),
("1804","1194","relationship","a:1:{i:0;s:3:\"922\";}"),
("1805","1194","_relationship","field_6a1eb7c7f8c75"),
("1806","1194","post_cart","hide"),
("1807","1194","_post_cart","field_6a1eb9ec09978"),
("1808","1194","excerpt",""),
("1809","1194","_excerpt","field_6a1ebcb11e905"),
("1810","1194","age_appropriate",""),
("1811","1194","_age_appropriate","field_6a1ebcd74eee9"),
("1813","1197","relationship","a:1:{i:0;s:3:\"922\";}"),
("1814","1197","_relationship","field_6a1eb7c7f8c75"),
("1815","1197","post_cart","hide"),
("1816","1197","_post_cart","field_6a1eb9ec09978"),
("1817","1197","excerpt",""),
("1818","1197","_excerpt","field_6a1ebcb11e905"),
("1819","1197","age_appropriate",""),
("1820","1197","_age_appropriate","field_6a1ebcd74eee9"),
("1821","1193","avada_post_views_count","220"),
("1822","1193","avada_today_post_views_count","15"),
("1823","1193","avada_post_views_count_today_date","02-07-2026"),
("1824","1198","relationship","a:1:{i:0;s:3:\"922\";}"),
("1825","1198","_relationship","field_6a1eb7c7f8c75"),
("1826","1198","post_cart","hide"),
("1827","1198","_post_cart","field_6a1eb9ec09978"),
("1828","1198","excerpt",""),
("1829","1198","_excerpt","field_6a1ebcb11e905"),
("1830","1198","age_appropriate",""),
("1831","1198","_age_appropriate","field_6a1ebcd74eee9"),
("1832","1199","_wp_page_template","100-width.php"),
("1833","1199","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("1834","1199","fusion_builder_status","active"),
("1835","1199","relationship","a:1:{i:0;s:3:\"922\";}"),
("1836","1199","_relationship","field_6a1eb7c7f8c75"),
("1837","1199","post_cart","show"),
("1838","1199","_post_cart","field_6a1eb9ec09978"),
("1839","1199","excerpt","Instant hydration and nutrient infusion"),
("1840","1199","_excerpt","field_6a1ebcb11e905"),
("1841","1199","age_appropriate","18"),
("1842","1199","_age_appropriate","field_6a1ebcd74eee9"),
("1844","1199","_edit_last","1"),
("1845","1200","relationship","a:1:{i:0;s:3:\"922\";}"),
("1846","1200","_relationship","field_6a1eb7c7f8c75"),
("1847","1200","post_cart","hide"),
("1848","1200","_post_cart","field_6a1eb9ec09978"),
("1849","1200","excerpt",""),
("1850","1200","_excerpt","field_6a1ebcb11e905"),
("1851","1200","age_appropriate",""),
("1852","1200","_age_appropriate","field_6a1ebcd74eee9"),
("1854","1203","_edit_last","1"),
("1856","1203","_wp_page_template","100-width.php"),
("1857","1203","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("1858","1203","fusion_builder_status","active"),
("1860","1203","avada_post_views_count","295"),
("1861","1203","avada_today_post_views_count","28"),
("1862","1203","avada_post_views_count_today_date","02-07-2026"),
("1864","1209","_wp_attached_file","2026/06/bef01.jpg"),
("1865","1209","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:17:\"2026/06/bef01.jpg\";s:8:\"filesize\";i:2307479;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"bef01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13506;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"bef01-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109499;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"bef01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"bef01-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65059;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"bef01-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220110;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:17:\"bef01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23389;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:17:\"bef01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10235;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:17:\"bef01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37788;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:15:\"bef01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2015;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"bef01-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7259;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:17:\"bef01-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21250;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:17:\"bef01-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42424;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:17:\"bef01-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69890;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"bef01-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142131;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1866","1210","_wp_attached_file","2026/06/af01.jpg"),
("1867","1210","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:16:\"2026/06/af01.jpg\";s:8:\"filesize\";i:2352588;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"af01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13090;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"af01-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"af01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4859;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"af01-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62846;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"af01-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216827;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"af01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22047;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"af01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9661;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"af01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35563;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"af01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2015;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"af01-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7106;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"af01-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20471;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"af01-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40957;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"af01-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67626;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:18:\"af01-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138067;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1868","1211","_wp_attached_file","2026/06/bef02.jpg"),
("1869","1211","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:17:\"2026/06/bef02.jpg\";s:8:\"filesize\";i:2336195;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"bef02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13469;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"bef02-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"bef02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5081;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"bef02-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62368;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"bef02-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211242;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:17:\"bef02-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21885;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:17:\"bef02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9524;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:17:\"bef02-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34212;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:15:\"bef02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2162;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"bef02-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7385;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:17:\"bef02-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20742;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:17:\"bef02-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41065;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:17:\"bef02-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66780;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"bef02-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135385;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1870","1212","_wp_attached_file","2026/06/af02.jpg"),
("1871","1212","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:16:\"2026/06/af02.jpg\";s:8:\"filesize\";i:2184396;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"af02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12806;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"af02-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"af02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4954;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"af02-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57891;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"af02-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195418;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"af02-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20136;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"af02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8990;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"af02-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31615;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"af02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2132;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"af02-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7075;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"af02-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19625;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"af02-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38278;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"af02-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62133;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:18:\"af02-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125212;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1877","1224","_wp_attached_file","2026/06/5794427_Coll_wavebreak_Hospital_1280x720.mp4"),
("1878","1224","_wp_attachment_metadata","a:11:{s:7:\"bitrate\";i:4847070;s:8:\"filesize\";i:6063134;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:10;s:16:\"length_formatted\";s:4:\"0:10\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:16:\"H.264/MPEG-4 AVC\";s:17:\"created_timestamp\";i:-2082844800;}"),
("1880","1229","_wp_attached_file","2026/06/closeup-persons-face-with-emphasis-eyes_1265500-148445.jpg"),
("1881","1229","_wp_attachment_metadata","a:6:{s:5:\"width\";i:740;s:6:\"height\";i:370;s:4:\"file\";s:66:\"2026/06/closeup-persons-face-with-emphasis-eyes_1265500-148445.jpg\";s:8:\"filesize\";i:45946;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4460;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25002;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10305;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-700x370.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38293;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:64:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1726;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4275;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12158;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:66:\"closeup-persons-face-with-emphasis-eyes_1265500-148445-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24546;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1886","1243","_wpcode_auto_insert","1"),
("1887","1243","_wpcode_auto_insert_number","1"),
("1888","1243","_wpcode_conditional_logic_enabled",""),
("1889","1243","_wpcode_priority","10"),
("1890","1243","_wpcode_note",""),
("1891","1243","_wpcode_location_extra",""),
("1892","1243","_wpcode_shortcode_attributes","a:0:{}"),
("1893","1243","_edit_lock","1781472201:1"),
("1894","1243","_wpcode_conditional_logic","a:0:{}"),
("1897","1255","_wp_attached_file","2026/06/BG04-1.jpg"),
("1898","1255","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1086;s:4:\"file\";s:18:\"2026/06/BG04-1.jpg\";s:8:\"filesize\";i:128539;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"BG04-1-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4581;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"BG04-1-1024x434.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33243;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"BG04-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"BG04-1-768x326.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20186;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"BG04-1-1536x652.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:652;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65720;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"BG04-1-2048x869.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:869;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104917;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"BG04-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15168;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"BG04-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6967;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"BG04-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24400;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"BG04-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1519;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:17:\"BG04-1-200x85.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2820;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"BG04-1-400x170.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7044;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"BG04-1-600x255.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13276;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"BG04-1-800x339.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21628;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:19:\"BG04-1-1200x509.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43092;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("1901","1263","_fusion_is_global","yes"),
("1907","1203","_fusion_google_fonts",""),
("1911","1281","_wp_attached_file","2026/06/A-Natural-Approach-to-Beauty-1.jpg"),
("1912","1281","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1029;s:6:\"height\";i:1015;s:4:\"file\";s:42:\"2026/06/A-Natural-Approach-to-Beauty-1.jpg\";s:8:\"filesize\";i:421348;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14860;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"A-Natural-Approach-to-Beauty-1-1024x1010.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1010;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5753;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-768x758.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:758;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55625;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21077;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11402;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33940;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"A-Natural-Approach-to-Beauty-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2296;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-200x197.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8529;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-400x395.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21960;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-600x592.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38987;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"A-Natural-Approach-to-Beauty-1-800x789.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:789;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58675;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1915","1299","_wp_attached_file","2026/06/BG05.jpg"),
("1916","1299","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:1086;s:4:\"file\";s:16:\"2026/06/BG05.jpg\";s:8:\"filesize\";i:226828;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG05-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6775;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG05-999x1024.jpg\";s:5:\"width\";i:999;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2741;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG05-768x787.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31842;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG05-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11310;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5488;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG05-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18475;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1325;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG05-200x205.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3935;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG05-400x410.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11081;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG05-600x615.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21471;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG05-800x820.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33982;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1917","1302","_wp_attached_file","2026/06/BG06.jpg"),
("1918","1302","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:1086;s:4:\"file\";s:16:\"2026/06/BG06.jpg\";s:8:\"filesize\";i:226260;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG06-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6764;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG06-999x1024.jpg\";s:5:\"width\";i:999;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2727;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG06-768x787.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31828;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG06-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11317;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5471;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG06-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18449;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1320;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG06-200x205.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3913;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG06-400x410.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11022;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG06-600x615.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21394;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG06-800x820.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33985;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1919","1304","_wp_attached_file","2026/06/BG07.jpg"),
("1920","1304","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:1086;s:4:\"file\";s:16:\"2026/06/BG07.jpg\";s:8:\"filesize\";i:214698;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG07-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6075;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG07-999x1024.jpg\";s:5:\"width\";i:999;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG07-768x787.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28615;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG07-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10179;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4937;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG07-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16572;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1263;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG07-200x205.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3550;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG07-400x410.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9851;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG07-600x615.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19223;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG07-800x820.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30635;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1923","1317","_wp_attached_file","2026/06/BG08.jpg"),
("1924","1317","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:1086;s:4:\"file\";s:16:\"2026/06/BG08.jpg\";s:8:\"filesize\";i:235559;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG08-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7906;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG08-999x1024.jpg\";s:5:\"width\";i:999;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44525;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2933;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG08-768x787.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:787;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30147;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG08-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12650;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG08-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7515;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG08-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21021;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG08-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1166;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG08-200x205.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4546;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG08-400x410.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12224;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG08-600x615.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21453;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG08-800x820.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32025;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1926","1186","avada_post_views_count","216"),
("1927","1186","avada_today_post_views_count","15"),
("1928","1186","avada_post_views_count_today_date","02-07-2026"),
("1929","1199","avada_post_views_count","232"),
("1930","1199","avada_today_post_views_count","22"),
("1931","1199","avada_post_views_count_today_date","02-07-2026"),
("1936","1353","_edit_last","1"),
("1938","1353","_wp_page_template","100-width.php"),
("1939","1353","_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:0:\"\";s:6:\"bottom\";s:0:\"\";}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\";}"),
("1940","1353","fusion_builder_status","active"),
("1941","1353","avada_post_views_count","243"),
("1942","1353","avada_today_post_views_count","8"),
("1943","1353","avada_post_views_count_today_date","02-07-2026"),
("1944","1356","_wpcode_auto_insert","1"),
("1945","1356","_wpcode_auto_insert_number","1"),
("1946","1356","_wpcode_conditional_logic_enabled",""),
("1947","1356","_wpcode_priority","10"),
("1948","1356","_wpcode_note",""),
("1949","1356","_wpcode_location_extra",""),
("1950","1356","_wpcode_shortcode_attributes","a:0:{}"),
("1951","1356","_edit_lock","1781015674:1"),
("1952","1356","_wpcode_conditional_logic","a:0:{}"),
("1954","1358","_wpcode_auto_insert","1"),
("1955","1358","_wpcode_auto_insert_number","1"),
("1956","1358","_wpcode_conditional_logic_enabled",""),
("1957","1358","_wpcode_priority","10"),
("1958","1358","_wpcode_note",""),
("1959","1358","_wpcode_location_extra",""),
("1960","1358","_wpcode_shortcode_attributes","a:0:{}"),
("1961","1358","_edit_lock","1781015380:1"),
("1962","1358","_wpcode_conditional_logic","a:0:{}"),
("1968","1370","_wp_attached_file","2026/06/Forehead-Crows-Feet-200x200-copy.png"),
("1969","1370","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:44:\"2026/06/Forehead-Crows-Feet-200x200-copy.png\";s:8:\"filesize\";i:5953;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Forehead-Crows-Feet-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5116;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"Forehead-Crows-Feet-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2370;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1970","1371","_wp_attached_file","2026/06/Nefertiti-Neck-Lift-Lower-Face-200x200-copy.png"),
("1971","1371","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:55:\"2026/06/Nefertiti-Neck-Lift-Lower-Face-200x200-copy.png\";s:8:\"filesize\";i:22897;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Nefertiti-Neck-Lift-Lower-Face-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18912;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:53:\"Nefertiti-Neck-Lift-Lower-Face-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6457;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1972","1372","_wp_attached_file","2026/06/Lip-Flip-200x200-copy.png"),
("1973","1372","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2026/06/Lip-Flip-200x200-copy.png\";s:8:\"filesize\";i:19499;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Lip-Flip-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14828;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Flip-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5204;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1974","1373","_wp_attached_file","2026/06/Hands-Feet-Hyperhidrosis-200x200-copy.png"),
("1975","1373","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:49:\"2026/06/Hands-Feet-Hyperhidrosis-200x200-copy.png\";s:8:\"filesize\";i:21150;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Hands-Feet-Hyperhidrosis-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11795;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"Hands-Feet-Hyperhidrosis-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4136;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1976","1374","_wp_attached_file","2026/06/Underarm-Hyperhidrosis-200x200-copy.png"),
("1977","1374","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:47:\"2026/06/Underarm-Hyperhidrosis-200x200-copy.png\";s:8:\"filesize\";i:19865;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Underarm-Hyperhidrosis-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9772;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:45:\"Underarm-Hyperhidrosis-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3495;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1978","1375","_wp_attached_file","2026/06/Botox-for-Muscle-Spasm-200x200-copy.png"),
("1979","1375","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:47:\"2026/06/Botox-for-Muscle-Spasm-200x200-copy.png\";s:8:\"filesize\";i:24768;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Botox-for-Muscle-Spasm-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19235;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:45:\"Botox-for-Muscle-Spasm-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6574;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1980","1376","_wp_attached_file","2026/06/Trap-Barbie-Botox-200x200-copy.png"),
("1981","1376","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:42:\"2026/06/Trap-Barbie-Botox-200x200-copy.png\";s:8:\"filesize\";i:17421;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Trap-Barbie-Botox-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17103;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Trap-Barbie-Botox-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5997;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1982","1377","_wp_attached_file","2026/06/Smile-Lines-Nasolabial-200x200-copy.png"),
("1983","1377","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:47:\"2026/06/Smile-Lines-Nasolabial-200x200-copy.png\";s:8:\"filesize\";i:21079;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Smile-Lines-Nasolabial-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14895;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:45:\"Smile-Lines-Nasolabial-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5212;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1984","1378","_wp_attached_file","2026/06/Lip-Filler-Natural-Russian-200x200-copy.png"),
("1985","1378","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:51:\"2026/06/Lip-Filler-Natural-Russian-200x200-copy.png\";s:8:\"filesize\";i:19002;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Lip-Filler-Natural-Russian-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16068;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Lip-Filler-Natural-Russian-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5643;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1986","1379","_wp_attached_file","2026/06/Face-Lift-with-Filler-200x200-copy.png"),
("1987","1379","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:46:\"2026/06/Face-Lift-with-Filler-200x200-copy.png\";s:8:\"filesize\";i:22185;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Face-Lift-with-Filler-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17677;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6120;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1988","1380","_wp_attached_file","2026/06/Cheek-Filler-200x200-copy.png"),
("1989","1380","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:37:\"2026/06/Cheek-Filler-200x200-copy.png\";s:8:\"filesize\";i:21248;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Cheek-Filler-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16183;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Cheek-Filler-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5648;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1990","1381","_wp_attached_file","2026/06/Temple-Filler-200x200-copy.png"),
("1991","1381","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:38:\"2026/06/Temple-Filler-200x200-copy.png\";s:8:\"filesize\";i:30529;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Temple-Filler-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19008;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Temple-Filler-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5715;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1992","1382","_wp_attached_file","2026/06/Jawline-Filler-200x200-copy.png"),
("1993","1382","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:39:\"2026/06/Jawline-Filler-200x200-copy.png\";s:8:\"filesize\";i:22394;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Jawline-Filler-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16108;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Jawline-Filler-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5575;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1994","1383","_wp_attached_file","2026/06/Face-Contouring-200x200-copy.png"),
("1995","1383","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:40:\"2026/06/Face-Contouring-200x200-copy.png\";s:8:\"filesize\";i:21633;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Contouring-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15523;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"Face-Contouring-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5423;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1996","1384","_wp_attached_file","2026/06/Chin-Filler-200x200-copy.png"),
("1997","1384","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:36:\"2026/06/Chin-Filler-200x200-copy.png\";s:8:\"filesize\";i:20838;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Chin-Filler-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14916;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Chin-Filler-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5259;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("1998","1385","_wp_attached_file","2026/06/Under-Eye-Filler-200x200-copy.png"),
("1999","1385","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:41:\"2026/06/Under-Eye-Filler-200x200-copy.png\";s:8:\"filesize\";i:20662;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Under-Eye-Filler-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15068;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5263;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2000","1386","_wp_attached_file","2026/06/Tear-Trough-200x200-copy.png"),
("2001","1386","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:36:\"2026/06/Tear-Trough-200x200-copy.png\";s:8:\"filesize\";i:20727;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Tear-Trough-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14991;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Tear-Trough-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5315;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2002","1387","_wp_attached_file","2026/06/Profhilo-200x200-copy.png"),
("2003","1387","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2026/06/Profhilo-200x200-copy.png\";s:8:\"filesize\";i:19083;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Profhilo-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9502;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Profhilo-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3334;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2004","1388","_wp_attached_file","2026/06/Jalupro-200x200-copy.png"),
("2005","1388","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2026/06/Jalupro-200x200-copy.png\";s:8:\"filesize\";i:18303;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Jalupro-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10287;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Jalupro-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3282;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2006","1389","_wp_attached_file","2026/06/Sunekos-200x200-copy.png"),
("2007","1389","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2026/06/Sunekos-200x200-copy.png\";s:8:\"filesize\";i:16097;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Sunekos-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11964;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Sunekos-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4011;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2008","1390","_wp_attached_file","2026/06/NCTF-200x200-copy.png"),
("2009","1390","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2026/06/NCTF-200x200-copy.png\";s:8:\"filesize\";i:17185;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"NCTF-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10075;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"NCTF-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3427;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2010","1391","_wp_attached_file","2026/06/Plinest-200x200-copy.png"),
("2011","1391","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2026/06/Plinest-200x200-copy.png\";s:8:\"filesize\";i:15094;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Plinest-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11651;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Plinest-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4118;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2012","1392","_wp_attached_file","2026/06/Rejuran-200x200-copy.png"),
("2013","1392","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2026/06/Rejuran-200x200-copy.png\";s:8:\"filesize\";i:16087;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Rejuran-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9251;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Rejuran-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3474;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2014","1393","_wp_attached_file","2026/06/TWAC-200x200-copy.png"),
("2015","1393","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2026/06/TWAC-200x200-copy.png\";s:8:\"filesize\";i:17241;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"TWAC-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8258;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"TWAC-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2808;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2016","1394","_wp_attached_file","2026/06/Sculptra-200x200-copy.png"),
("2017","1394","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2026/06/Sculptra-200x200-copy.png\";s:8:\"filesize\";i:17987;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Sculptra-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13621;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Sculptra-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3843;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2018","1395","_wp_attached_file","2026/06/Radiesse-200x200-copy.png"),
("2019","1395","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2026/06/Radiesse-200x200-copy.png\";s:8:\"filesize\";i:17272;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Radiesse-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8580;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Radiesse-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2849;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2020","1396","_wp_attached_file","2026/06/Exosome-Microneedling-Face-·-Hair-Loss-200x200-copy.png"),
("2021","1396","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:64:\"2026/06/Exosome-Microneedling-Face-·-Hair-Loss-200x200-copy.png\";s:8:\"filesize\";i:19384;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Exosome-Microneedling-Face-·-Hair-Loss-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18101;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:62:\"Exosome-Microneedling-Face-·-Hair-Loss-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6254;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2022","1397","_wp_attached_file","2026/06/Derma_Pen_Skin_Rejuvenation_·_Scars_·_Acne_Scars_200x200_copy.png"),
("2023","1397","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:75:\"2026/06/Derma_Pen_Skin_Rejuvenation_·_Scars_·_Acne_Scars_200x200_copy.png\";s:8:\"filesize\";i:22274;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"Derma_Pen_Skin_Rejuvenation_·_Scars_·_Acne_Scars_200x200_copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18301;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:73:\"Derma_Pen_Skin_Rejuvenation_·_Scars_·_Acne_Scars_200x200_copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6368;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2024","1398","_wp_attached_file","2026/06/Growth-Factor-Microneedling-200x200-copy.png"),
("2025","1398","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:52:\"2026/06/Growth-Factor-Microneedling-200x200-copy.png\";s:8:\"filesize\";i:22560;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Growth-Factor-Microneedling-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16832;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Growth-Factor-Microneedling-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5843;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2026","1399","_wp_attached_file","2026/06/Face-Rejuvenation-200x200-copy.png"),
("2027","1399","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:42:\"2026/06/Face-Rejuvenation-200x200-copy.png\";s:8:\"filesize\";i:17498;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Rejuvenation-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15349;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Rejuvenation-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5562;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2028","1400","_wp_attached_file","2026/06/Hair-Loss-200x200-copy.png"),
("2029","1400","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:34:\"2026/06/Hair-Loss-200x200-copy.png\";s:8:\"filesize\";i:22390;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Hair-Loss-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16863;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Hair-Loss-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5854;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2030","1401","_wp_attached_file","2026/06/High-Dose-Vitamin-C-200x200-copy.png"),
("2031","1401","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:44:\"2026/06/High-Dose-Vitamin-C-200x200-copy.png\";s:8:\"filesize\";i:22443;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"High-Dose-Vitamin-C-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12404;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"High-Dose-Vitamin-C-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4008;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2032","1402","_wp_attached_file","2026/06/Glutathione-IV-200x200-copy.png"),
("2033","1402","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:39:\"2026/06/Glutathione-IV-200x200-copy.png\";s:8:\"filesize\";i:17818;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Glutathione-IV-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10260;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Glutathione-IV-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3432;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2034","1403","_wp_attached_file","2026/06/NAD-IV-200x200-copy.png"),
("2035","1403","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2026/06/NAD-IV-200x200-copy.png\";s:8:\"filesize\";i:18991;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"NAD-IV-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11074;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"NAD-IV-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3960;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2036","1404","_wp_attached_file","2026/06/Vitamin-Injections-200x200-copy.png"),
("2037","1404","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:43:\"2026/06/Vitamin-Injections-200x200-copy.png\";s:8:\"filesize\";i:16356;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Vitamin-Injections-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11384;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Vitamin-Injections-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3919;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2038","1405","_wp_attached_file","2026/06/Brightening-IV-200x200-copy.png"),
("2039","1405","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:39:\"2026/06/Brightening-IV-200x200-copy.png\";s:8:\"filesize\";i:22681;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Brightening-IV-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14865;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Brightening-IV-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4583;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2040","920","_edit_lock","1782994334:1"),
("2049","1428","_wp_attached_file","2026/06/Hero-About-us-copy.jpg"),
("2050","1428","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1086;s:4:\"file\";s:30:\"2026/06/Hero-About-us-copy.jpg\";s:8:\"filesize\";i:1773586;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4668;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Hero-About-us-copy-1024x434.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34881;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3376;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-768x326.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21062;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"Hero-About-us-copy-1536x652.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:652;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70560;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"Hero-About-us-copy-2048x869.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:869;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117302;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16092;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7313;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27263;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Hero-About-us-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1419;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Hero-About-us-copy-200x85.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2688;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-400x170.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7314;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-600x255.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13854;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"Hero-About-us-copy-800x339.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22590;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:31:\"Hero-About-us-copy-1200x509.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45517;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2051","1430","_wp_attached_file","2026/06/Clinic-door-About-us-copy.jpg"),
("2052","1430","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:37:\"2026/06/Clinic-door-About-us-copy.jpg\";s:8:\"filesize\";i:763937;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6931;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Clinic-door-About-us-copy-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3741;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Clinic-door-About-us-copy-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70405;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15210;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7213;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26744;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Clinic-door-About-us-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1607;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6931;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19868;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Clinic-door-About-us-copy-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42210;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Clinic-door-About-us-copy-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78677;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2054","644","_edit_lock","1781259406:1"),
("2059","1436","_fusion_is_global","yes"),
("2060","772","_edit_lock","1781260774:1"),
("2063","782","_edit_lock","1781259909:1"),
("2065","1443","_thumbnail_id","1000"),
("2066","1443","_fusion","a:6:{s:17:\"post_links_target\";s:2:\"no\";s:17:\"slider_visibility\";s:51:\"small-visibility,medium-visibility,large-visibility\";s:20:\"image_rollover_icons\";s:7:\"default\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";s:19:\"blog_page_title_bar\";s:7:\"default\";}"),
("2067","1443","fusion_builder_status","off"),
("2068","1443","_wp_old_slug","meet-our-new-dance-instructor-maria-gonzalez"),
("2069","1443","_edit_lock","1781260491:1"),
("2070","1443","_edit_last","1"),
("2071","1443","_wp_trash_meta_status","draft"),
("2072","1443","_wp_trash_meta_time","1781260531"),
("2073","1443","_wp_desired_post_slug",""),
("2078","194","_edit_lock","1781261777:1"),
("2081","729","_edit_lock","1781260776:1"),
("2083","1452","_wpcode_auto_insert","1"),
("2084","1452","_wpcode_auto_insert_number","1"),
("2085","1452","_wpcode_conditional_logic_enabled",""),
("2086","1452","_wpcode_priority","10"),
("2087","1452","_wpcode_note",""),
("2088","1452","_wpcode_location_extra",""),
("2089","1452","_wpcode_shortcode_attributes","a:0:{}"),
("2090","1452","_edit_lock","1781884533:1"),
("2093","1452","_wpcode_conditional_logic","a:0:{}"),
("2109","948","avada_post_views_count","314"),
("2110","948","avada_today_post_views_count","30"),
("2111","948","avada_post_views_count_today_date","02-07-2026"),
("2115","1468","_wp_attached_file","2026/06/Main-BG.png"),
("2116","1468","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1572;s:4:\"file\";s:19:\"2026/06/Main-BG.png\";s:8:\"filesize\";i:1847582;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Main-BG-300x184.png\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62415;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"Main-BG-1024x629.png\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:748977;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Main-BG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Main-BG-768x472.png\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415160;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"Main-BG-1536x943.png\";s:5:\"width\";i:1536;s:6:\"height\";i:943;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1664281;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"Main-BG-2048x1258.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1258;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2849887;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"Main-BG-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:218873;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"Main-BG-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73221;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:19:\"Main-BG-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:353163;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"Main-BG-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6056;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"Main-BG-200x123.png\";s:5:\"width\";i:200;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29223;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"Main-BG-400x246.png\";s:5:\"width\";i:400;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109614;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:19:\"Main-BG-600x368.png\";s:5:\"width\";i:600;s:6:\"height\";i:368;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:247428;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:19:\"Main-BG-800x491.png\";s:5:\"width\";i:800;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:450607;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:20:\"Main-BG-1200x737.png\";s:5:\"width\";i:1200;s:6:\"height\";i:737;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1023529;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2123","1480","_wp_attached_file","2026/06/BG09-scaled.jpg"),
("2124","1480","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:773;s:4:\"file\";s:23:\"2026/06/BG09-scaled.jpg\";s:8:\"filesize\";i:76875;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"BG09-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2925;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG09-1024x309.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG09-768x232.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11618;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG09-1536x464.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33490;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"BG09-2048x618.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53118;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG09-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12007;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG09-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4103;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG09-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13066;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG09-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:978;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"BG09-200x60.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1782;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG09-400x121.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4324;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG09-600x181.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8045;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG09-800x242.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12563;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG09-1200x362.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23083;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}s:14:\"original_image\";s:8:\"BG09.jpg\";}"),
("2125","1481","_wp_attached_file","2026/06/BG10.jpg"),
("2126","1481","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:766;s:4:\"file\";s:16:\"2026/06/BG10.jpg\";s:8:\"filesize\";i:389614;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"BG10-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2987;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG10-1024x306.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1731;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG10-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12692;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG10-1536x460.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35612;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"BG10-2048x613.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54468;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG10-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13075;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4251;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG10-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13479;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:970;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"BG10-200x60.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1752;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG10-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4490;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG10-600x180.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8606;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG10-800x239.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13393;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG10-1200x359.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24792;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2130","1505","_wp_attached_file","2026/06/BG11.jpg"),
("2131","1505","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1085;s:4:\"file\";s:16:\"2026/06/BG11.jpg\";s:8:\"filesize\";i:1244846;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG11-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5472;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG11-1024x434.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4315;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG11-768x326.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26194;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG11-1536x651.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91156;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"BG11-2048x868.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:868;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151008;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG11-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19880;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9162;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG11-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35277;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1654;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"BG11-200x85.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3062;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG11-400x170.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8684;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG11-600x254.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16872;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG11-800x339.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28220;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG11-1200x509.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58186;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2135","1186","_edit_lock","1781779799:1"),
("2136","1189","_edit_lock","1782227344:1"),
("2137","1193","_edit_lock","1782227344:1"),
("2139","1536","_wp_attached_file","2026/06/face_image.jpg"),
("2140","1536","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:22:\"2026/06/face_image.jpg\";s:8:\"filesize\";i:118529;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"face_image-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5293;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"face_image-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31551;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"face_image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2719;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"face_image-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19906;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:22:\"face_image-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11127;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:22:\"face_image-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5805;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:22:\"face_image-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17678;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:20:\"face_image-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1366;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:22:\"face_image-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3276;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:22:\"face_image-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7735;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:22:\"face_image-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13595;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:22:\"face_image-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21268;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:23:\"face_image-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41315;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2143","1538","_wp_attached_file","2026/06/body_image.jpg"),
("2144","1538","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:22:\"2026/06/body_image.jpg\";s:8:\"filesize\";i:179148;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"body_image-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4910;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"body_image-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"body_image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2682;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"body_image-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21193;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:22:\"body_image-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12217;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:22:\"body_image-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5521;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:22:\"body_image-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18703;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:20:\"body_image-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1368;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:22:\"body_image-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3021;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:22:\"body_image-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7346;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:22:\"body_image-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13686;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:22:\"body_image-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22776;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:23:\"body_image-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50097;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2145","1539","_wp_attached_file","2026/06/for_man_image.jpg"),
("2146","1539","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:25:\"2026/06/for_man_image.jpg\";s:8:\"filesize\";i:191974;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"for_man_image-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6407;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"for_man_image-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"for_man_image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3552;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"for_man_image-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27137;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:25:\"for_man_image-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15674;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:25:\"for_man_image-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7310;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:25:\"for_man_image-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24379;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:23:\"for_man_image-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1568;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:25:\"for_man_image-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3804;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:25:\"for_man_image-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9721;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:25:\"for_man_image-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18139;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:25:\"for_man_image-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28987;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:26:\"for_man_image-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58006;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2147","1540","_wp_attached_file","2026/06/920.jpg"),
("2148","1540","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:15:\"2026/06/920.jpg\";s:8:\"filesize\";i:399369;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7454;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4420;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32073;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:15:\"920-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17329;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:15:\"920-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7993;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:15:\"920-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26915;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:13:\"920-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1780;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"920-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4330;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:15:\"920-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11536;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:15:\"920-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21512;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:15:\"920-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34501;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2149","1541","_wp_attached_file","2026/06/woman-with-hand-her-neck_62294-4786.jpg"),
("2150","1541","_wp_attachment_metadata","a:6:{s:5:\"width\";i:740;s:6:\"height\";i:415;s:4:\"file\";s:47:\"2026/06/woman-with-hand-her-neck_62294-4786.jpg\";s:8:\"filesize\";i:30306;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3509;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14959;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7186;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-700x415.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24779;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:45:\"woman-with-hand-her-neck_62294-4786-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1630;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-200x112.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3704;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9063;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:47:\"woman-with-hand-her-neck_62294-4786-600x336.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17039;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2221","47","_wp_old_date","2026-06-06"),
("2222","1149","_wp_old_date","2026-06-06"),
("2227","59","_wp_old_date","2026-06-06"),
("2228","61","_wp_old_date","2026-06-06"),
("2292","1353","_edit_lock","1782056276:1"),
("2294","1579","_wp_page_template","100-width.php"),
("2295","1579","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2296","1579","fusion_builder_status","active"),
("2297","1579","relationship","a:1:{i:0;s:3:\"922\";}"),
("2298","1579","_relationship","field_6a1eb7c7f8c75"),
("2299","1579","post_cart","show"),
("2300","1579","_post_cart","field_6a1eb9ec09978"),
("2301","1579","excerpt","Direct cellular nourishment, from within"),
("2302","1579","_excerpt","field_6a1ebcb11e905"),
("2303","1579","age_appropriate","18"),
("2304","1579","_age_appropriate","field_6a1ebcd74eee9"),
("2306","1579","_edit_last","1"),
("2307","1580","relationship","a:1:{i:0;s:3:\"922\";}"),
("2308","1580","_relationship","field_6a1eb7c7f8c75"),
("2309","1580","post_cart","hide"),
("2310","1580","_post_cart","field_6a1eb9ec09978"),
("2311","1580","excerpt",""),
("2312","1580","_excerpt","field_6a1ebcb11e905"),
("2313","1580","age_appropriate",""),
("2314","1580","_age_appropriate","field_6a1ebcd74eee9"),
("2315","1579","avada_post_views_count","153"),
("2316","1579","avada_today_post_views_count","23"),
("2317","1579","avada_post_views_count_today_date","02-07-2026"),
("2318","1579","_edit_lock","1782227343:1"),
("2319","1585","relationship","a:1:{i:0;s:3:\"922\";}"),
("2320","1585","_relationship","field_6a1eb7c7f8c75"),
("2321","1585","post_cart","hide"),
("2322","1585","_post_cart","field_6a1eb9ec09978"),
("2323","1585","excerpt","Direct cellular nourishment, from within"),
("2324","1585","_excerpt","field_6a1ebcb11e905"),
("2325","1585","age_appropriate","18"),
("2326","1585","_age_appropriate","field_6a1ebcd74eee9"),
("2327","1579","_thumbnail_id","2032"),
("2328","1586","relationship","a:1:{i:0;s:3:\"922\";}"),
("2329","1586","_relationship","field_6a1eb7c7f8c75"),
("2330","1586","post_cart","show"),
("2331","1586","_post_cart","field_6a1eb9ec09978"),
("2332","1586","excerpt","Direct cellular nourishment, from within"),
("2333","1586","_excerpt","field_6a1ebcb11e905"),
("2334","1586","age_appropriate","18"),
("2335","1586","_age_appropriate","field_6a1ebcd74eee9"),
("2336","1587","_wp_page_template","100-width.php"),
("2337","1587","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2338","1587","fusion_builder_status","active"),
("2339","1587","relationship","a:1:{i:0;s:3:\"922\";}"),
("2340","1587","_relationship","field_6a1eb7c7f8c75"),
("2341","1587","post_cart","show"),
("2342","1587","_post_cart","field_6a1eb9ec09978"),
("2343","1587","excerpt","Precision sculpting for stubborn fat"),
("2344","1587","_excerpt","field_6a1ebcb11e905"),
("2345","1587","age_appropriate","18"),
("2346","1587","_age_appropriate","field_6a1ebcd74eee9"),
("2347","1587","_thumbnail_id","2038"),
("2349","1587","_edit_last","1"),
("2350","1588","relationship","a:1:{i:0;s:3:\"922\";}"),
("2351","1588","_relationship","field_6a1eb7c7f8c75"),
("2352","1588","post_cart","show"),
("2353","1588","_post_cart","field_6a1eb9ec09978"),
("2354","1588","excerpt","Precision sculpting for stubborn fat"),
("2355","1588","_excerpt","field_6a1ebcb11e905"),
("2356","1588","age_appropriate","18"),
("2357","1588","_age_appropriate","field_6a1ebcd74eee9"),
("2358","1587","avada_post_views_count","136"),
("2359","1587","avada_today_post_views_count","16"),
("2360","1587","avada_post_views_count_today_date","02-07-2026"),
("2361","1594","_wp_page_template","100-width.php"),
("2362","1594","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2363","1594","fusion_builder_status","active"),
("2364","1594","relationship","a:1:{i:0;s:3:\"922\";}"),
("2365","1594","_relationship","field_6a1eb7c7f8c75"),
("2366","1594","post_cart","show"),
("2367","1594","_post_cart","field_6a1eb9ec09978"),
("2368","1594","excerpt","Effective deep scar release"),
("2369","1594","_excerpt","field_6a1ebcb11e905"),
("2370","1594","age_appropriate","18"),
("2371","1594","_age_appropriate","field_6a1ebcd74eee9"),
("2373","1594","_edit_last","1"),
("2374","1594","_thumbnail_id","2036"),
("2375","1595","relationship","a:1:{i:0;s:3:\"922\";}"),
("2376","1595","_relationship","field_6a1eb7c7f8c75"),
("2377","1595","post_cart","show"),
("2378","1595","_post_cart","field_6a1eb9ec09978"),
("2379","1595","excerpt","Effective deep scar release"),
("2380","1595","_excerpt","field_6a1ebcb11e905"),
("2381","1595","age_appropriate","18"),
("2382","1595","_age_appropriate","field_6a1ebcd74eee9"),
("2383","1594","avada_post_views_count","127"),
("2384","1594","avada_today_post_views_count","13"),
("2385","1594","avada_post_views_count_today_date","02-07-2026"),
("2387","1594","_edit_lock","1782227351:1"),
("2389","1618","_wp_page_template","100-width.php"),
("2390","1618","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2391","1618","fusion_builder_status","active"),
("2392","1618","relationship","a:1:{i:0;s:3:\"922\";}"),
("2393","1618","_relationship","field_6a1eb7c7f8c75"),
("2394","1618","post_cart","show"),
("2395","1618","_post_cart","field_6a1eb9ec09978"),
("2396","1618","excerpt","Quick clearance for smooth skin"),
("2397","1618","_excerpt","field_6a1ebcb11e905"),
("2398","1618","age_appropriate","18"),
("2399","1618","_age_appropriate","field_6a1ebcd74eee9"),
("2400","1618","_thumbnail_id","1881"),
("2401","1618","_edit_lock","1781779844:1"),
("2402","1618","_edit_last","1"),
("2403","1619","relationship","a:1:{i:0;s:3:\"922\";}"),
("2404","1619","_relationship","field_6a1eb7c7f8c75"),
("2405","1619","post_cart","show"),
("2406","1619","_post_cart","field_6a1eb9ec09978"),
("2407","1619","excerpt","Quick clearance for smooth skin"),
("2408","1619","_excerpt","field_6a1ebcb11e905"),
("2409","1619","age_appropriate","18"),
("2410","1619","_age_appropriate","field_6a1ebcd74eee9"),
("2412","1180","_edit_lock","1782227344:1"),
("2413","1618","avada_post_views_count","130"),
("2414","1618","avada_today_post_views_count","15"),
("2415","1618","avada_post_views_count_today_date","02-07-2026"),
("2416","1199","_thumbnail_id","1880"),
("2417","1620","relationship","a:1:{i:0;s:3:\"922\";}"),
("2418","1620","_relationship","field_6a1eb7c7f8c75"),
("2419","1620","post_cart","show"),
("2420","1620","_post_cart","field_6a1eb9ec09978"),
("2421","1620","excerpt","Instant hydration and nutrient infusion"),
("2422","1620","_excerpt","field_6a1ebcb11e905"),
("2423","1620","age_appropriate","18"),
("2424","1620","_age_appropriate","field_6a1ebcd74eee9"),
("2425","1189","_thumbnail_id","2033"),
("2426","1621","relationship","a:1:{i:0;s:3:\"922\";}"),
("2427","1621","_relationship","field_6a1eb7c7f8c75"),
("2428","1621","post_cart","show"),
("2429","1621","_post_cart","field_6a1eb9ec09978"),
("2430","1621","excerpt","Advanced texture and collagen boost"),
("2431","1621","_excerpt","field_6a1ebcb11e905"),
("2432","1621","age_appropriate","18"),
("2433","1621","_age_appropriate","field_6a1ebcd74eee9"),
("2434","1186","_thumbnail_id","1877"),
("2435","1622","relationship","a:1:{i:0;s:3:\"922\";}"),
("2436","1622","_relationship","field_6a1eb7c7f8c75"),
("2437","1622","post_cart","show"),
("2438","1622","_post_cart","field_6a1eb9ec09978"),
("2439","1622","excerpt","Advanced cellular repair and hydration"),
("2440","1622","_excerpt","field_6a1ebcb11e905"),
("2441","1622","age_appropriate","18"),
("2442","1622","_age_appropriate","field_6a1ebcd74eee9"),
("2443","1193","_thumbnail_id","2034"),
("2444","1623","relationship","a:1:{i:0;s:3:\"922\";}"),
("2445","1623","_relationship","field_6a1eb7c7f8c75"),
("2446","1623","post_cart","show"),
("2447","1623","_post_cart","field_6a1eb9ec09978"),
("2448","1623","excerpt","Natural tissue regeneration and renewal"),
("2449","1623","_excerpt","field_6a1ebcb11e905"),
("2450","1623","age_appropriate","18"),
("2451","1623","_age_appropriate","field_6a1ebcd74eee9"),
("2452","1180","_thumbnail_id","2035"),
("2453","1624","relationship","a:1:{i:0;s:3:\"922\";}"),
("2454","1624","_relationship","field_6a1eb7c7f8c75"),
("2455","1624","post_cart","show"),
("2456","1624","_post_cart","field_6a1eb9ec09978"),
("2457","1624","excerpt","Deep hydration for radiant skin"),
("2458","1624","_excerpt","field_6a1ebcb11e905"),
("2459","1624","age_appropriate","18"),
("2460","1624","_age_appropriate","field_6a1ebcd74eee9"),
("2461","1630","relationship","a:1:{i:0;s:3:\"922\";}"),
("2462","1630","_relationship","field_6a1eb7c7f8c75"),
("2463","1630","post_cart","show"),
("2464","1630","_post_cart","field_6a1eb9ec09978"),
("2465","1630","excerpt","Effective deep scar release"),
("2466","1630","_excerpt","field_6a1ebcb11e905"),
("2467","1630","age_appropriate","18"),
("2468","1630","_age_appropriate","field_6a1ebcd74eee9"),
("2469","1639","postcart","show"),
("2470","1639","_postcart","field_6a1ecc5c3bda3"),
("2471","1639","treatment","PRP, Mesotherapy"),
("2472","1639","_treatment","field_6a1ecc5c3bddb"),
("2473","1640","postcart","show"),
("2474","1640","_postcart","field_6a1ecc5c3bda3"),
("2475","1640","treatment","PRP, Mesotherapy"),
("2476","1640","_treatment","field_6a1ecc5c3bddb"),
("2477","1641","postcart","show"),
("2478","1641","_postcart","field_6a1ecc5c3bda3"),
("2479","1641","treatment","Botox"),
("2480","1641","_treatment","field_6a1ecc5c3bddb"),
("2481","1643","postcart","show"),
("2482","1643","_postcart","field_6a1ecc5c3bda3"),
("2483","1643","treatment","Botox"),
("2484","1643","_treatment","field_6a1ecc5c3bddb"),
("2485","1644","_wp_page_template","100-width.php"),
("2486","1644","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2487","1644","fusion_builder_status","active"),
("2488","1644","postcart","show"),
("2489","1644","_postcart","field_6a1ecc5c3bda3"),
("2490","1644","treatment","Mesotherapy"),
("2491","1644","_treatment","field_6a1ecc5c3bddb"),
("2492","1644","_thumbnail_id","1846"),
("2494","1644","_edit_last","1"),
("2495","1645","postcart","show"),
("2496","1645","_postcart","field_6a1ecc5c3bda3"),
("2497","1645","treatment","Mesotherapy"),
("2498","1645","_treatment","field_6a1ecc5c3bddb"),
("2499","1646","_wp_page_template","100-width.php"),
("2500","1646","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2501","1646","fusion_builder_status","active"),
("2502","1646","postcart","show"),
("2503","1646","_postcart","field_6a1ecc5c3bda3"),
("2504","1646","treatment","Skin Lesion Removal"),
("2505","1646","_treatment","field_6a1ecc5c3bddb"),
("2506","1646","_thumbnail_id","1850"),
("2507","1646","_edit_lock","1782999962:1"),
("2508","1644","avada_post_views_count","131"),
("2509","1644","avada_today_post_views_count","21"),
("2510","1644","avada_post_views_count_today_date","02-07-2026"),
("2511","1646","_edit_last","1"),
("2512","1648","postcart","show"),
("2513","1648","_postcart","field_6a1ecc5c3bda3"),
("2514","1648","treatment","Skin Lesion Removal"),
("2515","1648","_treatment","field_6a1ecc5c3bddb"),
("2516","1649","_wp_page_template","100-width.php"),
("2517","1649","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2518","1649","fusion_builder_status","active"),
("2519","1649","postcart","show"),
("2520","1649","_postcart","field_6a1ecc5c3bda3"),
("2521","1649","treatment","Fat Dissolving"),
("2522","1649","_treatment","field_6a1ecc5c3bddb"),
("2523","1649","_thumbnail_id","1847"),
("2525","1649","_edit_last","1"),
("2526","1650","postcart","show"),
("2527","1650","_postcart","field_6a1ecc5c3bda3"),
("2528","1650","treatment","Fat Dissolving"),
("2529","1650","_treatment","field_6a1ecc5c3bddb"),
("2530","1646","avada_post_views_count","133"),
("2531","1646","avada_today_post_views_count","24"),
("2532","1646","avada_post_views_count_today_date","02-07-2026"),
("2533","1651","_wp_page_template","100-width.php"),
("2534","1651","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2535","1651","fusion_builder_status","active"),
("2536","1651","postcart","show"),
("2537","1651","_postcart","field_6a1ecc5c3bda3"),
("2538","1651","treatment","Botox"),
("2539","1651","_treatment","field_6a1ecc5c3bddb"),
("2540","1651","_thumbnail_id","1849"),
("2541","1649","avada_post_views_count","130"),
("2542","1649","avada_today_post_views_count","17"),
("2543","1649","avada_post_views_count_today_date","02-07-2026"),
("2545","1651","_edit_last","1"),
("2546","1652","postcart","show"),
("2547","1652","_postcart","field_6a1ecc5c3bda3"),
("2548","1652","treatment","Botox"),
("2549","1652","_treatment","field_6a1ecc5c3bddb"),
("2550","1651","avada_post_views_count","140"),
("2551","1651","avada_today_post_views_count","25"),
("2552","1651","avada_post_views_count_today_date","02-07-2026"),
("2553","1653","_wp_page_template","100-width.php"),
("2554","1653","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2555","1653","fusion_builder_status","active"),
("2556","1653","postcart","show"),
("2557","1653","_postcart","field_6a1ecc5c3bda3"),
("2558","1653","treatment","Botox, Skin Boosters"),
("2559","1653","_treatment","field_6a1ecc5c3bddb"),
("2560","1653","_thumbnail_id","1861"),
("2561","1653","_edit_lock","1783015875:1"),
("2562","1654","_wp_page_template","100-width.php"),
("2563","1654","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2564","1654","fusion_builder_status","active"),
("2565","1654","postcart","show"),
("2566","1654","_postcart","field_6a1ecc5c3bda3"),
("2567","1654","treatment","Botox"),
("2568","1654","_treatment","field_6a1ecc5c3bddb"),
("2569","1654","_thumbnail_id","1851"),
("2570","1653","_edit_last","1"),
("2571","1655","postcart","show"),
("2572","1655","_postcart","field_6a1ecc5c3bda3"),
("2573","1655","treatment","Botox, Skin Boosters"),
("2574","1655","_treatment","field_6a1ecc5c3bddb"),
("2576","1653","avada_post_views_count","124"),
("2577","1653","avada_today_post_views_count","18"),
("2578","1653","avada_post_views_count_today_date","02-07-2026"),
("2579","1654","_edit_last","1"),
("2580","1656","postcart","show"),
("2581","1656","_postcart","field_6a1ecc5c3bda3"),
("2582","1656","treatment","Botox"),
("2583","1656","_treatment","field_6a1ecc5c3bddb"),
("2585","1654","avada_post_views_count","126"),
("2586","1654","avada_today_post_views_count","20"),
("2587","1654","avada_post_views_count_today_date","02-07-2026"),
("2588","1664","_wp_attached_file","2026/06/hero-hosting-image-4.png"),
("2589","1664","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1372;s:6:\"height\";i:1308;s:4:\"file\";s:32:\"2026/06/hero-hosting-image-4.png\";s:8:\"filesize\";i:1125131;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-300x286.png\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83779;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"hero-hosting-image-4-1024x976.png\";s:5:\"width\";i:1024;s:6:\"height\";i:976;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:789250;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27962;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-768x732.png\";s:5:\"width\";i:768;s:6:\"height\";i:732;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:461040;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204455;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78822;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:321458;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"hero-hosting-image-4-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7181;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-200x191.png\";s:5:\"width\";i:200;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42588;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-400x381.png\";s:5:\"width\";i:400;s:6:\"height\";i:381;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140312;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-600x572.png\";s:5:\"width\";i:600;s:6:\"height\";i:572;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:290811;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"hero-hosting-image-4-800x763.png\";s:5:\"width\";i:800;s:6:\"height\";i:763;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:497378;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:34:\"hero-hosting-image-4-1200x1144.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1144;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1049569;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2590","1664","_source_url","https://avada.studio/wp-content/uploads/2023/03/hero-hosting-image-4.png"),
("2591","1664","_avada_studio_media","d0639ec675f4bc0d1f3d5b03743a0df6"),
("2592","1665","_wp_attached_file","2026/06/shared-hosting.png"),
("2593","1665","_wp_attachment_metadata","a:6:{s:5:\"width\";i:249;s:6:\"height\";i:216;s:4:\"file\";s:26:\"2026/06/shared-hosting.png\";s:8:\"filesize\";i:7625;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"shared-hosting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6707;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"shared-hosting-249x202.png\";s:5:\"width\";i:249;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7658;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"shared-hosting-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2629;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"shared-hosting-200x173.png\";s:5:\"width\";i:200;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8817;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2594","1665","_source_url","https://avada.studio/wp-content/uploads/2023/03/shared-hosting.png"),
("2595","1665","_avada_studio_media","3581231f25e1f7afcac42d29a14a91ab"),
("2596","1666","_wp_attached_file","2026/06/wordpress-hosting.png"),
("2597","1666","_wp_attachment_metadata","a:6:{s:5:\"width\";i:236;s:6:\"height\";i:216;s:4:\"file\";s:29:\"2026/06/wordpress-hosting.png\";s:8:\"filesize\";i:8191;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"wordpress-hosting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8933;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"wordpress-hosting-236x202.png\";s:5:\"width\";i:236;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8749;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"wordpress-hosting-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3062;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"wordpress-hosting-200x183.png\";s:5:\"width\";i:200;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12111;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2598","1666","_source_url","https://avada.studio/wp-content/uploads/2023/03/wordpress-hosting.png"),
("2599","1666","_avada_studio_media","98a72f0505e8dd8c6877fe7ad16d8a3d"),
("2600","1667","_wp_attached_file","2026/06/vps-hosting.png"),
("2601","1667","_wp_attachment_metadata","a:6:{s:5:\"width\";i:250;s:6:\"height\";i:217;s:4:\"file\";s:23:\"2026/06/vps-hosting.png\";s:8:\"filesize\";i:11593;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"vps-hosting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10096;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"vps-hosting-250x202.png\";s:5:\"width\";i:250;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11831;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"vps-hosting-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3699;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"vps-hosting-200x174.png\";s:5:\"width\";i:200;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13739;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2602","1667","_source_url","https://avada.studio/wp-content/uploads/2023/03/vps-hosting.png"),
("2603","1667","_avada_studio_media","a5841ac659a4083e476abc5b9f048e49"),
("2604","1668","_wp_attached_file","2026/06/dedicated-server.png"),
("2605","1668","_wp_attachment_metadata","a:6:{s:5:\"width\";i:248;s:6:\"height\";i:216;s:4:\"file\";s:28:\"2026/06/dedicated-server.png\";s:8:\"filesize\";i:13747;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"dedicated-server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12323;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"dedicated-server-248x202.png\";s:5:\"width\";i:248;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13873;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"dedicated-server-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4387;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"dedicated-server-200x174.png\";s:5:\"width\";i:200;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16354;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2606","1668","_source_url","https://avada.studio/wp-content/uploads/2023/03/dedicated-server.png"),
("2607","1668","_avada_studio_media","3d459d251644ef61866a74a68205c623"),
("2608","1669","_wp_attached_file","2026/06/hosting-graphic-5.png"),
("2609","1669","_wp_attachment_metadata","a:6:{s:5:\"width\";i:844;s:6:\"height\";i:734;s:4:\"file\";s:29:\"2026/06/hosting-graphic-5.png\";s:8:\"filesize\";i:183865;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24478;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-768x668.png\";s:5:\"width\";i:768;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:229601;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101980;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51849;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165784;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"hosting-graphic-5-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7106;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-200x174.png\";s:5:\"width\";i:200;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31415;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-400x348.png\";s:5:\"width\";i:400;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86026;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-600x522.png\";s:5:\"width\";i:600;s:6:\"height\";i:522;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157962;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-5-800x696.png\";s:5:\"width\";i:800;s:6:\"height\";i:696;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:243426;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2610","1669","_source_url","https://avada.studio/wp-content/uploads/2023/03/hosting-graphic-5.png"),
("2611","1669","_avada_studio_media","28437a1b053503a8b3144d3415638702"),
("2612","1670","_wp_attached_file","2026/06/hosting-graphic-6.png"),
("2613","1670","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1178;s:6:\"height\";i:929;s:4:\"file\";s:29:\"2026/06/hosting-graphic-6.png\";s:8:\"filesize\";i:393932;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-300x237.png\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50217;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"hosting-graphic-6-1024x808.png\";s:5:\"width\";i:1024;s:6:\"height\";i:808;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:355423;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21831;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-768x606.png\";s:5:\"width\";i:768;s:6:\"height\";i:606;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:217663;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130388;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52215;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179060;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"hosting-graphic-6-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6290;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-200x158.png\";s:5:\"width\";i:200;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27288;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-400x315.png\";s:5:\"width\";i:400;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76965;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-600x473.png\";s:5:\"width\";i:600;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144558;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"hosting-graphic-6-800x631.png\";s:5:\"width\";i:800;s:6:\"height\";i:631;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231862;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2614","1670","_source_url","https://avada.studio/wp-content/uploads/2023/03/hosting-graphic-6.png"),
("2615","1670","_avada_studio_media","5528927a490e72fb947c669e05198662"),
("2616","1671","_wp_attached_file","2026/06/world-map-2.png"),
("2617","1671","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:1010;s:4:\"file\";s:23:\"2026/06/world-map-2.png\";s:8:\"filesize\";i:111593;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"world-map-2-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18527;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"world-map-2-1024x606.png\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94775;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"world-map-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9812;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"world-map-2-768x454.png\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66581;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"world-map-2-1536x909.png\";s:5:\"width\";i:1536;s:6:\"height\";i:909;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164691;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"world-map-2-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45174;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"world-map-2-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20615;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:23:\"world-map-2-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62315;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"world-map-2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3286;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"world-map-2-200x118.png\";s:5:\"width\";i:200;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10460;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"world-map-2-400x237.png\";s:5:\"width\";i:400;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27727;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:23:\"world-map-2-600x355.png\";s:5:\"width\";i:600;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47795;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:23:\"world-map-2-800x473.png\";s:5:\"width\";i:800;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69920;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:24:\"world-map-2-1200x710.png\";s:5:\"width\";i:1200;s:6:\"height\";i:710;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119473;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2618","1671","_source_url","https://avada.studio/wp-content/uploads/2023/03/world-map-2.png"),
("2619","1671","_avada_studio_media","c8644262961e90cdb5ff0cfed59513f0"),
("2620","1672","_fusion","a:22:{s:19:\"exclude_form_studio\";s:3:\"yes\";s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f2f2f2\";s:16:\"color3_overwrite\";s:7:\"#dddddd\";s:16:\"color4_overwrite\";s:7:\"#ff871a\";s:16:\"color5_overwrite\";s:7:\"#008ee6\";s:16:\"color6_overwrite\";s:7:\"#006db1\";s:16:\"color7_overwrite\";s:7:\"#003d84\";s:16:\"color8_overwrite\";s:7:\"#100033\";s:7:\"h1_size\";s:4:\"48px\";s:7:\"h2_size\";s:4:\"36px\";s:7:\"h3_size\";s:4:\"30px\";s:7:\"h4_size\";s:4:\"24px\";s:21:\"typography1_overwrite\";a:9:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:8:\"-0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography2_overwrite\";a:8:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography3_overwrite\";a:9:{s:7:\"variant\";s:3:\"500\";s:11:\"font-weight\";s:3:\"500\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:1:\"1\";s:14:\"letter-spacing\";s:8:\"-0.025em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:21:\"typography4_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.8\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:21:\"typography5_overwrite\";a:8:{s:7:\"variant\";s:3:\"400\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:11:\"font-family\";s:13:\"IBM Plex Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:8:\"-0.015em\";}s:17:\"form_input_height\";s:4:\"65px\";s:15:\"form_text_color\";s:17:\"rgba(16,0,51,0.5)\";s:18:\"form_border_radius\";s:1:\"0\";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:\"\";}}}"),
("2621","1672","_fusion_google_fonts","a:1:{s:13:\"IBM Plex Sans\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"500\";}}}"),
("2622","1672","_avada_studio_import_key","76b7ba332946913db617786caf8b74c4"),
("2623","1672","_avada_studio_post","3999"),
("2624","1673","_fusion","a:9:{s:15:\"custom_icon_set\";a:5:{s:13:\"attachment_id\";i:1674;s:17:\"icon_set_dir_name\";s:21:\"hosting-template-v3.0\";s:5:\"icons\";a:34:{i:0;s:10:\"add-server\";i:1;s:14:\"approve-server\";i:2;s:9:\"cable-usb\";i:3;s:9:\"check-box\";i:4;s:15:\"cloud-computing\";i:5;s:13:\"cloud-hosting\";i:6;s:6:\"coding\";i:7;s:10:\"connection\";i:8;s:3:\"cpu\";i:9;s:8:\"database\";i:10;s:8:\"download\";i:11;s:10:\"engagement\";i:12;s:5:\"group\";i:13;s:7:\"hosting\";i:14;s:5:\"image\";i:15;s:13:\"international\";i:16;s:13:\"local-network\";i:17;s:12:\"location-pin\";i:18;s:17:\"personal-computer\";i:19;s:4:\"play\";i:20;s:4:\"plus\";i:21;s:7:\"product\";i:22;s:13:\"remove-server\";i:23;s:6:\"router\";i:24;s:9:\"satellite\";i:25;s:6:\"search\";i:26;s:6:\"server\";i:27;s:7:\"setting\";i:28;s:10:\"smartphone\";i:29;s:6:\"unlock\";i:30;s:6:\"upload\";i:31;s:11:\"web-hosting\";i:32;s:14:\"web-protection\";i:33;s:7:\"website\";}s:10:\"css_prefix\";s:17:\"hosting-template-\";s:10:\"icon_count\";i:34;}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f4f2f2\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}"),
("2625","1673","_avada_studio_import_key","f45139a8bf19ca3d3b0dbcd41712982d"),
("2626","1673","_avada_studio_post","4066"),
("2627","1674","_wp_attached_file","2026/06/hosting-template-v3.0.zip"),
("2628","1674","_avada_studio_media","22ce50051df641e51492e53899159462"),
("2629","948","_fusion_google_fonts","a:1:{s:13:\"IBM Plex Sans\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"600\";}}}"),
("2630","1676","_wp_attached_file","2026/06/BG12.jpg"),
("2631","1676","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1086;s:4:\"file\";s:16:\"2026/06/BG12.jpg\";s:8:\"filesize\";i:902766;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG12-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4252;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG12-1024x434.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27336;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3034;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG12-768x326.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16921;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG12-1536x652.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:652;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53824;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"BG12-2048x869.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:869;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88480;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG12-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13289;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7278;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG12-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24474;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1460;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"BG12-200x85.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2650;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG12-400x170.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6459;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG12-600x255.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11587;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG12-800x339.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18239;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG12-1200x509.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35349;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("2634","1686","_wp_page_template","100-width.php"),
("2635","1686","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2636","1686","fusion_builder_status","active"),
("2637","1686","postcart","show"),
("2638","1686","_postcart","field_6a1ecc5c3bda3"),
("2639","1686","treatment","Masseter Botox"),
("2640","1686","_treatment","field_6a1ecc5c3bddb"),
("2641","1686","_thumbnail_id","1848"),
("2643","1686","_edit_last","1"),
("2644","1687","postcart","show"),
("2645","1687","_postcart","field_6a1ecc5c3bda3"),
("2646","1687","treatment","Masseter Botox"),
("2647","1687","_treatment","field_6a1ecc5c3bddb"),
("2648","1686","avada_post_views_count","135"),
("2649","1686","avada_today_post_views_count","21"),
("2650","1686","avada_post_views_count_today_date","02-07-2026"),
("2651","1694","_wp_attached_file","2026/06/BF10-scaled.jpg"),
("2652","1694","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1429;s:4:\"file\";s:23:\"2026/06/BF10-scaled.jpg\";s:8:\"filesize\";i:321688;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BF10-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10439;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BF10-1024x572.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68719;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BF10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5630;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BF10-768x429.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42960;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BF10-1536x857.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135604;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:18:\"BF10-2048x1143.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1143;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220523;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BF10-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26978;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BF10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12344;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BF10-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41836;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BF10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2127;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BF10-200x112.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5885;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BF10-400x223.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15631;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BF10-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29115;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BF10-800x447.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45471;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BF10-1200x670.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89496;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}s:14:\"original_image\";s:8:\"BF10.jpg\";}"),
("2653","1695","_wp_attached_file","2026/06/AF10-scaled.jpg"),
("2654","1695","_wp_attachment_metadata","a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1429;s:4:\"file\";s:23:\"2026/06/AF10-scaled.jpg\";s:8:\"filesize\";i:310051;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"AF10-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10358;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"AF10-1024x572.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68323;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"AF10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5577;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"AF10-768x429.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42913;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"AF10-1536x857.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133661;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:18:\"AF10-2048x1143.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1143;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214523;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"AF10-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27127;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"AF10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12220;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"AF10-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41686;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"AF10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2065;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"AF10-200x112.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5834;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"AF10-400x223.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15533;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"AF10-600x335.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29117;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"AF10-800x447.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45515;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"AF10-1200x670.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88700;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}s:14:\"original_image\";s:8:\"AF10.jpg\";}"),
("2655","1702","_menu_item_type","post_type"),
("2656","1702","_menu_item_menu_item_parent","0"),
("2657","1702","_menu_item_object_id","948"),
("2658","1702","_menu_item_object","page"),
("2659","1702","_menu_item_target",""),
("2660","1702","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("2661","1702","_menu_item_xfn",""),
("2662","1702","_menu_item_url",""),
("2664","1702","_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:\"\";}"),
("2675","1704","_edit_last","1"),
("2677","1704","_wp_page_template","100-width.php"),
("2678","1704","_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:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}"),
("2679","1704","fusion_builder_status","active"),
("2680","1704","avada_post_views_count","198"),
("2681","1704","avada_today_post_views_count","10"),
("2682","1704","avada_post_views_count_today_date","02-07-2026"),
("2684","1707","_wp_attached_file","2026/06/dashboard-software-preview.png"),
("2685","1707","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2401;s:6:\"height\";i:1500;s:4:\"file\";s:38:\"2026/06/dashboard-software-preview.png\";s:8:\"filesize\";i:40129;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11308;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"dashboard-software-preview-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43923;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"dashboard-software-preview-1536x960.png\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117197;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"dashboard-software-preview-2048x1279.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1279;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:176159;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25271;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12658;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38077;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"dashboard-software-preview-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1728;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-200x125.png\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5487;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16873;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-600x375.png\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30704;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"dashboard-software-preview-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42095;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:39:\"dashboard-software-preview-1200x750.png\";s:5:\"width\";i:1200;s:6:\"height\";i:750;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79517;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2686","1707","_source_url","https://avada.studio/wp-content/uploads/2022/08/dashboard-software-preview.png"),
("2687","1707","_avada_studio_media","811a2489a4836c8422ca9c5b152b90e1"),
("2688","1708","_wp_attached_file","2026/06/logo-1.png"),
("2689","1708","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2026/06/logo-1.png\";s:8:\"filesize\";i:818;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-1-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1246;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-1-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:708;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2690","1708","_source_url","https://avada.studio/wp-content/uploads/2021/08/logo-1.png"),
("2691","1708","_avada_studio_media","0aac6e235d55d3f15994a5614a57495c"),
("2692","1709","_wp_attached_file","2026/06/logo-3.png"),
("2693","1709","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2026/06/logo-3.png\";s:8:\"filesize\";i:893;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-3-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1240;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-3-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:756;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2694","1709","_source_url","https://avada.studio/wp-content/uploads/2021/08/logo-3.png"),
("2695","1709","_avada_studio_media","d396fbeab74397b789aefa9f455a2ec6"),
("2696","1710","_wp_attached_file","2026/06/logo-2.png"),
("2697","1710","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2026/06/logo-2.png\";s:8:\"filesize\";i:979;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-2-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1669;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-2-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:938;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2698","1710","_source_url","https://avada.studio/wp-content/uploads/2021/08/logo-2.png"),
("2699","1710","_avada_studio_media","0ecba5cfaba2f0ebb6c190d5d27fbad1"),
("2700","1711","_wp_attached_file","2026/06/logo-5.png"),
("2701","1711","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2026/06/logo-5.png\";s:8:\"filesize\";i:1196;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-5-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1976;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-5-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1090;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2702","1711","_source_url","https://avada.studio/wp-content/uploads/2021/08/logo-5.png"),
("2703","1711","_avada_studio_media","f40e07140edd2d12eb265b8490215ec5"),
("2704","1712","_wp_attached_file","2026/06/logo-4.png"),
("2705","1712","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2026/06/logo-4.png\";s:8:\"filesize\";i:1102;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-4-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1607;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-4-66x60.png\";s:5:\"width\";i:66;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:931;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2706","1712","_source_url","https://avada.studio/wp-content/uploads/2021/08/logo-4.png"),
("2707","1712","_avada_studio_media","244f69ea1c4a48891a13bbba6358fbbc"),
("2708","1713","_wp_attached_file","2026/06/feats-marketing-1.png"),
("2709","1713","_wp_attachment_metadata","a:6:{s:5:\"width\";i:440;s:6:\"height\";i:440;s:4:\"file\";s:29:\"2026/06/feats-marketing-1.png\";s:8:\"filesize\";i:103873;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"feats-marketing-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43365;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"feats-marketing-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:12132;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"feats-marketing-1-440x272.png\";s:5:\"width\";i:440;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79586;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"feats-marketing-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:42566;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"feats-marketing-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:3663;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"feats-marketing-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19907;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"feats-marketing-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:74818;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2710","1713","_source_url","https://avada.studio/wp-content/uploads/2022/07/feats-marketing-1.png"),
("2711","1713","_avada_studio_media","f6b8a180a8591408aaad8d1cbaa67eef"),
("2712","1714","_wp_attached_file","2026/06/feats-marketing-2.png"),
("2713","1714","_wp_attachment_metadata","a:6:{s:5:\"width\";i:440;s:6:\"height\";i:440;s:4:\"file\";s:29:\"2026/06/feats-marketing-2.png\";s:8:\"filesize\";i:84275;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"feats-marketing-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34813;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"feats-marketing-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10491;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"feats-marketing-2-440x272.png\";s:5:\"width\";i:440;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55814;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"feats-marketing-2-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30386;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"feats-marketing-2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3334;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"feats-marketing-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16821;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"feats-marketing-2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59216;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2714","1714","_source_url","https://avada.studio/wp-content/uploads/2022/07/feats-marketing-2.png"),
("2715","1714","_avada_studio_media","f27cd78d23309383d25a18189748836f"),
("2716","1715","_wp_attached_file","2026/06/software-template-card-1.png"),
("2717","1715","_wp_attachment_metadata","a:6:{s:5:\"width\";i:690;s:6:\"height\";i:599;s:4:\"file\";s:36:\"2026/06/software-template-card-1.png\";s:8:\"filesize\";i:16424;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"software-template-card-1-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24751;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"software-template-card-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:9922;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"software-template-card-1-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45256;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"software-template-card-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:24222;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"software-template-card-1-690x441.png\";s:5:\"width\";i:690;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34472;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"software-template-card-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:3347;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"software-template-card-1-200x174.png\";s:5:\"width\";i:200;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13376;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"software-template-card-1-400x347.png\";s:5:\"width\";i:400;s:6:\"height\";i:347;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38109;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"software-template-card-1-600x521.png\";s:5:\"width\";i:600;s:6:\"height\";i:521;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67480;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2718","1715","_source_url","https://avada.studio/wp-content/uploads/2022/08/software-template-card-1.png"),
("2719","1715","_avada_studio_media","313cda15c349086a862980c05a992d26"),
("2720","1716","_wp_attached_file","2026/06/software-template-card-2.png"),
("2721","1716","_wp_attachment_metadata","a:6:{s:5:\"width\";i:690;s:6:\"height\";i:776;s:4:\"file\";s:36:\"2026/06/software-template-card-2.png\";s:8:\"filesize\";i:15914;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21230;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8316;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34119;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13698;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-690x441.png\";s:5:\"width\";i:690;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21517;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"software-template-card-2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2381;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-200x225.png\";s:5:\"width\";i:200;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13767;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38920;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"software-template-card-2-600x675.png\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67658;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2722","1716","_source_url","https://avada.studio/wp-content/uploads/2022/08/software-template-card-2.png"),
("2723","1716","_avada_studio_media","c1b402c781423b2307c474a5c4af7569"),
("2724","1717","_wp_attached_file","2026/06/2.jpg"),
("2725","1717","_wp_attachment_metadata","a:6:{s:5:\"width\";i:700;s:6:\"height\";i:700;s:4:\"file\";s:13:\"2026/06/2.jpg\";s:8:\"filesize\";i:56734;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13034;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5165;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:13:\"2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21425;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:13:\"2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10650;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:13:\"2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35100;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:11:\"2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2112;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:13:\"2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7496;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:13:\"2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19472;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:13:\"2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35917;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2726","1717","_source_url","https://avada.studio/wp-content/uploads/2021/10/2.jpg"),
("2727","1717","_avada_studio_media","0f2be9547d15d956feacd61fb7ce10d3"),
("2728","1718","_wp_attached_file","2026/06/4.jpg"),
("2729","1718","_wp_attachment_metadata","a:6:{s:5:\"width\";i:700;s:6:\"height\";i:700;s:4:\"file\";s:13:\"2026/06/4.jpg\";s:8:\"filesize\";i:75844;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15195;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5615;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:13:\"4-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25672;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:13:\"4-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12094;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:13:\"4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43703;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:11:\"4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2191;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:13:\"4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8235;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:13:\"4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23286;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:13:\"4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45071;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2730","1718","_source_url","https://avada.studio/wp-content/uploads/2021/10/4.jpg"),
("2731","1718","_avada_studio_media","a75bc82f2181dc8514263e730ea90a6f"),
("2732","1719","_wp_attached_file","2026/06/6.jpg"),
("2733","1719","_wp_attachment_metadata","a:6:{s:5:\"width\";i:700;s:6:\"height\";i:700;s:4:\"file\";s:13:\"2026/06/6.jpg\";s:8:\"filesize\";i:224986;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33940;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8622;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:13:\"6-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60702;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:13:\"6-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24462;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:13:\"6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118485;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:11:\"6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2356;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:13:\"6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14795;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:13:\"6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58837;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:13:\"6-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124287;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2734","1719","_source_url","https://avada.studio/wp-content/uploads/2021/10/6.jpg"),
("2735","1719","_avada_studio_media","143c09e591356c92730a9d9d7de971a4"),
("2736","1720","_wp_attached_file","2026/06/dashboard-software-preview-cta.png"),
("2737","1720","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2401;s:6:\"height\";i:857;s:4:\"file\";s:42:\"2026/06/dashboard-software-preview-cta.png\";s:8:\"filesize\";i:52766;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9192;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"dashboard-software-preview-cta-1024x366.png\";s:5:\"width\";i:1024;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6408;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-768x274.png\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41550;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"dashboard-software-preview-cta-1536x548.png\";s:5:\"width\";i:1536;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122359;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"dashboard-software-preview-cta-2048x731.png\";s:5:\"width\";i:2048;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189657;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-669x272.png\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37241;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13491;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45884;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"dashboard-software-preview-cta-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1896;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"dashboard-software-preview-cta-200x71.png\";s:5:\"width\";i:200;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4907;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-400x143.png\";s:5:\"width\";i:400;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14437;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-600x214.png\";s:5:\"width\";i:600;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27991;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:42:\"dashboard-software-preview-cta-800x286.png\";s:5:\"width\";i:800;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44053;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:43:\"dashboard-software-preview-cta-1200x428.png\";s:5:\"width\";i:1200;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83793;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2738","1720","_source_url","https://avada.studio/wp-content/uploads/2022/08/dashboard-software-preview-cta.png"),
("2739","1720","_avada_studio_media","4a8c111bf589f855a73d17ea9d534281"),
("2740","1721","_fusion","a:9:{s:15:\"custom_icon_set\";a:5:{s:13:\"attachment_id\";i:1722;s:17:\"icon_set_dir_name\";s:23:\"accountant-pro-icon-set\";s:5:\"icons\";a:32:{i:0;s:7:\"call-us\";i:1;s:4:\"mail\";i:2;s:5:\"check\";i:3;s:8:\"security\";i:4;s:4:\"plus\";i:5;s:5:\"arrow\";i:6;s:9:\"thumbs-up\";i:7;s:4:\"time\";i:8;s:3:\"map\";i:9;s:4:\"info\";i:10;s:8:\"archives\";i:11;s:8:\"download\";i:12;s:13:\"international\";i:13;s:4:\"menu\";i:14;s:4:\"cart\";i:15;s:6:\"cancel\";i:16;s:5:\"audit\";i:17;s:5:\"books\";i:18;s:10:\"calculator\";i:19;s:4:\"card\";i:20;s:7:\"chart-1\";i:21;s:7:\"chart-2\";i:22;s:7:\"chart-3\";i:23;s:6:\"client\";i:24;s:8:\"currency\";i:25;s:9:\"customers\";i:26;s:4:\"docs\";i:27;s:8:\"exchange\";i:28;s:7:\"folders\";i:29;s:10:\"industries\";i:30;s:5:\"money\";i:31;s:9:\"portfolio\";}s:10:\"css_prefix\";s:16:\"icon-accountant-\";s:10:\"icon_count\";i:32;}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f4f2f2\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}"),
("2741","1721","_avada_studio_import_key","a97757dbddb0eb3a829a03859eb083da"),
("2742","1721","_avada_studio_post","975"),
("2743","1722","_wp_attached_file","2026/06/accountant-pro-icon-set.zip"),
("2744","1722","_avada_studio_media","2349a3af00278e008b0833c5b65898ea"),
("2745","1704","_fusion_google_fonts",""),
("2747","1732","_edit_last","1"),
("2749","1732","_wp_page_template","100-width.php"),
("2750","1732","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";}"),
("2751","1732","fusion_builder_status","active"),
("2752","1732","avada_post_views_count","149"),
("2753","1732","avada_today_post_views_count","9"),
("2754","1732","avada_post_views_count_today_date","02-07-2026"),
("2755","1735","_menu_item_type","post_type"),
("2756","1735","_menu_item_menu_item_parent","0"),
("2757","1735","_menu_item_object_id","1704"),
("2758","1735","_menu_item_object","page"),
("2759","1735","_menu_item_target",""),
("2760","1735","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("2761","1735","_menu_item_xfn",""),
("2762","1735","_menu_item_url",""),
("2764","1735","_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:\"\";}"),
("2775","47","_wp_old_date","2026-06-16"),
("2776","1149","_wp_old_date","2026-06-16"),
("2777","1702","_wp_old_date","2026-06-16"),
("2792","59","_wp_old_date","2026-06-16"),
("2793","61","_wp_old_date","2026-06-16"),
("2794","1737","_wp_attached_file","2026/06/BG13.jpg"),
("2795","1737","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1703;s:4:\"file\";s:16:\"2026/06/BG13.jpg\";s:8:\"filesize\";i:185808;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10100;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG13-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55783;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5175;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG13-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36824;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"BG13-1536x1022.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102111;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:18:\"BG13-2048x1362.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158154;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG13-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20222;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10651;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG13-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30975;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2094;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG13-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5981;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG13-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14839;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG13-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25922;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG13-800x532.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39089;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG13-1200x798.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:798;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70167;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2797","1740","_wp_attached_file","2026/06/interior-design-01.jpg"),
("2798","1740","_wp_attachment_metadata","a:6:{s:5:\"width\";i:940;s:6:\"height\";i:1300;s:4:\"file\";s:30:\"2026/06/interior-design-01.jpg\";s:8:\"filesize\";i:70030;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"interior-design-01-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8254;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"interior-design-01-740x1024.jpg\";s:5:\"width\";i:740;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52058;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"interior-design-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4072;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"interior-design-01-768x1062.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1062;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54871;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"interior-design-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17083;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"interior-design-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8715;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"interior-design-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27466;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"interior-design-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1681;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"interior-design-01-200x277.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7226;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"interior-design-01-400x553.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19943;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"interior-design-01-600x830.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37501;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"interior-design-01-800x1106.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1106;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58031;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2799","1740","_source_url","https://avada.studio/wp-content/uploads/2024/10/interior-design-01.jpg"),
("2800","1740","_avada_studio_media","466e31fdf78cef3645f242c38e854ccf"),
("2801","1741","_fusion","a:9:{s:15:\"custom_icon_set\";a:5:{s:13:\"attachment_id\";i:1742;s:17:\"icon_set_dir_name\";s:25:\"modern-furniture-icon-set\";s:5:\"icons\";a:37:{i:0;s:9:\"desk-bold\";i:1;s:11:\"bureau-bold\";i:2;s:10:\"chair-bold\";i:3;s:7:\"tv-bold\";i:4;s:9:\"door-bold\";i:5;s:8:\"bed-bold\";i:6;s:9:\"sofa-bold\";i:7;s:9:\"lamp-bold\";i:8;s:9:\"sofa-thin\";i:9;s:10:\"chair-thin\";i:10;s:9:\"desk-thin\";i:11;s:11:\"bureau-thin\";i:12;s:7:\"tv-thin\";i:13;s:9:\"door-thin\";i:14;s:8:\"bed-thin\";i:15;s:9:\"lamp-thin\";i:16;s:15:\"allergies-solid\";i:17;s:41:\"american-sign-language-interpreting-solid\";i:18;s:17:\"arrow-right-solid\";i:19;s:33:\"assistive-listening-systems-solid\";i:20;s:9:\"bed-solid\";i:21;s:10:\"bold-solid\";i:22;s:18:\"check-circle-solid\";i:23;s:24:\"exclamation-circle-solid\";i:24;s:11:\"hamsa-solid\";i:25;s:10:\"home-solid\";i:26;s:15:\"lightbulb-solid\";i:27;s:17:\"paper-plane-solid\";i:28;s:10:\"play-solid\";i:29;s:13:\"rainbow-solid\";i:30;s:18:\"star-of-life-solid\";i:31;s:16:\"instagram-brands\";i:32;s:4:\"menu\";i:33;s:5:\"close\";i:34;s:7:\"outline\";i:35;s:4:\"user\";i:36;s:13:\"shopping-cart\";}s:10:\"css_prefix\";s:14:\"icon-furniture\";s:10:\"icon_count\";i:37;}s:16:\"color1_overwrite\";s:7:\"#ffffff\";s:16:\"color2_overwrite\";s:7:\"#f4f2f2\";s:16:\"color3_overwrite\";s:7:\"#e2e2e2\";s:16:\"color4_overwrite\";s:7:\"#9ee5b7\";s:16:\"color5_overwrite\";s:7:\"#198fd9\";s:16:\"color6_overwrite\";s:7:\"#434549\";s:16:\"color7_overwrite\";s:7:\"#212326\";s:16:\"color8_overwrite\";s:7:\"#141617\";}"),
("2802","1741","_avada_studio_import_key","86de141726f5f92157c7c86a69ea27ca"),
("2803","1741","_avada_studio_post","977"),
("2804","1742","_wp_attached_file","2026/06/modern-furniture-icon-set.zip"),
("2805","1742","_avada_studio_media","d363378f9faf0ab72b26272cade99353"),
("2807","1748","_wp_attached_file","2026/06/Thread-Lifting.jpg"),
("2808","1748","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:26:\"2026/06/Thread-Lifting.jpg\";s:8:\"filesize\";i:837903;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8955;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Thread-Lifting-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51427;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4156;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Thread-Lifting-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61528;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14866;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7355;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23687;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"Thread-Lifting-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1867;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8955;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23160;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"Thread-Lifting-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42534;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"Thread-Lifting-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64954;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2809","1750","_wp_attached_file","2026/06/Hair-Loss.jpg"),
("2810","1750","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:21:\"2026/06/Hair-Loss.jpg\";s:8:\"filesize\";i:475218;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5866;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43766;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21690;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11012;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36568;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"Hair-Loss-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2225;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5922;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15812;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29563;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:21:\"Hair-Loss-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47054;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2814","1767","_wp_attached_file","2026/06/Hair-Loss02.jpg"),
("2815","1767","_wp_attachment_metadata","a:6:{s:5:\"width\";i:415;s:6:\"height\";i:740;s:4:\"file\";s:23:\"2026/06/Hair-Loss02.jpg\";s:8:\"filesize\";i:62028;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Hair-Loss02-168x300.jpg\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9436;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Hair-Loss02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5543;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"Hair-Loss02-415x272.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28114;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"Hair-Loss02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14216;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:23:\"Hair-Loss02-415x441.jpg\";s:5:\"width\";i:415;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42022;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"Hair-Loss02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1875;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"Hair-Loss02-200x357.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12714;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"Hair-Loss02-400x713.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43728;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2822","1783","_wp_attached_file","2026/06/pattern-3.svg"),
("2823","1783","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:781;}"),
("2824","1784","_wp_attached_file","2026/06/Pattern-Black.svg"),
("2825","1784","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:411;}"),
("2830","1794","_wp_attached_file","2026/06/Cotta-Free.woff"),
("2831","1794","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:9524;}"),
("2832","1795","_wp_attached_file","2026/06/Cotta-Free.ttf"),
("2833","1795","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:29424;}"),
("2834","1796","_wp_attached_file","2026/06/Cotta-Free.woff2"),
("2835","1796","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:7064;}"),
("2837","1797","_wp_attached_file","2026/06/Cottage-MA0ln.woff2"),
("2838","1797","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:16000;}"),
("2839","1798","_wp_attached_file","2026/06/Cottage-MA0ln.ttf"),
("2840","1798","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:66308;}"),
("2841","1799","_wp_attached_file","2026/06/Cottage-MA0ln.woff"),
("2842","1799","_wp_attachment_metadata","a:1:{s:8:\"filesize\";i:30152;}"),
("2849","1829","_wp_attached_file","2026/06/Filler-Dissolving-200x200-copy.png"),
("2850","1829","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:42:\"2026/06/Filler-Dissolving-200x200-copy.png\";s:8:\"filesize\";i:17813;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Filler-Dissolving-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14139;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Filler-Dissolving-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4740;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2851","1830","_wp_attached_file","2026/06/Skin-Tag-Mole-Removal-200x200-1.png"),
("2852","1830","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:43:\"2026/06/Skin-Tag-Mole-Removal-200x200-1.png\";s:8:\"filesize\";i:20576;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Skin-Tag-Mole-Removal-200x200-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:12564;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Skin-Tag-Mole-Removal-200x200-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:4522;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2853","1831","_wp_attached_file","2026/06/Cellulite-Treatment-200x200-copy.png"),
("2854","1831","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:44:\"2026/06/Cellulite-Treatment-200x200-copy.png\";s:8:\"filesize\";i:13801;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Cellulite-Treatment-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10411;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"Cellulite-Treatment-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3702;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2855","1832","_wp_attached_file","2026/06/Body-fat-200x200-copy.png"),
("2856","1832","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2026/06/Body-fat-200x200-copy.png\";s:8:\"filesize\";i:11451;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Body-fat-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6726;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Body-fat-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2313;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2857","1833","_wp_attached_file","2026/06/Double-Chin-200x200-copy.png"),
("2858","1833","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:36:\"2026/06/Double-Chin-200x200-copy.png\";s:8:\"filesize\";i:14230;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Double-Chin-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9628;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Double-Chin-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3750;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2859","1834","_wp_attached_file","2026/06/Hair-Loss2-200x200-copy.png"),
("2860","1834","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2026/06/Hair-Loss2-200x200-copy.png\";s:8:\"filesize\";i:23456;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Hair-Loss2-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16684;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Hair-Loss2-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5589;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2861","1835","_wp_attached_file","2026/06/skin-Rejuvenation-200x200-copy.png"),
("2862","1835","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:42:\"2026/06/skin-Rejuvenation-200x200-copy.png\";s:8:\"filesize\";i:17498;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"skin-Rejuvenation-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15349;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"skin-Rejuvenation-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5562;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2863","1836","_wp_attached_file","2026/06/Glowing-Skin-200x200-copy.png"),
("2864","1836","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:37:\"2026/06/Glowing-Skin-200x200-copy.png\";s:8:\"filesize\";i:22663;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Glowing-Skin-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16312;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Glowing-Skin-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5339;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2865","1837","_wp_attached_file","2026/06/Pigmentation-200x200-copy.png"),
("2866","1837","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:37:\"2026/06/Pigmentation-200x200-copy.png\";s:8:\"filesize\";i:15698;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Pigmentation-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13384;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Pigmentation-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4458;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2867","1838","_wp_attached_file","2026/06/Stem-Cell-IV-200x200-copy.png"),
("2868","1838","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:37:\"2026/06/Stem-Cell-IV-200x200-copy.png\";s:8:\"filesize\";i:16822;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Stem-Cell-IV-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19557;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Stem-Cell-IV-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6585;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2869","1839","_wp_attached_file","2026/06/Acne-Scar-Treatment-200x200-Copy.png"),
("2870","1839","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:44:\"2026/06/Acne-Scar-Treatment-200x200-Copy.png\";s:8:\"filesize\";i:20576;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Acne-Scar-Treatment-200x200-Copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12564;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"Acne-Scar-Treatment-200x200-Copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4522;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2871","1841","_wp_attached_file","2026/06/BG10-Our-Treatment-Services-copy.jpg"),
("2872","1841","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:766;s:4:\"file\";s:44:\"2026/06/BG10-Our-Treatment-Services-copy.jpg\";s:8:\"filesize\";i:374332;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"BG10-Our-Treatment-Services-copy-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2787;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"BG10-Our-Treatment-Services-copy-1024x306.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9688;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"BG10-Our-Treatment-Services-copy-1536x460.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30278;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"BG10-Our-Treatment-Services-copy-2048x613.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50591;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10925;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3727;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12376;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"BG10-Our-Treatment-Services-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:909;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"BG10-Our-Treatment-Services-copy-200x60.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1839;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3822;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-600x180.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6731;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:44:\"BG10-Our-Treatment-Services-copy-800x239.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10110;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:45:\"BG10-Our-Treatment-Services-copy-1200x359.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19651;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2873","1842","_wp_attached_file","2026/06/BG11-Our-Treatment-Services-copy.jpg"),
("2874","1842","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1216;s:6:\"height\";i:766;s:4:\"file\";s:44:\"2026/06/BG11-Our-Treatment-Services-copy.jpg\";s:8:\"filesize\";i:276393;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4902;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"BG11-Our-Treatment-Services-copy-1024x645.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33735;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3290;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-768x484.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:484;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20510;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9675;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5318;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17542;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"BG11-Our-Treatment-Services-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1513;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-200x126.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2908;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-400x252.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7245;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-600x378.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13659;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-800x504.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21802;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:45:\"BG11-Our-Treatment-Services-copy-1200x756.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44454;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2875","1844","_wp_attached_file","2026/06/Main-BG-new-copy.jpg"),
("2876","1844","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1572;s:4:\"file\";s:28:\"2026/06/Main-BG-new-copy.jpg\";s:8:\"filesize\";i:156351;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6831;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Main-BG-new-copy-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3657;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30761;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Main-BG-new-copy-1536x943.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:943;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93908;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2048x1258.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141557;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17623;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7985;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27836;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"Main-BG-new-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1510;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-200x123.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3634;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-400x246.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10981;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-600x368.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20893;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-800x491.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32876;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:29:\"Main-BG-new-copy-1200x737.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63357;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2878","1846","_wp_attached_file","2026/06/Pigmentation_image-copy.jpg"),
("2879","1846","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:35:\"2026/06/Pigmentation_image-copy.jpg\";s:8:\"filesize\";i:99989;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12857;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Pigmentation_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6253;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53782;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30297;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14899;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48649;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Pigmentation_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2098;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6888;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20386;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37644;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:35:\"Pigmentation_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56695;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:36:\"Pigmentation_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98907;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2880","1847","_wp_attached_file","2026/06/Doublechin_image-copy.jpg"),
("2881","1847","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:33:\"2026/06/Doublechin_image-copy.jpg\";s:8:\"filesize\";i:54147;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6128;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Doublechin_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42880;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27924;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14741;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6953;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24420;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Doublechin_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1501;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3474;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9690;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18751;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:33:\"Doublechin_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29594;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:34:\"Doublechin_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54506;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2882","1848","_wp_attached_file","2026/06/Jawline_image-copy.jpg"),
("2883","1848","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:30:\"2026/06/Jawline_image-copy.jpg\";s:8:\"filesize\";i:53717;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6829;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Jawline_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3661;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28884;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15454;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7715;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25641;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Jawline_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1559;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3873;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10638;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19746;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"Jawline_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30497;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:31:\"Jawline_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55456;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2884","1849","_wp_attached_file","2026/06/Sad_image-copy.jpg"),
("2885","1849","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:26:\"2026/06/Sad_image-copy.jpg\";s:8:\"filesize\";i:54313;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7468;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Sad_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3867;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30063;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17015;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8603;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27432;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"Sad_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1645;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4391;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11451;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21019;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:26:\"Sad_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31630;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:27:\"Sad_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55917;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2886","1850","_wp_attached_file","2026/06/SkinTag_image-copy.jpg"),
("2887","1850","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:30:\"2026/06/SkinTag_image-copy.jpg\";s:8:\"filesize\";i:70287;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6894;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"SkinTag_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55392;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3835;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33972;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18667;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7838;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29874;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"SkinTag_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1587;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3930;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10936;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21899;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"SkinTag_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36392;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:31:\"SkinTag_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72007;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2888","1851","_wp_attached_file","2026/06/Sweat_image-copy.jpg"),
("2889","1851","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:28:\"2026/06/Sweat_image-copy.jpg\";s:8:\"filesize\";i:79894;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10254;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Sweat_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62956;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5327;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42693;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24369;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11704;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38275;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"Sweat_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2022;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5674;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16230;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29916;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"Sweat_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44878;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:29:\"Sweat_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78547;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2890","1852","_wp_attached_file","2026/06/CrowsFeet_image-copy.jpg"),
("2891","1852","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:32:\"2026/06/CrowsFeet_image-copy.jpg\";s:8:\"filesize\";i:123953;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11710;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CrowsFeet_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96674;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62660;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33252;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13625;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55692;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"CrowsFeet_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1703;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5867;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19896;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41293;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"CrowsFeet_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66405;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:33:\"CrowsFeet_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121996;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2892","1853","_wp_attached_file","2026/06/Forehead_image-copy.jpg"),
("2893","1853","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:31:\"2026/06/Forehead_image-copy.jpg\";s:8:\"filesize\";i:92590;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10256;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Forehead_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71410;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47002;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24640;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11501;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41240;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Forehead_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1895;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5582;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16294;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31755;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Forehead_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49807;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:32:\"Forehead_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90058;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2894","1854","_wp_attached_file","2026/06/Hair_image-copy.jpg"),
("2895","1854","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:27:\"2026/06/Hair_image-copy.jpg\";s:8:\"filesize\";i:150820;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12353;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Hair_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109694;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6307;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68375;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38367;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14491;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60561;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"Hair_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2224;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6222;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21093;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44089;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73159;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"Hair_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141162;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2897","1436","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("2898","1436","fusion_builder_status","active"),
("2899","1856","postcart","show"),
("2900","1856","_postcart","field_6a1ecc5c3bda3"),
("2901","1856","treatment","PRP, Mesotherapy"),
("2902","1856","_treatment","field_6a1ecc5c3bddb"),
("2905","1861","_wp_attached_file","2026/06/Neck_image-copy.jpg"),
("2906","1861","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:27:\"2026/06/Neck_image-copy.jpg\";s:8:\"filesize\";i:72735;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9307;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Neck_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4093;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37379;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19957;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10380;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33231;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"Neck_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1724;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5280;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14270;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26005;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39593;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"Neck_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70066;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2907","1199","_edit_lock","1781779758:1"),
("2908","1862","_wp_attached_file","2026/06/Botox-Homepage-copy.jpg"),
("2909","1862","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:31:\"2026/06/Botox-Homepage-copy.jpg\";s:8:\"filesize\";i:41832;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Botox-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Botox-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4741;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Botox-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19037;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Botox-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10532;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Botox-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29949;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Botox-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1802;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Botox-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10254;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Botox-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32339;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2910","1863","_wp_attached_file","2026/06/IV-Homepage-copy.jpg"),
("2911","1863","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:28:\"2026/06/IV-Homepage-copy.jpg\";s:8:\"filesize\";i:52709;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"IV-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13105;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"IV-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6350;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"IV-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25435;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"IV-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13820;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"IV-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39419;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"IV-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2204;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"IV-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13105;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"IV-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38383;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2912","1864","_wp_attached_file","2026/06/PRP-Homepage-copy.jpg"),
("2913","1864","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2026/06/PRP-Homepage-copy.jpg\";s:8:\"filesize\";i:34698;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4726;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17796;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9970;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28035;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"PRP-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1926;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9418;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28030;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2914","1865","relationship","a:1:{i:0;s:3:\"922\";}"),
("2915","1865","_relationship","field_6a1eb7c7f8c75"),
("2916","1865","post_cart","show"),
("2917","1865","_post_cart","field_6a1eb9ec09978"),
("2918","1865","excerpt","A refreshed, well-rested look"),
("2919","1865","_excerpt","field_6a1ebcb11e905"),
("2920","1865","age_appropriate","18"),
("2921","1865","_age_appropriate","field_6a1ebcd74eee9"),
("2922","1866","relationship","a:1:{i:0;s:3:\"922\";}"),
("2923","1866","_relationship","field_6a1eb7c7f8c75"),
("2924","1866","post_cart","show"),
("2925","1866","_post_cart","field_6a1eb9ec09978"),
("2926","1866","excerpt","Natural tissue regeneration and renewal"),
("2927","1866","_excerpt","field_6a1ebcb11e905"),
("2928","1866","age_appropriate","18"),
("2929","1866","_age_appropriate","field_6a1ebcd74eee9"),
("2930","1867","relationship","a:1:{i:0;s:3:\"922\";}"),
("2931","1867","_relationship","field_6a1eb7c7f8c75"),
("2932","1867","post_cart","show"),
("2933","1867","_post_cart","field_6a1eb9ec09978"),
("2934","1867","excerpt","Instant hydration and nutrient infusion"),
("2935","1867","_excerpt","field_6a1ebcb11e905"),
("2936","1867","age_appropriate","18"),
("2937","1867","_age_appropriate","field_6a1ebcd74eee9"),
("2938","1872","_wp_attached_file","2026/06/DrSoheila-Picture-Homepage-copy.jpg"),
("2939","1872","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:43:\"2026/06/DrSoheila-Picture-Homepage-copy.jpg\";s:8:\"filesize\";i:173193;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8639;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4639;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14135;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8418;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23559;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"DrSoheila-Picture-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1843;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8639;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23304;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:4:\"1.78\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 15 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1777997495\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:15:\"6.7649998656528\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:18:\"0.0060975609756098\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2940","1587","_edit_lock","1782227358:1"),
("2941","1874","_wp_attached_file","2026/06/Bios-Homepage-copy.jpg"),
("2942","1874","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:30:\"2026/06/Bios-Homepage-copy.jpg\";s:8:\"filesize\";i:40557;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10799;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4529;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14428;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8479;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24740;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Bios-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1914;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10799;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31704;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2943","1875","_wp_attached_file","2026/06/Botox-Homepage.jpg"),
("2944","1875","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:26:\"2026/06/Botox-Homepage.jpg\";s:8:\"filesize\";i:44249;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Botox-Homepage-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10778;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Botox-Homepage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4889;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"Botox-Homepage-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19728;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"Botox-Homepage-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10901;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"Botox-Homepage-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31668;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"Botox-Homepage-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1802;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"Botox-Homepage-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10778;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"Botox-Homepage-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34346;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2945","1876","_wp_attached_file","2026/06/Microneedling-Homepage-copy.jpg"),
("2946","1876","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2026/06/Microneedling-Homepage-copy.jpg\";s:8:\"filesize\";i:33798;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9947;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4932;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17190;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10001;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26268;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Microneedling-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1938;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9947;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27893;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2947","1877","_wp_attached_file","2026/06/PDRN-Homepage-copy.jpg"),
("2948","1877","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:30:\"2026/06/PDRN-Homepage-copy.jpg\";s:8:\"filesize\";i:33520;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"PDRN-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"PDRN-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4938;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"PDRN-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15449;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"PDRN-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9330;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"PDRN-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23996;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"PDRN-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1984;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"PDRN-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10162;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"PDRN-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27678;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2949","1878","_wp_attached_file","2026/06/Dermal-filler-Homepage-copy.jpg"),
("2950","1878","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2026/06/Dermal-filler-Homepage-copy.jpg\";s:8:\"filesize\";i:27924;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Dermal-filler-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8348;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Dermal-filler-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3748;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"Dermal-filler-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10217;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"Dermal-filler-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6202;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"Dermal-filler-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17900;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Dermal-filler-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1710;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"Dermal-filler-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8348;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"Dermal-filler-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23091;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("2951","1879","_wp_attached_file","2026/06/Fat-Homepage-copy.jpg"),
("2952","1879","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:29:\"2026/06/Fat-Homepage-copy.jpg\";s:8:\"filesize\";i:45287;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4431;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16993;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9204;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29674;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Fat-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1760;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9913;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32894;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2953","1880","_wp_attached_file","2026/06/IV-Homepage.jpg"),
("2954","1880","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:23:\"2026/06/IV-Homepage.jpg\";s:8:\"filesize\";i:54499;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"IV-Homepage-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IV-Homepage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6123;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"IV-Homepage-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25159;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"IV-Homepage-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13726;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:23:\"IV-Homepage-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39353;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"IV-Homepage-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2035;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"IV-Homepage-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12920;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"IV-Homepage-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38433;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2955","1881","_wp_attached_file","2026/06/Skin-Lesion-Homepage-copy.jpg"),
("2956","1881","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:37:\"2026/06/Skin-Lesion-Homepage-copy.jpg\";s:8:\"filesize\";i:36637;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Skin-Lesion-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10219;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Skin-Lesion-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4748;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Skin-Lesion-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15633;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Skin-Lesion-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9380;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Skin-Lesion-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25911;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Skin-Lesion-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1839;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Skin-Lesion-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10219;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Skin-Lesion-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29444;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2957","1882","_wp_attached_file","2026/06/Skinbooster-Homepage-copy.jpg"),
("2958","1882","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:37:\"2026/06/Skinbooster-Homepage-copy.jpg\";s:8:\"filesize\";i:34510;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4211;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16318;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8776;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24862;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Skinbooster-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1774;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8986;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26919;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2959","1883","_wp_attached_file","2026/06/Subcission-Homepage-copy.jpg"),
("2960","1883","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:36:\"2026/06/Subcission-Homepage-copy.jpg\";s:8:\"filesize\";i:33590;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9946;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4721;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14190;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8774;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23325;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Subcission-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1966;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9946;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27523;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2961","1884","_wp_attached_file","2026/06/Meso-Homepage-copy.jpg"),
("2962","1884","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:30:\"2026/06/Meso-Homepage-copy.jpg\";s:8:\"filesize\";i:40774;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9398;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4491;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17997;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9908;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29429;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Meso-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1722;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9398;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29929;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2963","1885","_wp_attached_file","2026/06/PRP-Homepage.jpg"),
("2964","1885","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:24:\"2026/06/PRP-Homepage.jpg\";s:8:\"filesize\";i:34134;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"PRP-Homepage-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9329;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"PRP-Homepage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4659;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"PRP-Homepage-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17670;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"PRP-Homepage-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9897;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"PRP-Homepage-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27911;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"PRP-Homepage-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1914;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"PRP-Homepage-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9329;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"PRP-Homepage-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27845;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("2965","1886","relationship","a:1:{i:0;s:3:\"922\";}"),
("2966","1886","_relationship","field_6a1eb7c7f8c75"),
("2967","1886","post_cart","show"),
("2968","1886","_post_cart","field_6a1eb9ec09978"),
("2969","1886","excerpt","Subtle, natural looking enhancement"),
("2970","1886","_excerpt","field_6a1ebcb11e905"),
("2971","1886","age_appropriate","22"),
("2972","1886","_age_appropriate","field_6a1ebcd74eee9"),
("2973","1887","relationship","a:1:{i:0;s:3:\"922\";}"),
("2974","1887","_relationship","field_6a1eb7c7f8c75"),
("2975","1887","post_cart","show"),
("2976","1887","_post_cart","field_6a1eb9ec09978"),
("2977","1887","excerpt","Precision sculpting for stubborn fat"),
("2978","1887","_excerpt","field_6a1ebcb11e905"),
("2979","1887","age_appropriate","18"),
("2980","1887","_age_appropriate","field_6a1ebcd74eee9"),
("2981","1888","relationship","a:1:{i:0;s:3:\"922\";}"),
("2982","1888","_relationship","field_6a1eb7c7f8c75"),
("2983","1888","post_cart","show"),
("2984","1888","_post_cart","field_6a1eb9ec09978"),
("2985","1888","excerpt","Quick clearance for smooth skin"),
("2986","1888","_excerpt","field_6a1ebcb11e905"),
("2987","1888","age_appropriate","18"),
("2988","1888","_age_appropriate","field_6a1ebcd74eee9"),
("2989","1889","relationship","a:1:{i:0;s:3:\"922\";}"),
("2990","1889","_relationship","field_6a1eb7c7f8c75"),
("2991","1889","post_cart","show"),
("2992","1889","_post_cart","field_6a1eb9ec09978"),
("2993","1889","excerpt","Effective deep scar release"),
("2994","1889","_excerpt","field_6a1ebcb11e905"),
("2995","1889","age_appropriate","18"),
("2996","1889","_age_appropriate","field_6a1ebcd74eee9"),
("2997","1890","relationship","a:1:{i:0;s:3:\"922\";}"),
("2998","1890","_relationship","field_6a1eb7c7f8c75"),
("2999","1890","post_cart","show"),
("3000","1890","_post_cart","field_6a1eb9ec09978"),
("3001","1890","excerpt","Natural collagen renewal, from within"),
("3002","1890","_excerpt","field_6a1ebcb11e905"),
("3003","1890","age_appropriate","18"),
("3004","1890","_age_appropriate","field_6a1ebcd74eee9"),
("3005","1894","_wp_attached_file","2026/06/Body_image-copy.jpg"),
("3006","1894","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:27:\"2026/06/Body_image-copy.jpg\";s:8:\"filesize\";i:54269;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5923;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Body_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3364;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24808;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13500;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6667;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22217;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"Body_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1516;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3615;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8919;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16406;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"Body_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26394;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"Body_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52605;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3007","1895","_wp_attached_file","2026/06/face_image-copy.jpg"),
("3008","1895","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:27:\"2026/06/face_image-copy.jpg\";s:8:\"filesize\";i:61690;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"face_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6448;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"face_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46904;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"face_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3404;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"face_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29661;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"face_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16378;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"face_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7223;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"face_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25759;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"face_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1496;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"face_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3777;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"face_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10051;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"face_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19557;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"face_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31614;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"face_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60456;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3009","1896","_wp_attached_file","2026/06/Hair_image-copy-1.jpg"),
("3010","1896","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:29:\"2026/06/Hair_image-copy-1.jpg\";s:8:\"filesize\";i:97861;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10690;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Hair_image-copy-1-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6502;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46742;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25091;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12279;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41830;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Hair_image-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2369;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6123;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16581;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31545;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"Hair_image-copy-1-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49586;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:30:\"Hair_image-copy-1-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90513;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3011","1897","_wp_attached_file","2026/06/Men_image-copy.jpg"),
("3012","1897","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:26:\"2026/06/Men_image-copy.jpg\";s:8:\"filesize\";i:94867;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7324;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Men_image-copy-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4021;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37225;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19358;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8537;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33392;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"Men_image-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1653;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4047;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11815;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23971;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:26:\"Men_image-copy-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39984;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:27:\"Men_image-copy-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82127;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3013","1898","_wp_attached_file","2026/06/Neck_image-copy-1.jpg"),
("3014","1898","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1354;s:6:\"height\";i:823;s:4:\"file\";s:29:\"2026/06/Neck_image-copy-1.jpg\";s:8:\"filesize\";i:65843;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7643;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Neck_image-copy-1-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4477;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31353;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16901;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8774;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28314;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Neck_image-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1907;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-200x122.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4543;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11569;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-600x365.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21311;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"Neck_image-copy-1-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33235;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:30:\"Neck_image-copy-1-1200x729.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61529;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3015","1900","_wp_attached_file","2026/06/BG01-scaled-copy.jpg"),
("3016","1900","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1406;s:4:\"file\";s:28:\"2026/06/BG01-scaled-copy.jpg\";s:8:\"filesize\";i:124686;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5035;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"BG01-scaled-copy-1024x562.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38358;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2480;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-768x422.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21340;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"BG01-scaled-copy-1536x844.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81840;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"BG01-scaled-copy-2048x1125.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130627;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12010;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5707;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20586;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"BG01-scaled-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1342;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-200x110.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3006;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7167;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-600x330.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13511;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"BG01-scaled-copy-800x439.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22949;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:29:\"BG01-scaled-copy-1200x659.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52187;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3017","1904","_wp_attached_file","2026/06/A-Natural-Approach-to-Beauty-Pic-copy-new.jpg"),
("3018","1904","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1015;s:4:\"file\";s:53:\"2026/06/A-Natural-Approach-to-Beauty-Pic-copy-new.jpg\";s:8:\"filesize\";i:111058;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11304;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"A-Natural-Approach-to-Beauty-Pic-copy-new-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73959;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5607;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47301;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24407;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11560;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38485;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:51:\"A-Natural-Approach-to-Beauty-Pic-copy-new-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2146;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-200x135.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6209;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17115;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-600x406.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31306;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:53:\"A-Natural-Approach-to-Beauty-Pic-copy-new-800x541.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50042;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:54:\"A-Natural-Approach-to-Beauty-Pic-copy-new-1200x812.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:812;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91258;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3019","1905","_wp_attached_file","2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy-new2.jpg"),
("3020","1905","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1015;s:4:\"file\";s:65:\"2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy-new2.jpg\";s:8:\"filesize\";i:72420;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9540;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4780;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34023;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18413;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9760;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28279;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:63:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1979;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-200x135.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5596;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13709;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-600x406.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24098;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:65:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-800x541.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36044;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:66:\"Your-Journey-Starts-with-a-Consultation-Pic-copy-new2-1200x812.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:812;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64014;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3023","1909","_wp_attached_file","2026/06/BG11-Our-Treatment-Services-copy-1.jpg"),
("3024","1909","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:766;s:4:\"file\";s:46:\"2026/06/BG11-Our-Treatment-Services-copy-1.jpg\";s:8:\"filesize\";i:51015;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"BG11-Our-Treatment-Services-copy-1-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2886;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-1-1024x306.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15320;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1198;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9766;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-1-1536x460.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29190;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-1-2048x613.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46189;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10813;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3598;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11374;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:848;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:45:\"BG11-Our-Treatment-Services-copy-1-200x60.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1927;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3992;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-600x180.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6923;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-1-800x239.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10277;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-1-1200x359.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19511;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3025","1910","_wp_attached_file","2026/06/BG11-Our-Treatment-Services-copy-2.jpg"),
("3026","1910","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:766;s:4:\"file\";s:46:\"2026/06/BG11-Our-Treatment-Services-copy-2.jpg\";s:8:\"filesize\";i:287042;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"BG11-Our-Treatment-Services-copy-2-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2885;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-2-1024x306.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15414;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1195;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9801;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-2-1536x460.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29706;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-2-2048x613.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47323;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10863;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3598;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11495;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:44:\"BG11-Our-Treatment-Services-copy-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:847;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:45:\"BG11-Our-Treatment-Services-copy-2-200x60.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1927;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4001;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-600x180.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6920;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:46:\"BG11-Our-Treatment-Services-copy-2-800x239.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10285;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:47:\"BG11-Our-Treatment-Services-copy-2-1200x359.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19707;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3027","1913","_wpcode_auto_insert","1"),
("3028","1913","_wpcode_auto_insert_number","1"),
("3029","1913","_wpcode_conditional_logic_enabled",""),
("3030","1913","_wpcode_priority","10"),
("3031","1913","_wpcode_note",""),
("3032","1913","_wpcode_location_extra",""),
("3033","1913","_wpcode_shortcode_attributes","a:0:{}"),
("3034","1913","_edit_lock","1781793879:1"),
("3035","1913","_wpcode_conditional_logic","a:0:{}"),
("3039","1931","_wp_attached_file","2026/06/BG16.jpg"),
("3040","1931","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1056;s:6:\"height\";i:1056;s:4:\"file\";s:16:\"2026/06/BG16.jpg\";s:8:\"filesize\";i:550873;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11611;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"BG16-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95565;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3938;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG16-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58647;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG16-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26667;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG16-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10830;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG16-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40795;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1558;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG16-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5962;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG16-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18856;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG16-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38375;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG16-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63429;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3041","1932","_wp_attached_file","2026/06/BG15.jpg"),
("3042","1932","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1085;s:4:\"file\";s:16:\"2026/06/BG15.jpg\";s:8:\"filesize\";i:1270388;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG15-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5469;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"BG15-1024x434.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4315;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG15-768x326.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26188;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"BG15-1536x651.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91217;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:17:\"BG15-2048x868.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:868;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151476;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG15-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19842;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG15-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9154;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG15-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35333;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG15-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1651;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:15:\"BG15-200x85.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3062;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG15-400x170.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8676;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG15-600x254.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16830;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG15-800x339.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28214;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:17:\"BG15-1200x509.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58180;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3043","1935","_wp_attached_file","2026/06/BG17.jpg"),
("3044","1935","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1056;s:6:\"height\";i:1056;s:4:\"file\";s:16:\"2026/06/BG17.jpg\";s:8:\"filesize\";i:134324;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG17-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6757;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"BG17-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46499;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2206;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG17-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30400;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG17-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10496;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG17-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5011;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG17-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18272;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG17-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:921;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG17-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3353;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG17-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10469;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG17-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20396;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG17-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31752;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3045","1937","_wp_attached_file","2026/06/BG18.jpg"),
("3046","1937","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1056;s:6:\"height\";i:1056;s:4:\"file\";s:16:\"2026/06/BG18.jpg\";s:8:\"filesize\";i:252031;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"BG18-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8877;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"BG18-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"BG18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3420;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"BG18-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36997;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:16:\"BG18-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12888;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:16:\"BG18-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6849;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:16:\"BG18-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21909;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:14:\"BG18-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1504;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:16:\"BG18-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5006;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:16:\"BG18-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13817;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:16:\"BG18-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25323;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:16:\"BG18-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39755;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3051","1967","_wp_attached_file","2026/06/BG12-Our-Treatment-Services-copy-copy.jpg"),
("3052","1967","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1216;s:6:\"height\";i:766;s:4:\"file\";s:49:\"2026/06/BG12-Our-Treatment-Services-copy-copy.jpg\";s:8:\"filesize\";i:237071;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3806;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"BG12-Our-Treatment-Services-copy-copy-1024x645.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2542;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-768x484.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:484;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15386;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7474;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4115;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13147;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:47:\"BG12-Our-Treatment-Services-copy-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1293;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-200x126.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2314;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-400x252.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5518;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-600x378.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10226;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:49:\"BG12-Our-Treatment-Services-copy-copy-800x504.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16363;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:50:\"BG12-Our-Treatment-Services-copy-copy-1200x756.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33430;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3053","1969","_wp_attached_file","2026/06/BG17-1.jpg"),
("3054","1969","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1056;s:6:\"height\";i:1056;s:4:\"file\";s:18:\"2026/06/BG17-1.jpg\";s:8:\"filesize\";i:440271;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"BG17-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8476;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"BG17-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"BG17-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3055;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"BG17-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42237;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"BG17-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19269;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"BG17-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7865;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"BG17-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29371;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"BG17-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1317;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"BG17-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4447;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"BG17-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13534;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"BG17-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27467;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"BG17-1-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45486;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3057","1974","_wp_attached_file","2026/06/BG20.jpg"),
("3058","1975","_wp_attached_file","2026/06/BG20-1.jpg"),
("3059","1975","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2026/06/BG20-1.jpg\";s:8:\"filesize\";i:19663;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"BG20-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2133;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"BG20-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1088;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"BG20-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10021;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"BG20-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3583;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"BG20-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1728;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"BG20-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5679;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"BG20-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:788;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"BG20-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1364;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"BG20-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3188;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"BG20-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6519;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:18:\"BG20-1-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10810;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3060","1978","_wpcode_auto_insert","1"),
("3061","1978","_wpcode_auto_insert_number","1"),
("3062","1978","_wpcode_conditional_logic_enabled",""),
("3063","1978","_wpcode_priority","10"),
("3064","1978","_wpcode_note",""),
("3065","1978","_wpcode_location_extra",""),
("3066","1978","_wpcode_shortcode_attributes","a:0:{}"),
("3067","1978","_edit_lock","1781888223:1"),
("3068","1978","_wpcode_conditional_logic","a:0:{}"),
("3070","1979","_wpcode_auto_insert","1"),
("3071","1979","_wpcode_auto_insert_number","1"),
("3072","1979","_wpcode_conditional_logic_enabled",""),
("3073","1979","_wpcode_priority","10"),
("3074","1979","_wpcode_note",""),
("3075","1979","_wpcode_location_extra",""),
("3076","1979","_wpcode_shortcode_attributes","a:0:{}"),
("3077","1979","_edit_lock","1781886896:1"),
("3078","1979","_wpcode_conditional_logic","a:0:{}"),
("3079","47","_wp_old_date","2026-06-17"),
("3080","1149","_wp_old_date","2026-06-17"),
("3081","1702","_wp_old_date","2026-06-17"),
("3082","1735","_wp_old_date","2026-06-17"),
("3083","59","_wp_old_date","2026-06-17"),
("3084","61","_wp_old_date","2026-06-17"),
("3088","7","_edit_lock","1782057975:1"),
("3092","47","_wp_old_date","2026-06-19"),
("3093","1149","_wp_old_date","2026-06-19"),
("3094","1702","_wp_old_date","2026-06-19"),
("3095","1735","_wp_old_date","2026-06-19"),
("3096","59","_wp_old_date","2026-06-19"),
("3097","61","_wp_old_date","2026-06-19"),
("3099","2005","_menu_item_type","post_type"),
("3100","2005","_menu_item_menu_item_parent","0"),
("3101","2005","_menu_item_object_id","5"),
("3102","2005","_menu_item_object","page"),
("3103","2005","_menu_item_target",""),
("3104","2005","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3105","2005","_menu_item_xfn",""),
("3106","2005","_menu_item_url",""),
("3108","2005","_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:\"\";}"),
("3109","2006","_menu_item_type","post_type"),
("3110","2006","_menu_item_menu_item_parent","0"),
("3111","2006","_menu_item_object_id","48"),
("3112","2006","_menu_item_object","page"),
("3113","2006","_menu_item_target",""),
("3114","2006","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3115","2006","_menu_item_xfn",""),
("3116","2006","_menu_item_url",""),
("3118","2006","_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:\"\";}"),
("3119","2007","_menu_item_type","post_type"),
("3120","2007","_menu_item_menu_item_parent","0"),
("3121","2007","_menu_item_object_id","948"),
("3122","2007","_menu_item_object","page"),
("3123","2007","_menu_item_target",""),
("3124","2007","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3125","2007","_menu_item_xfn",""),
("3126","2007","_menu_item_url",""),
("3128","2007","_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:\"\";}"),
("3129","2008","_menu_item_type","post_type"),
("3130","2008","_menu_item_menu_item_parent","2007"),
("3131","2008","_menu_item_object_id","1686"),
("3132","2008","_menu_item_object","page"),
("3133","2008","_menu_item_target",""),
("3134","2008","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3135","2008","_menu_item_xfn",""),
("3136","2008","_menu_item_url",""),
("3138","2008","_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:\"\";}"),
("3139","2009","_menu_item_type","post_type"),
("3140","2009","_menu_item_menu_item_parent","2007"),
("3141","2009","_menu_item_object_id","968"),
("3142","2009","_menu_item_object","page"),
("3143","2009","_menu_item_target",""),
("3144","2009","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3145","2009","_menu_item_xfn",""),
("3146","2009","_menu_item_url",""),
("3148","2009","_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:\"\";}"),
("3149","2010","_menu_item_type","post_type"),
("3150","2010","_menu_item_menu_item_parent","2007"),
("3151","2010","_menu_item_object_id","1649"),
("3152","2010","_menu_item_object","page"),
("3153","2010","_menu_item_target",""),
("3154","2010","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3155","2010","_menu_item_xfn",""),
("3156","2010","_menu_item_url",""),
("3158","2010","_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:\"\";}"),
("3159","2011","_menu_item_type","post_type"),
("3160","2011","_menu_item_menu_item_parent","2007"),
("3161","2011","_menu_item_object_id","964"),
("3162","2011","_menu_item_object","page"),
("3163","2011","_menu_item_target",""),
("3164","2011","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3165","2011","_menu_item_xfn",""),
("3166","2011","_menu_item_url",""),
("3168","2011","_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:\"\";}"),
("3169","2012","_menu_item_type","post_type"),
("3170","2012","_menu_item_menu_item_parent","2007"),
("3171","2012","_menu_item_object_id","952"),
("3172","2012","_menu_item_object","page"),
("3173","2012","_menu_item_target",""),
("3174","2012","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3175","2012","_menu_item_xfn",""),
("3176","2012","_menu_item_url",""),
("3178","2012","_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:\"\";}"),
("3179","2013","_menu_item_type","post_type"),
("3180","2013","_menu_item_menu_item_parent","2007"),
("3181","2013","_menu_item_object_id","1654"),
("3182","2013","_menu_item_object","page"),
("3183","2013","_menu_item_target",""),
("3184","2013","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3185","2013","_menu_item_xfn",""),
("3186","2013","_menu_item_url",""),
("3188","2013","_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:\"\";}"),
("3189","2014","_menu_item_type","post_type"),
("3190","2014","_menu_item_menu_item_parent","2007"),
("3191","2014","_menu_item_object_id","1644"),
("3192","2014","_menu_item_object","page"),
("3193","2014","_menu_item_target",""),
("3194","2014","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3195","2014","_menu_item_xfn",""),
("3196","2014","_menu_item_url",""),
("3198","2014","_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:\"\";}"),
("3199","2015","_menu_item_type","post_type"),
("3200","2015","_menu_item_menu_item_parent","2007"),
("3201","2015","_menu_item_object_id","1653"),
("3202","2015","_menu_item_object","page"),
("3203","2015","_menu_item_target",""),
("3204","2015","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3205","2015","_menu_item_xfn",""),
("3206","2015","_menu_item_url",""),
("3208","2015","_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:\"\";}"),
("3209","2016","_menu_item_type","post_type"),
("3210","2016","_menu_item_menu_item_parent","2007"),
("3211","2016","_menu_item_object_id","1651"),
("3212","2016","_menu_item_object","page"),
("3213","2016","_menu_item_target",""),
("3214","2016","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3215","2016","_menu_item_xfn",""),
("3216","2016","_menu_item_url",""),
("3218","2016","_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:\"\";}"),
("3219","2017","_menu_item_type","post_type"),
("3220","2017","_menu_item_menu_item_parent","2007"),
("3221","2017","_menu_item_object_id","1646"),
("3222","2017","_menu_item_object","page"),
("3223","2017","_menu_item_target",""),
("3224","2017","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3225","2017","_menu_item_xfn",""),
("3226","2017","_menu_item_url",""),
("3228","2017","_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:\"\";}"),
("3229","2018","_menu_item_type","post_type"),
("3230","2018","_menu_item_menu_item_parent","0"),
("3231","2018","_menu_item_object_id","1704"),
("3232","2018","_menu_item_object","page"),
("3233","2018","_menu_item_target",""),
("3234","2018","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3235","2018","_menu_item_xfn",""),
("3236","2018","_menu_item_url",""),
("3238","2018","_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:\"\";}"),
("3239","2019","_menu_item_type","post_type"),
("3240","2019","_menu_item_menu_item_parent","2018"),
("3241","2019","_menu_item_object_id","1732"),
("3242","2019","_menu_item_object","page"),
("3243","2019","_menu_item_target",""),
("3244","2019","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3245","2019","_menu_item_xfn",""),
("3246","2019","_menu_item_url",""),
("3248","2019","_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:\"\";}"),
("3249","2020","_menu_item_type","post_type"),
("3250","2020","_menu_item_menu_item_parent","0"),
("3251","2020","_menu_item_object_id","56"),
("3252","2020","_menu_item_object","page"),
("3253","2020","_menu_item_target",""),
("3254","2020","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3255","2020","_menu_item_xfn",""),
("3256","2020","_menu_item_url",""),
("3258","2020","_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:\"\";}"),
("3259","2021","_menu_item_type","post_type"),
("3260","2021","_menu_item_menu_item_parent","0"),
("3261","2021","_menu_item_object_id","922"),
("3262","2021","_menu_item_object","page"),
("3263","2021","_menu_item_target",""),
("3264","2021","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3265","2021","_menu_item_xfn",""),
("3266","2021","_menu_item_url",""),
("3268","2021","_menu_item_fusion_megamenu","a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:4:\"1034\";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:\"\";}"),
("3269","2022","_menu_item_type","custom"),
("3270","2022","_menu_item_menu_item_parent","2018"),
("3271","2022","_menu_item_object_id","2022"),
("3272","2022","_menu_item_object","custom"),
("3273","2022","_menu_item_target",""),
("3274","2022","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3275","2022","_menu_item_xfn",""),
("3276","2022","_menu_item_url","https://dr.frex.digital/consultations/hyaluronic-acid-injection/"),
("3278","2022","_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:\"\";}"),
("3279","2023","_menu_item_type","custom"),
("3280","2023","_menu_item_menu_item_parent","2018"),
("3281","2023","_menu_item_object_id","2023"),
("3282","2023","_menu_item_object","custom"),
("3283","2023","_menu_item_target",""),
("3284","2023","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3285","2023","_menu_item_xfn",""),
("3286","2023","_menu_item_url","https://dr.frex.digital/consultations/plla-injection-lanluma/"),
("3288","2023","_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:\"\";}"),
("3289","2024","_menu_item_type","custom"),
("3290","2024","_menu_item_menu_item_parent","2018"),
("3291","2024","_menu_item_object_id","2024"),
("3292","2024","_menu_item_object","custom"),
("3293","2024","_menu_item_target",""),
("3294","2024","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3295","2024","_menu_item_xfn",""),
("3296","2024","_menu_item_url","https://dr.frex.digital/consultations/thread-lifting-general-facial/"),
("3298","2024","_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:\"\";}"),
("3299","2025","_menu_item_type","custom"),
("3300","2025","_menu_item_menu_item_parent","2018"),
("3301","2025","_menu_item_object_id","2025"),
("3302","2025","_menu_item_object","custom"),
("3303","2025","_menu_item_target",""),
("3304","2025","_menu_item_classes","a:1:{i:0;s:0:\"\";}"),
("3305","2025","_menu_item_xfn",""),
("3306","2025","_menu_item_url","https://dr.frex.digital/consultations/consultation-for-body-thread/"),
("3308","2025","_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:\"\";}"),
("3310","2030","_wp_attached_file","2026/06/BG01-scaled-new-copy.jpg"),
("3311","2030","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1406;s:4:\"file\";s:32:\"2026/06/BG01-scaled-new-copy.jpg\";s:8:\"filesize\";i:120230;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4344;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BG01-scaled-new-copy-1024x562.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32682;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2381;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-768x422.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18930;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"BG01-scaled-new-copy-1536x844.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71956;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BG01-scaled-new-copy-2048x1125.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122447;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10781;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4904;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18082;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"BG01-scaled-new-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1316;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-200x110.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2703;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6174;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-600x330.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12142;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"BG01-scaled-new-copy-800x439.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20452;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:33:\"BG01-scaled-new-copy-1200x659.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44058;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3312","2032","_wp_attached_file","2026/06/Meso-Homepage-copy-1.jpg"),
("3313","2032","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2026/06/Meso-Homepage-copy-1.jpg\";s:8:\"filesize\";i:40553;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Meso-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9326;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Meso-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4472;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Meso-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17922;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Meso-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9848;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Meso-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29227;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Meso-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1714;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Meso-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9326;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Meso-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29733;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3314","2033","_wp_attached_file","2026/06/Microneedling-Homepage-copy-1.jpg"),
("3315","2033","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:41:\"2026/06/Microneedling-Homepage-copy-1.jpg\";s:8:\"filesize\";i:33343;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Microneedling-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Microneedling-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4807;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"Microneedling-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16814;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"Microneedling-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9749;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"Microneedling-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25723;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"Microneedling-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1890;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"Microneedling-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9703;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"Microneedling-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27340;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3316","2034","_wp_attached_file","2026/06/PRP-Homepage-copy-1.jpg"),
("3317","2034","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:31:\"2026/06/PRP-Homepage-copy-1.jpg\";s:8:\"filesize\";i:34159;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"PRP-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"PRP-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4665;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"PRP-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17675;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"PRP-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9910;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"PRP-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27937;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"PRP-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1918;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"PRP-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9328;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"PRP-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27852;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3318","2035","_wp_attached_file","2026/06/Skinbooster-Homepage-copy-1.jpg"),
("3319","2035","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:39:\"2026/06/Skinbooster-Homepage-copy-1.jpg\";s:8:\"filesize\";i:34760;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Skinbooster-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9104;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Skinbooster-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4245;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"Skinbooster-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16323;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"Skinbooster-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8799;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"Skinbooster-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24968;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"Skinbooster-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1799;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"Skinbooster-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9104;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"Skinbooster-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27045;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3320","2036","_wp_attached_file","2026/06/Subcission-Homepage-copy-1.jpg"),
("3321","2036","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:38:\"2026/06/Subcission-Homepage-copy-1.jpg\";s:8:\"filesize\";i:33789;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Subcission-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Subcission-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4800;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Subcission-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14424;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Subcission-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8928;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Subcission-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23506;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Subcission-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1968;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Subcission-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10049;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Subcission-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27675;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3322","2037","_wp_attached_file","2026/06/Bios-Homepage-copy-1.jpg"),
("3323","2037","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:32:\"2026/06/Bios-Homepage-copy-1.jpg\";s:8:\"filesize\";i:40315;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Bios-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10722;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Bios-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4500;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Bios-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14170;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Bios-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8298;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Bios-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24471;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Bios-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1914;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Bios-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10722;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Bios-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31499;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3324","2038","_wp_attached_file","2026/06/Fat-Homepage-copy-1.jpg"),
("3325","2038","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:31:\"2026/06/Fat-Homepage-copy-1.jpg\";s:8:\"filesize\";i:44182;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Fat-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Fat-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4283;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Fat-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16623;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Fat-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8921;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Fat-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29083;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Fat-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1716;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Fat-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9575;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Fat-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32041;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3330","2043","_wp_page_template","100-width.php"),
("3331","2043","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3332","2043","fusion_builder_status","active"),
("3333","2043","_fusion_google_fonts",""),
("3334","2043","avada_post_views_count","61"),
("3335","2043","avada_today_post_views_count","18"),
("3336","2043","avada_post_views_count_today_date","02-07-2026"),
("3337","2045","_wp_page_template","100-width.php"),
("3338","2045","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3339","2045","fusion_builder_status","active"),
("3340","2045","_fusion_google_fonts",""),
("3341","2047","_wp_page_template","100-width.php"),
("3342","2047","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3343","2047","fusion_builder_status","active"),
("3344","2047","_fusion_google_fonts",""),
("3345","2049","_wp_page_template","100-width.php"),
("3346","2049","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3347","2049","fusion_builder_status","active"),
("3348","2049","_fusion_google_fonts",""),
("3349","2051","_wp_page_template","100-width.php"),
("3350","2051","_fusion","a:6:{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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";}"),
("3351","2051","fusion_builder_status","active"),
("3352","2051","_fusion_google_fonts",""),
("3353","2053","_wp_page_template","100-width.php"),
("3354","2053","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3355","2053","fusion_builder_status","active"),
("3356","2053","_fusion_google_fonts",""),
("3357","2045","avada_post_views_count","53"),
("3358","2045","avada_today_post_views_count","18"),
("3359","2045","avada_post_views_count_today_date","02-07-2026"),
("3360","2047","avada_post_views_count","60"),
("3361","2047","avada_today_post_views_count","26"),
("3362","2047","avada_post_views_count_today_date","02-07-2026"),
("3363","2049","avada_post_views_count","49"),
("3364","2049","avada_today_post_views_count","20"),
("3365","2049","avada_post_views_count_today_date","02-07-2026"),
("3366","2051","avada_post_views_count","51"),
("3367","2051","avada_today_post_views_count","17"),
("3368","2051","avada_post_views_count_today_date","02-07-2026"),
("3369","2053","avada_post_views_count","48"),
("3370","2053","avada_today_post_views_count","18"),
("3371","2053","avada_post_views_count_today_date","02-07-2026"),
("3372","2055","_wp_page_template","100-width.php"),
("3373","2055","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3374","2055","fusion_builder_status","active"),
("3375","2055","_fusion_google_fonts",""),
("3376","2057","_wp_page_template","100-width.php"),
("3377","2057","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3378","2057","fusion_builder_status","active"),
("3379","2057","_fusion_google_fonts",""),
("3380","2059","_wp_page_template","100-width.php"),
("3381","2059","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3382","2059","fusion_builder_status","active"),
("3383","2059","_fusion_google_fonts",""),
("3384","2061","_wp_page_template","100-width.php"),
("3385","2061","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3386","2061","fusion_builder_status","active"),
("3387","2061","_fusion_google_fonts",""),
("3388","2063","_wp_page_template","100-width.php"),
("3389","2063","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3390","2063","fusion_builder_status","active"),
("3391","2063","_fusion_google_fonts",""),
("3392","2055","avada_post_views_count","97"),
("3393","2055","avada_today_post_views_count","21"),
("3394","2055","avada_post_views_count_today_date","02-07-2026"),
("3395","2065","_wp_page_template","100-width.php"),
("3396","2065","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3397","2065","fusion_builder_status","active"),
("3398","2065","_fusion_google_fonts",""),
("3399","2057","avada_post_views_count","59"),
("3400","2057","avada_today_post_views_count","18"),
("3401","2057","avada_post_views_count_today_date","02-07-2026"),
("3402","2059","avada_post_views_count","52"),
("3403","2059","avada_today_post_views_count","14"),
("3404","2059","avada_post_views_count_today_date","02-07-2026"),
("3405","2061","avada_post_views_count","71"),
("3406","2061","avada_today_post_views_count","22"),
("3407","2061","avada_post_views_count_today_date","02-07-2026"),
("3408","2067","_wp_page_template","100-width.php"),
("3409","2067","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3410","2067","fusion_builder_status","active"),
("3411","2067","_fusion_google_fonts",""),
("3412","2069","_wp_page_template","100-width.php"),
("3413","2069","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3414","2069","fusion_builder_status","active"),
("3415","2069","_fusion_google_fonts",""),
("3416","2071","_wp_page_template","100-width.php"),
("3417","2071","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3418","2071","fusion_builder_status","active"),
("3419","2071","_fusion_google_fonts",""),
("3420","2073","_wp_page_template","100-width.php"),
("3421","2073","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3422","2073","fusion_builder_status","active"),
("3423","2073","_fusion_google_fonts",""),
("3424","2075","_wp_page_template","100-width.php"),
("3425","2075","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3426","2075","fusion_builder_status","active"),
("3427","2075","_fusion_google_fonts",""),
("3428","2063","avada_post_views_count","54"),
("3429","2063","avada_today_post_views_count","16"),
("3430","2063","avada_post_views_count_today_date","02-07-2026"),
("3431","2065","avada_post_views_count","64"),
("3432","2065","avada_today_post_views_count","20"),
("3433","2065","avada_post_views_count_today_date","02-07-2026"),
("3434","2067","avada_post_views_count","71"),
("3435","2067","avada_today_post_views_count","17"),
("3436","2067","avada_post_views_count_today_date","02-07-2026"),
("3437","2069","avada_post_views_count","49"),
("3438","2069","avada_today_post_views_count","17"),
("3439","2069","avada_post_views_count_today_date","02-07-2026"),
("3440","2071","avada_post_views_count","63"),
("3441","2071","avada_today_post_views_count","23"),
("3442","2071","avada_post_views_count_today_date","02-07-2026"),
("3443","2073","avada_post_views_count","54"),
("3444","2073","avada_today_post_views_count","22"),
("3445","2073","avada_post_views_count_today_date","02-07-2026"),
("3446","2075","avada_post_views_count","50"),
("3447","2075","avada_today_post_views_count","17"),
("3448","2075","avada_post_views_count_today_date","02-07-2026"),
("3449","2077","_wp_page_template","100-width.php"),
("3450","2077","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3451","2077","fusion_builder_status","active"),
("3452","2077","_fusion_google_fonts",""),
("3453","2079","_wp_page_template","100-width.php"),
("3454","2079","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3455","2079","fusion_builder_status","active"),
("3456","2079","_fusion_google_fonts",""),
("3457","2081","_wp_page_template","100-width.php"),
("3458","2081","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3459","2081","fusion_builder_status","active"),
("3460","2081","_fusion_google_fonts",""),
("3461","2083","_wp_page_template","100-width.php"),
("3462","2083","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3463","2083","fusion_builder_status","active"),
("3464","2083","_fusion_google_fonts",""),
("3465","2077","avada_post_views_count","61"),
("3466","2077","avada_today_post_views_count","19"),
("3467","2077","avada_post_views_count_today_date","02-07-2026"),
("3468","2085","_wp_page_template","100-width.php"),
("3469","2085","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3470","2085","fusion_builder_status","active"),
("3471","2085","_fusion_google_fonts",""),
("3472","2079","avada_post_views_count","50"),
("3473","2079","avada_today_post_views_count","18"),
("3474","2079","avada_post_views_count_today_date","02-07-2026"),
("3475","2081","avada_post_views_count","51"),
("3476","2081","avada_today_post_views_count","18"),
("3477","2081","avada_post_views_count_today_date","02-07-2026"),
("3478","2087","_wp_page_template","100-width.php"),
("3479","2087","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3480","2087","fusion_builder_status","active"),
("3481","2087","_fusion_google_fonts",""),
("3482","2089","_wp_page_template","100-width.php"),
("3483","2089","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3484","2089","fusion_builder_status","active"),
("3485","2089","_fusion_google_fonts",""),
("3486","2083","avada_post_views_count","54"),
("3487","2083","avada_today_post_views_count","18"),
("3488","2083","avada_post_views_count_today_date","02-07-2026"),
("3489","2085","avada_post_views_count","65"),
("3490","2085","avada_today_post_views_count","16"),
("3491","2085","avada_post_views_count_today_date","02-07-2026"),
("3492","2087","avada_post_views_count","58"),
("3493","2087","avada_today_post_views_count","18"),
("3494","2087","avada_post_views_count_today_date","02-07-2026"),
("3495","2089","avada_post_views_count","57"),
("3496","2089","avada_today_post_views_count","17"),
("3497","2089","avada_post_views_count_today_date","02-07-2026"),
("3498","2091","_wp_page_template","100-width.php"),
("3499","2091","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("3500","2091","fusion_builder_status","active"),
("3501","2091","_fusion_google_fonts",""),
("3502","2093","_wp_page_template","100-width.php"),
("3503","2093","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3504","2093","fusion_builder_status","active"),
("3505","2093","_fusion_google_fonts",""),
("3506","2095","_wp_page_template","100-width.php"),
("3507","2095","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3508","2095","fusion_builder_status","active"),
("3509","2095","_fusion_google_fonts",""),
("3510","2097","_wp_page_template","100-width.php"),
("3511","2097","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3512","2097","fusion_builder_status","active"),
("3513","2097","_fusion_google_fonts",""),
("3514","2099","_wp_page_template","100-width.php"),
("3515","2099","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3516","2099","fusion_builder_status","active"),
("3517","2099","_fusion_google_fonts",""),
("3518","2091","avada_post_views_count","66"),
("3519","2091","avada_today_post_views_count","13"),
("3520","2091","avada_post_views_count_today_date","02-07-2026"),
("3521","2093","avada_post_views_count","81"),
("3522","2093","avada_today_post_views_count","17"),
("3523","2093","avada_post_views_count_today_date","02-07-2026"),
("3524","2095","avada_post_views_count","53"),
("3525","2095","avada_today_post_views_count","18"),
("3526","2095","avada_post_views_count_today_date","02-07-2026"),
("3527","2097","avada_post_views_count","49"),
("3528","2097","avada_today_post_views_count","18"),
("3529","2097","avada_post_views_count_today_date","02-07-2026"),
("3530","2099","avada_post_views_count","52"),
("3531","2099","avada_today_post_views_count","19"),
("3532","2099","avada_post_views_count_today_date","02-07-2026"),
("3533","2101","_wp_page_template","100-width.php"),
("3534","2101","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3535","2101","fusion_builder_status","active"),
("3536","2101","_fusion_google_fonts",""),
("3537","2103","_wp_page_template","100-width.php"),
("3538","2103","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3539","2103","fusion_builder_status","active"),
("3540","2103","_fusion_google_fonts",""),
("3541","2105","_wp_page_template","100-width.php"),
("3542","2105","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3543","2105","fusion_builder_status","active"),
("3544","2105","_fusion_google_fonts",""),
("3545","2101","avada_post_views_count","61"),
("3546","2101","avada_today_post_views_count","14"),
("3547","2101","avada_post_views_count_today_date","02-07-2026"),
("3548","2103","avada_post_views_count","57"),
("3549","2103","avada_today_post_views_count","17"),
("3550","2103","avada_post_views_count_today_date","02-07-2026"),
("3551","2105","avada_post_views_count","51"),
("3552","2105","avada_today_post_views_count","12"),
("3553","2105","avada_post_views_count_today_date","02-07-2026"),
("3554","2107","_wp_page_template","100-width.php"),
("3555","2107","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3556","2107","fusion_builder_status","active"),
("3557","2107","_fusion_google_fonts",""),
("3558","2109","_wp_page_template","100-width.php"),
("3559","2109","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3560","2109","fusion_builder_status","active"),
("3561","2109","_fusion_google_fonts",""),
("3562","2111","_wp_page_template","100-width.php"),
("3563","2111","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3564","2111","fusion_builder_status","active"),
("3565","2111","_fusion_google_fonts",""),
("3566","2113","_wp_page_template","100-width.php"),
("3567","2113","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3568","2113","fusion_builder_status","active"),
("3569","2113","_fusion_google_fonts",""),
("3570","2107","avada_post_views_count","50"),
("3571","2107","avada_today_post_views_count","17"),
("3572","2107","avada_post_views_count_today_date","02-07-2026"),
("3573","2115","_wp_page_template","100-width.php"),
("3574","2115","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3575","2115","fusion_builder_status","active"),
("3576","2115","_fusion_google_fonts",""),
("3577","2109","avada_post_views_count","51"),
("3578","2109","avada_today_post_views_count","16"),
("3579","2109","avada_post_views_count_today_date","02-07-2026"),
("3580","2117","_wp_page_template","100-width.php"),
("3581","2117","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3582","2117","fusion_builder_status","active"),
("3583","2117","_fusion_google_fonts",""),
("3584","2111","avada_post_views_count","48"),
("3585","2111","avada_today_post_views_count","16"),
("3586","2111","avada_post_views_count_today_date","02-07-2026"),
("3587","2113","avada_post_views_count","47"),
("3588","2113","avada_today_post_views_count","16"),
("3589","2113","avada_post_views_count_today_date","02-07-2026"),
("3590","2115","avada_post_views_count","49"),
("3591","2115","avada_today_post_views_count","15"),
("3592","2115","avada_post_views_count_today_date","02-07-2026"),
("3593","2119","_wp_page_template","100-width.php"),
("3594","2119","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3595","2119","fusion_builder_status","active"),
("3596","2119","_fusion_google_fonts",""),
("3597","2117","avada_post_views_count","48"),
("3598","2117","avada_today_post_views_count","16"),
("3599","2117","avada_post_views_count_today_date","02-07-2026"),
("3600","2121","_wp_page_template","100-width.php"),
("3601","2121","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3602","2121","fusion_builder_status","active"),
("3603","2121","_fusion_google_fonts",""),
("3604","2123","_wp_page_template","100-width.php"),
("3605","2123","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3606","2123","fusion_builder_status","active"),
("3607","2123","_fusion_google_fonts",""),
("3608","2125","_wp_page_template","100-width.php"),
("3609","2125","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3610","2125","fusion_builder_status","active"),
("3611","2125","_fusion_google_fonts",""),
("3612","2127","_wp_page_template","100-width.php"),
("3613","2127","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3614","2127","fusion_builder_status","active"),
("3615","2127","_fusion_google_fonts",""),
("3616","2119","avada_post_views_count","52"),
("3617","2119","avada_today_post_views_count","17"),
("3618","2119","avada_post_views_count_today_date","02-07-2026"),
("3619","2121","avada_post_views_count","50"),
("3620","2121","avada_today_post_views_count","19"),
("3621","2121","avada_post_views_count_today_date","02-07-2026"),
("3622","2123","avada_post_views_count","51"),
("3623","2123","avada_today_post_views_count","20"),
("3624","2123","avada_post_views_count_today_date","02-07-2026"),
("3625","2125","avada_post_views_count","53"),
("3626","2125","avada_today_post_views_count","16"),
("3627","2125","avada_post_views_count_today_date","02-07-2026"),
("3628","2127","avada_post_views_count","51"),
("3629","2127","avada_today_post_views_count","20"),
("3630","2127","avada_post_views_count_today_date","02-07-2026"),
("3631","2129","_wp_page_template","100-width.php"),
("3632","2129","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3633","2129","fusion_builder_status","active"),
("3634","2129","_fusion_google_fonts",""),
("3635","2131","_wp_page_template","100-width.php"),
("3636","2131","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3637","2131","fusion_builder_status","active"),
("3638","2131","_fusion_google_fonts",""),
("3639","2133","_wp_page_template","100-width.php"),
("3640","2133","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3641","2133","fusion_builder_status","active"),
("3642","2133","_fusion_google_fonts",""),
("3643","2135","_wp_page_template","100-width.php"),
("3644","2135","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3645","2135","fusion_builder_status","active"),
("3646","2135","_fusion_google_fonts",""),
("3647","2137","_wp_page_template","100-width.php"),
("3648","2137","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s:9:\"bg_repeat\";s:0:\"\";s:35:\"container_hundred_percent_animation\";s:0:\"\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:0:\"\";}"),
("3649","2137","fusion_builder_status","active"),
("3650","2137","_fusion_google_fonts",""),
("3651","2129","avada_post_views_count","47"),
("3652","2129","avada_today_post_views_count","14"),
("3653","2129","avada_post_views_count_today_date","02-07-2026"),
("3654","2131","avada_post_views_count","50"),
("3655","2131","avada_today_post_views_count","18"),
("3656","2131","avada_post_views_count_today_date","02-07-2026"),
("3657","2133","avada_post_views_count","53"),
("3658","2133","avada_today_post_views_count","14"),
("3659","2133","avada_post_views_count_today_date","02-07-2026"),
("3660","2135","avada_post_views_count","51"),
("3661","2135","avada_today_post_views_count","18"),
("3662","2135","avada_post_views_count_today_date","02-07-2026"),
("3663","2137","avada_post_views_count","51"),
("3664","2137","avada_today_post_views_count","19"),
("3665","2137","avada_post_views_count_today_date","02-07-2026"),
("3666","2164","_wp_page_template","100-width.php"),
("3667","2164","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";}"),
("3668","2164","fusion_builder_status","active"),
("3669","2166","_wp_page_template","100-width.php"),
("3670","2166","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";}"),
("3671","2166","fusion_builder_status","active"),
("3672","2168","_wp_page_template","100-width.php"),
("3673","2168","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";}"),
("3674","2168","fusion_builder_status","active"),
("3675","2170","_wp_page_template","100-width.php"),
("3676","2170","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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:0:\"\";s:14:\"page_title_bar\";s:7:\"default\";s:17:\"content_bg_repeat\";s:7:\"default\";}"),
("3677","2170","fusion_builder_status","active"),
("3678","2164","avada_post_views_count","51"),
("3679","2164","avada_today_post_views_count","9"),
("3680","2164","avada_post_views_count_today_date","02-07-2026"),
("3681","2166","avada_post_views_count","51"),
("3682","2166","avada_today_post_views_count","9"),
("3683","2166","avada_post_views_count_today_date","02-07-2026"),
("3684","2168","avada_post_views_count","50"),
("3685","2168","avada_today_post_views_count","9"),
("3686","2168","avada_post_views_count_today_date","02-07-2026"),
("3687","2170","avada_post_views_count","54"),
("3688","2170","avada_today_post_views_count","9"),
("3689","2170","avada_post_views_count_today_date","02-07-2026"),
("3690","2022","_wp_old_date","2026-06-21"),
("3691","2023","_wp_old_date","2026-06-21"),
("3692","2024","_wp_old_date","2026-06-21"),
("3693","2025","_wp_old_date","2026-06-21"),
("3696","2178","_wp_attached_file","2026/06/lip-filler-hero.jpg"),
("3697","2178","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2400;s:4:\"file\";s:27:\"2026/06/lip-filler-hero.jpg\";s:8:\"filesize\";i:615341;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7997;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"lip-filler-hero-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76522;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4028;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"lip-filler-hero-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97946;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"lip-filler-hero-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182966;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"lip-filler-hero-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:339512;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23671;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8491;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37915;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"lip-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1743;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7997;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26176;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"lip-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58754;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"lip-filler-hero-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111845;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:29:\"lip-filler-hero-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261325;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3700","2181","_wp_attached_file","2026/06/hero-face-beauty.jpg"),
("3701","2181","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:28:\"2026/06/hero-face-beauty.jpg\";s:8:\"filesize\";i:253521;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10789;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"hero-face-beauty-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5801;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44165;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"hero-face-beauty-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170169;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22826;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11321;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36478;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"hero-face-beauty-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2316;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6370;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16034;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29334;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"hero-face-beauty-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48395;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:29:\"hero-face-beauty-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103651;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3702","2182","_wp_attached_file","2026/06/hero-jaw-profile.jpg"),
("3703","2182","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2000;s:4:\"file\";s:28:\"2026/06/hero-jaw-profile.jpg\";s:8:\"filesize\";i:417215;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12460;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"hero-jaw-profile-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101869;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5420;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90588;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"hero-jaw-profile-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208867;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26623;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11643;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43961;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"hero-jaw-profile-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2111;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9599;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28943;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"hero-jaw-profile-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58532;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"hero-jaw-profile-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101569;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:30:\"hero-jaw-profile-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202205;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3704","2183","_wp_attached_file","2026/06/hero-eyes.jpg"),
("3705","2183","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:21:\"2026/06/hero-eyes.jpg\";s:8:\"filesize\";i:205309;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"hero-eyes-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9118;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"hero-eyes-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"hero-eyes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5023;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"hero-eyes-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42792;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"hero-eyes-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146430;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"hero-eyes-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21461;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"hero-eyes-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9741;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"hero-eyes-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35097;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"hero-eyes-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1849;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"hero-eyes-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4979;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"hero-eyes-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14576;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"hero-eyes-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28322;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:21:\"hero-eyes-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47060;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"hero-eyes-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94099;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3706","2184","_wp_attached_file","2026/06/hero-glow-skin.jpg"),
("3707","2184","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:26:\"2026/06/hero-glow-skin.jpg\";s:8:\"filesize\";i:222974;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9958;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"hero-glow-skin-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76541;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5602;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45931;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"hero-glow-skin-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156426;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23350;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10720;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38440;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"hero-glow-skin-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2173;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5596;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15523;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30043;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:26:\"hero-glow-skin-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50782;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:27:\"hero-glow-skin-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101997;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3708","2185","_wp_attached_file","2026/06/hero-facial-treatment.jpg"),
("3709","2185","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2166;s:4:\"file\";s:33:\"2026/06/hero-facial-treatment.jpg\";s:8:\"filesize\";i:264547;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-222x300.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11771;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"hero-facial-treatment-756x1024.jpg\";s:5:\"width\";i:756;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72190;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"hero-facial-treatment-768x1040.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1040;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73259;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"hero-facial-treatment-1135x1536.jpg\";s:5:\"width\";i:1135;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131527;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"hero-facial-treatment-1513x2048.jpg\";s:5:\"width\";i:1513;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204727;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19710;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10604;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32498;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"hero-facial-treatment-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2086;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-200x271.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10073;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-400x542.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28339;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:33:\"hero-facial-treatment-600x812.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:812;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51432;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:34:\"hero-facial-treatment-800x1083.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1083;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79358;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:35:\"hero-facial-treatment-1200x1625.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1625;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143888;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3710","2186","_wp_attached_file","2026/06/hero-clinic-injection.jpg"),
("3711","2186","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:995;s:4:\"file\";s:33:\"2026/06/hero-clinic-injection.jpg\";s:8:\"filesize\";i:42706;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3926;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"hero-clinic-injection-1024x637.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22544;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1944;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14567;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"hero-clinic-injection-1536x955.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:955;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42937;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9393;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4260;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12746;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"hero-clinic-injection-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1121;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-200x124.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2353;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-400x249.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:249;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5693;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10217;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:33:\"hero-clinic-injection-800x498.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15659;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:34:\"hero-clinic-injection-1200x746.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:746;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28747;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3712","2187","_wp_attached_file","2026/06/hero-hair.jpg"),
("3713","2187","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:987;s:4:\"file\";s:21:\"2026/06/hero-hair.jpg\";s:8:\"filesize\";i:215456;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"hero-hair-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10015;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"hero-hair-1024x632.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79010;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"hero-hair-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5706;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"hero-hair-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47566;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"hero-hair-1536x948.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160684;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"hero-hair-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27552;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"hero-hair-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11148;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"hero-hair-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41447;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"hero-hair-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2193;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"hero-hair-200x123.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5527;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"hero-hair-400x247.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15470;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:21:\"hero-hair-600x370.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30923;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:21:\"hero-hair-800x494.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52185;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"hero-hair-1200x740.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:740;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105607;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3714","2188","_wp_attached_file","2026/06/hero-iv-drip.jpg"),
("3715","2188","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2400;s:4:\"file\";s:24:\"2026/06/hero-iv-drip.jpg\";s:8:\"filesize\";i:223665;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6944;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"hero-iv-drip-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41271;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3185;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"hero-iv-drip-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49730;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"hero-iv-drip-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80812;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:26:\"hero-iv-drip-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136011;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9465;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5216;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16580;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"hero-iv-drip-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1525;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6944;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18285;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:24:\"hero-iv-drip-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33989;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:25:\"hero-iv-drip-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54152;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:26:\"hero-iv-drip-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108987;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3716","2189","_wp_attached_file","2026/06/hero-body-contour.jpg"),
("3717","2189","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2400;s:4:\"file\";s:29:\"2026/06/hero-body-contour.jpg\";s:8:\"filesize\";i:934951;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15258;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"hero-body-contour-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7164;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"hero-body-contour-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149727;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"hero-body-contour-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269646;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"hero-body-contour-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:491018;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33343;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14423;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52745;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"hero-body-contour-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2570;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15258;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45432;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"hero-body-contour-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93364;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"hero-body-contour-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174270;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:31:\"hero-body-contour-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:381155;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3718","2190","_wp_attached_file","2026/06/hero-clear-skin.jpg"),
("3719","2190","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1997;s:4:\"file\";s:27:\"2026/06/hero-clear-skin.jpg\";s:8:\"filesize\";i:466531;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13938;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"hero-clear-skin-820x1024.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5611;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97394;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"hero-clear-skin-1231x1536.jpg\";s:5:\"width\";i:1231;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224410;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24486;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11015;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40983;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"hero-clear-skin-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2046;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10624;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-400x499.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32336;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-600x749.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:749;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63974;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"hero-clear-skin-800x999.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:999;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107071;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:29:\"hero-clear-skin-1200x1498.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216321;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3720","2191","_wp_attached_file","2026/06/hero-microneedling.jpg"),
("3721","2191","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2400;s:4:\"file\";s:30:\"2026/06/hero-microneedling.jpg\";s:8:\"filesize\";i:629652;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8586;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"hero-microneedling-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4321;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"hero-microneedling-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96728;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"hero-microneedling-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179349;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"hero-microneedling-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:337224;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20803;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8680;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35317;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"hero-microneedling-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1674;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8586;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27047;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"hero-microneedling-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58692;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"hero-microneedling-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110113;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:32:\"hero-microneedling-1200x1800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:257074;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3722","2192","_wp_attached_file","2026/06/hero-fresh-confident.jpg"),
("3723","2192","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:2000;s:4:\"file\";s:32:\"2026/06/hero-fresh-confident.jpg\";s:8:\"filesize\";i:697866;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13365;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"hero-fresh-confident-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115159;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100400;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"hero-fresh-confident-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274874;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28703;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13104;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48361;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"hero-fresh-confident-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2130;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10254;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30219;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"hero-fresh-confident-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61717;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:33:\"hero-fresh-confident-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115819;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:34:\"hero-fresh-confident-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264780;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3724","2053","_thumbnail_id","2182"),
("3725","2051","_thumbnail_id","2644"),
("3726","2049","_thumbnail_id","2192"),
("3727","2047","_thumbnail_id","2192"),
("3728","2045","_thumbnail_id","2178"),
("3729","2043","_thumbnail_id","2182"),
("3730","2075","_thumbnail_id","2186"),
("3731","2073","_thumbnail_id","2183"),
("3732","2071","_thumbnail_id","2183"),
("3733","2069","_thumbnail_id","2181"),
("3734","2067","_thumbnail_id","2182"),
("3735","2065","_thumbnail_id","2181"),
("3736","2063","_thumbnail_id","2181"),
("3737","2061","_thumbnail_id","2182"),
("3738","2059","_thumbnail_id","2182"),
("3739","2057","_thumbnail_id","2181"),
("3740","2083","_thumbnail_id","2184"),
("3741","2081","_thumbnail_id","2184"),
("3742","2079","_thumbnail_id","2184"),
("3743","2077","_thumbnail_id","2184"),
("3744","2089","_thumbnail_id","2184"),
("3745","2087","_thumbnail_id","2184"),
("3746","2085","_thumbnail_id","2184"),
("3747","2093","_thumbnail_id","2181"),
("3748","2091","_thumbnail_id","2181"),
("3749","2099","_thumbnail_id","2191"),
("3750","2097","_thumbnail_id","2191"),
("3751","2095","_thumbnail_id","2191"),
("3752","2105","_thumbnail_id","2190"),
("3753","2103","_thumbnail_id","2184"),
("3754","2101","_thumbnail_id","2187"),
("3755","2117","_thumbnail_id","2188"),
("3756","2115","_thumbnail_id","2188"),
("3757","2113","_thumbnail_id","2188"),
("3758","2111","_thumbnail_id","2188"),
("3759","2109","_thumbnail_id","2188"),
("3760","2107","_thumbnail_id","2188"),
("3761","2127","_thumbnail_id","2189"),
("3762","2125","_thumbnail_id","2190"),
("3763","2123","_thumbnail_id","2184"),
("3764","2121","_thumbnail_id","2184"),
("3765","2119","_thumbnail_id","2187"),
("3766","2133","_thumbnail_id","2182"),
("3767","2131","_thumbnail_id","2189"),
("3768","2129","_thumbnail_id","2189"),
("3769","2135","_thumbnail_id","2190"),
("3770","2137","_thumbnail_id","2190"),
("3771","2170","_thumbnail_id","2189"),
("3772","2168","_thumbnail_id","2185"),
("3773","2166","_thumbnail_id","2186"),
("3774","2164","_thumbnail_id","2186"),
("3775","2057","_edit_lock","1783009191:1"),
("3777","2055","_edit_last","1"),
("3778","2053","_edit_lock","1783006106:1"),
("3779","2053","_edit_last","1"),
("3781","2051","_edit_last","1"),
("3783","2049","_edit_last","1"),
("3785","2047","_edit_last","1"),
("3787","2045","_edit_last","1"),
("3789","2043","_edit_last","1"),
("3792","2075","_edit_last","1"),
("3794","2073","_edit_last","1"),
("3796","2071","_edit_last","1"),
("3798","2069","_edit_last","1"),
("3800","2067","_edit_last","1"),
("3802","2065","_edit_last","1"),
("3804","2063","_edit_last","1"),
("3806","2061","_edit_last","1"),
("3808","2059","_edit_last","1"),
("3809","2057","_edit_last","1"),
("3811","2083","_edit_last","1"),
("3813","2081","_edit_last","1"),
("3815","2079","_edit_last","1"),
("3817","2077","_edit_last","1"),
("3818","2089","_edit_lock","1783006450:1"),
("3819","2089","_edit_last","1"),
("3821","2087","_edit_last","1"),
("3822","2085","_edit_lock","1782990246:1"),
("3823","2085","_edit_last","1"),
("3825","2093","_edit_last","1"),
("3827","2091","_edit_last","1"),
("3828","2099","_edit_lock","1783006466:1"),
("3829","2099","_edit_last","1"),
("3830","2097","_edit_lock","1783006460:1"),
("3831","2097","_edit_last","1"),
("3832","2095","_edit_lock","1783006456:1"),
("3833","2095","_edit_last","1"),
("3834","2105","_edit_lock","1782489650:1"),
("3835","2105","_edit_last","1"),
("3836","2103","_edit_lock","1782995653:1"),
("3837","2103","_edit_last","1"),
("3839","2101","_edit_last","1"),
("3841","2117","_edit_last","1"),
("3842","2115","_edit_lock","1783006549:1"),
("3843","2115","_edit_last","1"),
("3845","2113","_edit_last","1"),
("3847","2111","_edit_last","1"),
("3849","2109","_edit_last","1"),
("3850","2107","_edit_lock","1783006469:1"),
("3851","2107","_edit_last","1"),
("3853","2127","_edit_last","1"),
("3855","2125","_edit_last","1"),
("3857","2123","_edit_last","1"),
("3859","2121","_edit_last","1"),
("3861","2119","_edit_last","1"),
("3863","2133","_edit_last","1"),
("3864","2131","_edit_lock","1783006463:1"),
("3865","2131","_edit_last","1"),
("3866","2129","_edit_lock","1782261611:1"),
("3867","2129","_edit_last","1"),
("3868","2135","_edit_lock","1783006451:1"),
("3869","2135","_edit_last","1"),
("3870","2137","_edit_lock","1782990981:1"),
("3871","2137","_edit_last","1"),
("3873","2170","_edit_lock","1782261681:1"),
("3874","2170","_edit_last","1"),
("3875","2168","_edit_lock","1782261696:1"),
("3876","2168","_edit_last","1"),
("3877","2166","_edit_lock","1782261700:1"),
("3878","2166","_edit_last","1"),
("3879","2164","_edit_lock","1782261745:1"),
("3880","2164","_edit_last","1"),
("3881","1732","_edit_lock","1782261708:1"),
("3882","2314","_wp_attached_file","2026/06/radiesse-hand-before.jpg"),
("3883","2314","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:32:\"2026/06/radiesse-hand-before.jpg\";s:8:\"filesize\";i:740604;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14772;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"radiesse-hand-before-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132601;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118937;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32282;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13607;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52461;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"radiesse-hand-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1921;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10390;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38320;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"radiesse-hand-before-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78878;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:33:\"radiesse-hand-before-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127159;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3884","2315","_wp_attached_file","2026/06/hand-after.jpg"),
("3885","2315","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:22:\"2026/06/hand-after.jpg\";s:8:\"filesize\";i:648367;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"hand-after-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12911;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"hand-after-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112747;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"hand-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4891;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"hand-after-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101165;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:22:\"hand-after-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27608;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:22:\"hand-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11830;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:22:\"hand-after-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45487;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:20:\"hand-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1854;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:22:\"hand-after-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9265;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:22:\"hand-after-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32642;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:22:\"hand-after-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67297;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:23:\"hand-after-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108019;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3886","2316","_wp_attached_file","2026/06/calcium-0-before.jpg"),
("3887","2316","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:28:\"2026/06/calcium-0-before.jpg\";s:8:\"filesize\";i:626351;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13282;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"calcium-0-before-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104125;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5500;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94010;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24537;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11662;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41992;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"calcium-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2102;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10036;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31857;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"calcium-0-before-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63529;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"calcium-0-before-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100555;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3888","2317","_wp_attached_file","2026/06/calcium-0-after.jpg"),
("3889","2317","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:27:\"2026/06/calcium-0-after.jpg\";s:8:\"filesize\";i:674826;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13158;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"calcium-0-after-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112181;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5234;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101058;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24193;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11489;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43384;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"calcium-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1979;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9713;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32794;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"calcium-0-after-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67379;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"calcium-0-after-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107804;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3890","2318","_wp_attached_file","2026/06/calcium-1-before.jpg"),
("3891","2318","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:28:\"2026/06/calcium-1-before.jpg\";s:8:\"filesize\";i:930307;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13842;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"calcium-1-before-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5482;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106172;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27392;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12108;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47431;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"calcium-1-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2055;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10386;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33738;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"calcium-1-before-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69589;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"calcium-1-before-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114084;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3892","2319","_wp_attached_file","2026/06/calcium-1-after.jpg"),
("3893","2319","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:27:\"2026/06/calcium-1-after.jpg\";s:8:\"filesize\";i:874042;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14019;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"calcium-1-after-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5723;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92550;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26782;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12140;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45022;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"calcium-1-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2212;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10680;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31872;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"calcium-1-after-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62328;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"calcium-1-after-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98873;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3894","2320","_wp_attached_file","2026/06/lip-0-before.jpg"),
("3895","2320","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:24:\"2026/06/lip-0-before.jpg\";s:8:\"filesize\";i:450505;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"lip-0-before-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9361;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"lip-0-before-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63621;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"lip-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3959;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"lip-0-before-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57621;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"lip-0-before-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17370;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"lip-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8208;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"lip-0-before-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27090;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"lip-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1660;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"lip-0-before-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7095;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"lip-0-before-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21533;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:24:\"lip-0-before-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40086;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:25:\"lip-0-before-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61207;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3896","2321","_wp_attached_file","2026/06/lip-0-after.jpg"),
("3897","2321","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:23:\"2026/06/lip-0-after.jpg\";s:8:\"filesize\";i:572362;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"lip-0-after-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10511;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"lip-0-after-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"lip-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4355;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"lip-0-after-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75896;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"lip-0-after-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22772;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"lip-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9686;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:23:\"lip-0-after-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36535;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"lip-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1775;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"lip-0-after-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7868;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"lip-0-after-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26020;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:23:\"lip-0-after-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51706;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:24:\"lip-0-after-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80755;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3898","2322","_wp_attached_file","2026/06/lip-1-before.jpg"),
("3899","2322","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:24:\"2026/06/lip-1-before.jpg\";s:8:\"filesize\";i:610243;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"lip-1-before-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10636;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"lip-1-before-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82218;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"lip-1-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4196;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"lip-1-before-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74270;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"lip-1-before-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22947;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"lip-1-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9688;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"lip-1-before-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35908;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"lip-1-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1724;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"lip-1-before-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7885;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"lip-1-before-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25689;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:24:\"lip-1-before-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50641;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:25:\"lip-1-before-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79093;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3900","2323","_wp_attached_file","2026/06/lip-1-after.jpg"),
("3901","2323","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1350;s:4:\"file\";s:23:\"2026/06/lip-1-after.jpg\";s:8:\"filesize\";i:621335;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"lip-1-after-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11086;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"lip-1-after-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92979;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"lip-1-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"lip-1-after-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83537;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"lip-1-after-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24818;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"lip-1-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10346;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:23:\"lip-1-after-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40355;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"lip-1-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1747;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"lip-1-after-200x250.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8180;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"lip-1-after-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27650;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:23:\"lip-1-after-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56255;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:24:\"lip-1-after-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89260;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3902","2376","_wp_attached_file","2026/06/botox-0-before.jpg"),
("3903","2376","_wp_attachment_metadata","a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:26:\"2026/06/botox-0-before.jpg\";s:8:\"filesize\";i:103705;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"botox-0-before-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10524;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"botox-0-before-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70136;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"botox-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5108;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"botox-0-before-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70136;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"botox-0-before-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19266;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"botox-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9648;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"botox-0-before-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32969;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"botox-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2134;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"botox-0-before-200x267.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8677;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"botox-0-before-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24397;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"botox-0-before-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46913;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"botox-0-before-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74749;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3904","2377","_wp_attached_file","2026/06/twac-box.jpg"),
("3905","2377","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:20:\"2026/06/twac-box.jpg\";s:8:\"filesize\";i:55536;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"twac-box-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5099;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"twac-box-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35654;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"twac-box-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2046;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"twac-box-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21859;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"twac-box-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69512;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"twac-box-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9617;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"twac-box-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4671;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"twac-box-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15351;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"twac-box-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1118;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"twac-box-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3065;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"twac-box-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7555;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"twac-box-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14846;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"twac-box-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23420;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:22:\"twac-box-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45984;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3906","2379","_wp_attached_file","2026/06/plinest-box.jpg"),
("3907","2379","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:23:\"2026/06/plinest-box.jpg\";s:8:\"filesize\";i:109988;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"plinest-box-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8342;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"plinest-box-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66087;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"plinest-box-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3254;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"plinest-box-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41744;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"plinest-box-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122974;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"plinest-box-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12881;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"plinest-box-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6978;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:23:\"plinest-box-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24353;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"plinest-box-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1432;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"plinest-box-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4645;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"plinest-box-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13948;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:23:\"plinest-box-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28204;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:23:\"plinest-box-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46214;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:25:\"plinest-box-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85546;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3908","2384","_wp_attached_file","2026/06/botox-0-after.jpg"),
("3909","2384","_wp_attachment_metadata","a:6:{s:5:\"width\";i:960;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2026/06/botox-0-after.jpg\";s:8:\"filesize\";i:109938;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"botox-0-after-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10623;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"botox-0-after-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73085;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"botox-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5065;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"botox-0-after-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73085;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:25:\"botox-0-after-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19701;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:25:\"botox-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9504;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:25:\"botox-0-after-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33166;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:23:\"botox-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2144;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:25:\"botox-0-after-200x267.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8750;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:25:\"botox-0-after-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24889;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:25:\"botox-0-after-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48685;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:26:\"botox-0-after-800x1067.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78055;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3910","2386","_wp_attached_file","2026/06/jawline-0-before.jpg"),
("3911","2386","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1280;s:4:\"file\";s:28:\"2026/06/jawline-0-before.jpg\";s:8:\"filesize\";i:94211;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"jawline-0-before-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8164;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"jawline-0-before-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"jawline-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4667;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"jawline-0-before-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14343;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"jawline-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8706;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"jawline-0-before-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30532;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"jawline-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2001;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"jawline-0-before-200x400.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12322;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"jawline-0-before-400x800.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39670;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"jawline-0-before-600x1200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81237;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3912","2387","_wp_attached_file","2026/06/jawline-0-after.jpg"),
("3913","2387","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1280;s:4:\"file\";s:27:\"2026/06/jawline-0-after.jpg\";s:8:\"filesize\";i:114523;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"jawline-0-after-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9743;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"jawline-0-after-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72051;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"jawline-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5363;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"jawline-0-after-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18806;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"jawline-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10693;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"jawline-0-after-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38643;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"jawline-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2155;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"jawline-0-after-200x400.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14699;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"jawline-0-after-400x800.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47417;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"jawline-0-after-600x1200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94172;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3914","2389","_wp_attached_file","2026/06/hand-0-before.jpg"),
("3915","2389","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:1130;s:4:\"file\";s:25:\"2026/06/hand-0-before.jpg\";s:8:\"filesize\";i:95604;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"hand-0-before-149x300.jpg\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8059;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"hand-0-before-510x1024.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"hand-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4234;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:25:\"hand-0-before-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19585;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:25:\"hand-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8970;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:25:\"hand-0-before-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31673;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:23:\"hand-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1744;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:25:\"hand-0-before-200x401.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12521;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:25:\"hand-0-before-400x803.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:803;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41851;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3916","2390","_wp_attached_file","2026/06/hand-0-after.jpg"),
("3917","2390","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:1130;s:4:\"file\";s:24:\"2026/06/hand-0-after.jpg\";s:8:\"filesize\";i:113210;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"hand-0-after-149x300.jpg\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8660;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"hand-0-after-510x1024.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66972;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"hand-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4689;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"hand-0-after-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20800;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"hand-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10086;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"hand-0-after-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37812;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"hand-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1820;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"hand-0-after-200x401.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13716;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"hand-0-after-400x803.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:803;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44535;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3918","2392","_wp_attached_file","2026/06/pdrn-0-before.jpg"),
("3919","2392","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2026/06/pdrn-0-before.jpg\";s:8:\"filesize\";i:100506;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"pdrn-0-before-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8951;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"pdrn-0-before-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67134;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"pdrn-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4537;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:25:\"pdrn-0-before-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14696;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:25:\"pdrn-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8498;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:25:\"pdrn-0-before-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26371;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:23:\"pdrn-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1730;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:25:\"pdrn-0-before-200x400.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13940;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:25:\"pdrn-0-before-400x800.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45229;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"pdrn-0-before-600x1200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85658;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3920","2393","_wp_attached_file","2026/06/pdrn-0-after.jpg"),
("3921","2393","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2026/06/pdrn-0-after.jpg\";s:8:\"filesize\";i:92057;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"pdrn-0-after-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7908;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"pdrn-0-after-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61982;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"pdrn-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3758;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:24:\"pdrn-0-after-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12054;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:24:\"pdrn-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6745;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:24:\"pdrn-0-after-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20895;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:22:\"pdrn-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1598;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:24:\"pdrn-0-after-200x400.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12316;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:24:\"pdrn-0-after-400x800.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41186;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:25:\"pdrn-0-after-600x1200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78945;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3922","2395","_wp_attached_file","2026/06/pigment-0-before.jpg"),
("3923","2395","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1231;s:4:\"file\";s:28:\"2026/06/pigment-0-before.jpg\";s:8:\"filesize\";i:42336;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"pigment-0-before-156x300.jpg\";s:5:\"width\";i:156;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7348;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"pigment-0-before-532x1024.jpg\";s:5:\"width\";i:532;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"pigment-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3369;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"pigment-0-before-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9725;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"pigment-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5911;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"pigment-0-before-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17096;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"pigment-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1437;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"pigment-0-before-200x385.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10399;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"pigment-0-before-400x769.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27584;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"pigment-0-before-600x1154.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49569;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3924","2396","_wp_attached_file","2026/06/pigment-0-after.jpg"),
("3925","2396","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1231;s:4:\"file\";s:27:\"2026/06/pigment-0-after.jpg\";s:8:\"filesize\";i:41215;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"pigment-0-after-156x300.jpg\";s:5:\"width\";i:156;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7000;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"pigment-0-after-532x1024.jpg\";s:5:\"width\";i:532;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"pigment-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3072;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"pigment-0-after-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8952;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"pigment-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5397;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"pigment-0-after-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15548;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"pigment-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1359;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"pigment-0-after-200x385.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9998;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"pigment-0-after-400x769.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27109;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"pigment-0-after-600x1154.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48490;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3926","2398","_wp_attached_file","2026/06/booster-0-before.jpg"),
("3927","2398","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1101;s:4:\"file\";s:28:\"2026/06/booster-0-before.jpg\";s:8:\"filesize\";i:105023;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"booster-0-before-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10670;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"booster-0-before-595x1024.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84403;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"booster-0-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5293;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"booster-0-before-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26990;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"booster-0-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11046;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"booster-0-before-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39233;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"booster-0-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2156;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"booster-0-before-200x344.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13192;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"booster-0-before-400x688.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42621;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"booster-0-before-600x1032.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85305;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3928","2399","_wp_attached_file","2026/06/booster-0-after.jpg"),
("3929","2399","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1101;s:4:\"file\";s:27:\"2026/06/booster-0-after.jpg\";s:8:\"filesize\";i:110614;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"booster-0-after-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12098;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"booster-0-after-595x1024.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89640;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"booster-0-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5713;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"booster-0-after-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27688;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"booster-0-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11683;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"booster-0-after-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39664;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"booster-0-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2253;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"booster-0-after-200x344.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15046;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"booster-0-after-400x688.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46787;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"booster-0-after-600x1032.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90216;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("3930","2403","_wp_attached_file","2026/06/Rejuran.jpeg"),
("3931","2403","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2026/06/Rejuran.jpeg\";s:8:\"filesize\";i:92943;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Rejuran-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5016;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Rejuran-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Rejuran-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3038;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Rejuran-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18908;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"Rejuran-669x272.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10878;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"Rejuran-320x202.jpeg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"Rejuran-700x441.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15785;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"Rejuran-66x66.jpeg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1303;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"Rejuran-200x150.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3114;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"Rejuran-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7428;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"Rejuran-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13878;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"Rejuran-800x600.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20026;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3932","2406","_wp_attached_file","2026/06/Radiesse.jpg"),
("3933","2406","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2026/06/Radiesse.jpg\";s:8:\"filesize\";i:154116;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Radiesse-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5295;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Radiesse-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Radiesse-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2995;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Radiesse-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21828;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"Radiesse-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12446;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"Radiesse-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5597;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"Radiesse-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17663;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"Radiesse-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1377;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"Radiesse-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3173;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"Radiesse-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7982;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"Radiesse-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14865;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"Radiesse-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23897;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3934","2407","_wp_attached_file","2026/06/PRP-before.jpg"),
("3935","2407","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:22:\"2026/06/PRP-before.jpg\";s:8:\"filesize\";i:168671;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"PRP-before-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17134;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PRP-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6198;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:22:\"PRP-before-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30686;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:22:\"PRP-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16683;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:22:\"PRP-before-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43515;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:20:\"PRP-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2008;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:22:\"PRP-before-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11786;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:22:\"PRP-before-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38599;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3936","2408","_wp_attached_file","2026/06/PRP-after.jpg"),
("3937","2408","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:21:\"2026/06/PRP-after.jpg\";s:8:\"filesize\";i:205446;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"PRP-after-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18318;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PRP-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6514;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:21:\"PRP-after-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33191;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:21:\"PRP-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16988;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:21:\"PRP-after-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48685;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:19:\"PRP-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2221;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:21:\"PRP-after-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12489;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:21:\"PRP-after-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42220;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3938","2409","_wp_attached_file","2026/06/Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair-.jpg"),
("3939","2409","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:107:\"2026/06/Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair-.jpg\";s:8:\"filesize\";i:76006;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14578;}s:5:\"large\";a:5:{s:4:\"file\";s:109:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5614;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56934;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21880;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11429;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35402;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:105:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2150;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8187;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21926;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39808;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:107:\"Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair--800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60435;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3940","2412","_wp_attached_file","2026/06/Sculptra.jpg"),
("3941","2412","_wp_attachment_metadata","a:6:{s:5:\"width\";i:838;s:6:\"height\";i:560;s:4:\"file\";s:20:\"2026/06/Sculptra.jpg\";s:8:\"filesize\";i:256837;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Sculptra-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11339;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Sculptra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5501;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Sculptra-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48625;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"Sculptra-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27456;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"Sculptra-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12149;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:20:\"Sculptra-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40732;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"Sculptra-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2015;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"Sculptra-200x134.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6267;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:20:\"Sculptra-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17476;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:20:\"Sculptra-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33039;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:20:\"Sculptra-800x535.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51379;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3942","2414","_wp_attached_file","2026/06/Sculptra-before-01.jpg"),
("3943","2414","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Sculptra-before-01.jpg\";s:8:\"filesize\";i:124388;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4472;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14727;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9073;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24147;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sculptra-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1766;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8019;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23840;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3944","2415","_wp_attached_file","2026/06/Sculptra-after-01.jpg"),
("3945","2415","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Sculptra-after-01.jpg\";s:8:\"filesize\";i:134248;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4770;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15647;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9587;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26348;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Sculptra-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1861;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8629;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25747;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3946","2416","_wp_attached_file","2026/06/Sculptra-before-02.jpg"),
("3947","2416","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Sculptra-before-02.jpg\";s:8:\"filesize\";i:125144;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10515;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4041;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14161;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7911;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23599;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sculptra-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1769;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7446;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22757;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3948","2417","_wp_attached_file","2026/06/Sculptra-after-02.jpg"),
("3949","2417","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Sculptra-after-02.jpg\";s:8:\"filesize\";i:126683;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10945;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4127;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14143;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8193;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25378;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Sculptra-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1719;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7637;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24383;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3950","2418","_wp_attached_file","2026/06/Sculptra-before-03.jpg"),
("3951","2418","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Sculptra-before-03.jpg\";s:8:\"filesize\";i:143906;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12138;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4958;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14504;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8950;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27308;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sculptra-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1994;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9025;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26711;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3952","2419","_wp_attached_file","2026/06/Sculptra-after-03.jpg"),
("3953","2419","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Sculptra-after-03.jpg\";s:8:\"filesize\";i:142479;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11930;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4735;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13894;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8432;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26886;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Sculptra-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1912;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8704;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26372;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3954","2420","_wp_attached_file","2026/06/Sculptra-before-04.jpg"),
("3955","2420","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Sculptra-before-04.jpg\";s:8:\"filesize\";i:134846;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-04-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11264;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4179;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-04-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19245;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10736;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-04-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26387;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sculptra-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1622;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-04-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7962;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-04-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24953;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3956","2421","_wp_attached_file","2026/06/Sculptra-after-04.jpg"),
("3957","2421","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Sculptra-after-04.jpg\";s:8:\"filesize\";i:134130;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-04-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10880;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4259;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-04-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17801;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9799;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-04-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26500;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Sculptra-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1752;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-04-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7816;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-04-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24976;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3958","2422","_wp_attached_file","2026/06/Sculptra-before-05.jpg"),
("3959","2422","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Sculptra-before-05.jpg\";s:8:\"filesize\";i:139983;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-05-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4864;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-05-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18950;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11273;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-05-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29534;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sculptra-before-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1696;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-05-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9153;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-05-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28496;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3960","2423","_wp_attached_file","2026/06/Sculptra-after-05.jpg"),
("3961","2423","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Sculptra-after-05.jpg\";s:8:\"filesize\";i:124311;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-05-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11220;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4360;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-05-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15482;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9611;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-05-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23891;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Sculptra-after-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1611;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-05-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8021;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-05-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23421;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3964","2428","_wp_page_template","100-width.php"),
("3965","2428","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("3966","2428","fusion_builder_status","active"),
("3967","2428","_fusion_google_fonts",""),
("3970","2428","_edit_last","1"),
("3971","2428","avada_post_views_count","53"),
("3972","2428","avada_today_post_views_count","15"),
("3973","2428","avada_post_views_count_today_date","02-07-2026"),
("3977","2439","_wp_attached_file","2026/06/Aesthefill.jpg"),
("3978","2439","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:22:\"2026/06/Aesthefill.jpg\";s:8:\"filesize\";i:213432;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Aesthefill-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6717;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Aesthefill-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Aesthefill-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3632;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Aesthefill-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29527;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:22:\"Aesthefill-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17954;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:22:\"Aesthefill-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7269;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:22:\"Aesthefill-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24923;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:20:\"Aesthefill-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1495;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:22:\"Aesthefill-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3731;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:22:\"Aesthefill-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10531;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:22:\"Aesthefill-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20475;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:22:\"Aesthefill-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31585;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3979","2091","_edit_lock","1783008355:1"),
("3981","2444","_wp_attached_file","2026/06/PRP-Face-Rejuvenation-after.jpg"),
("3982","2444","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:39:\"2026/06/PRP-Face-Rejuvenation-after.jpg\";s:8:\"filesize\";i:92836;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6908;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2943;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9793;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5907;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15299;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"PRP-Face-Rejuvenation-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1387;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5011;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14929;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3983","2445","_wp_attached_file","2026/06/PRP-Face-Rejuvenation-before.jpg"),
("3984","2445","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:40:\"2026/06/PRP-Face-Rejuvenation-before.jpg\";s:8:\"filesize\";i:102395;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7622;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3323;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11539;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6919;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17490;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"PRP-Face-Rejuvenation-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1486;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5473;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16618;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3985","2446","_wp_attached_file","2026/06/PRP-Face-Rejuvenation.jpeg"),
("3986","2446","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:34:\"2026/06/PRP-Face-Rejuvenation.jpeg\";s:8:\"filesize\";i:203442;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11095;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"PRP-Face-Rejuvenation-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4816;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57315;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"PRP-Face-Rejuvenation-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192195;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-669x272.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28174;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-320x202.jpeg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11934;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-700x441.jpeg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46699;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"PRP-Face-Rejuvenation-66x66.jpeg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1760;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-200x133.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5674;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-400x267.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18229;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36769;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:34:\"PRP-Face-Rejuvenation-800x534.jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63733;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:35:\"PRP-Face-Rejuvenation-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129134;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3987","2450","_wp_attached_file","2026/06/PRP-Face-Rejuvenation-after-1.jpg"),
("3988","2450","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:41:\"2026/06/PRP-Face-Rejuvenation-after-1.jpg\";s:8:\"filesize\";i:108055;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9044;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4217;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12687;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7989;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19370;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1853;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6847;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17914;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3989","2451","_wp_attached_file","2026/06/PRP-Face-Rejuvenation-before-1.jpg"),
("3990","2451","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:42:\"2026/06/PRP-Face-Rejuvenation-before-1.jpg\";s:8:\"filesize\";i:103788;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8744;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4099;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12187;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7768;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18481;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1818;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6602;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17554;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3992","2455","_wp_attached_file","2026/06/Radiesse-after-06.jpg"),
("3993","2455","_wp_attachment_metadata","a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1320;s:4:\"file\";s:29:\"2026/06/Radiesse-after-06.jpg\";s:8:\"filesize\";i:527960;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12276;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Radiesse-after-06-621x1024.jpg\";s:5:\"width\";i:621;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100205;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5799;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Radiesse-after-06-768x1267.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141039;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29977;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13701;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48957;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1867;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-200x330.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14621;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-400x660.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50116;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-06-600x990.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:990;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95775;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3994","2456","_wp_attached_file","2026/06/Radiesse-before-03.jpg"),
("3995","2456","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Radiesse-before-03.jpg\";s:8:\"filesize\";i:199329;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15325;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5873;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24600;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12814;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39806;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2184;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10944;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34769;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3996","2457","_wp_attached_file","2026/06/Radiesse-after-03.jpg"),
("3997","2457","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Radiesse-after-03.jpg\";s:8:\"filesize\";i:219085;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6501;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27504;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14301;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45716;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2331;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12259;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39886;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("3998","2458","_wp_attached_file","2026/06/Radiesse-before-04.jpg"),
("3999","2458","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Radiesse-before-04.jpg\";s:8:\"filesize\";i:184015;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-04-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16349;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5806;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-04-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23352;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12625;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-04-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40081;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2157;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-04-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11124;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-04-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36363;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4000","2459","_wp_attached_file","2026/06/Radiesse-after-04.jpg"),
("4001","2459","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Radiesse-after-04.jpg\";s:8:\"filesize\";i:170984;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-04-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5391;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-04-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19550;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10949;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-04-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32960;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2164;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-04-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10305;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-04-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31024;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4002","2460","_wp_attached_file","2026/06/Radiesse-before-05.jpg"),
("4003","2460","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Radiesse-before-05.jpg\";s:8:\"filesize\";i:185219;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-05-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5379;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-05-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22777;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11849;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-05-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37803;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2137;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-05-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9732;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-05-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33097;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4004","2461","_wp_attached_file","2026/06/Radiesse-after-05.jpg"),
("4005","2461","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Radiesse-after-05.jpg\";s:8:\"filesize\";i:215690;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-05-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5643;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-05-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24265;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12646;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-05-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42243;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2118;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-05-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10662;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-05-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37575;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4006","2462","_wp_attached_file","2026/06/Radiesse-before-06.jpg"),
("4007","2462","_wp_attachment_metadata","a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1320;s:4:\"file\";s:30:\"2026/06/Radiesse-before-06.jpg\";s:8:\"filesize\";i:414399;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14008;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Radiesse-before-06-621x1024.jpg\";s:5:\"width\";i:621;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6234;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Radiesse-before-06-768x1267.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170652;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33675;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15526;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56792;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1930;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-200x330.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16787;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-400x660.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60480;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-06-600x990.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:990;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116441;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4008","2465","_wp_attached_file","2026/06/Lip-Filler-before-03.jpg"),
("4009","2465","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-03.jpg\";s:8:\"filesize\";i:167558;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19783;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10537;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30061;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1670;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8018;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27282;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4010","2466","_wp_attached_file","2026/06/Lip-Filler-after-03.jpg"),
("4011","2466","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-03.jpg\";s:8:\"filesize\";i:165768;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11694;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19486;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10324;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29801;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1766;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8200;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27115;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4012","2467","_wp_attached_file","2026/06/Lip-Filler-before-04.jpg"),
("4013","2467","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-04.jpg\";s:8:\"filesize\";i:141083;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-04-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12593;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4648;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-04-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19519;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11409;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-04-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30024;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1667;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-04-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8754;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-04-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28304;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4014","2468","_wp_attached_file","2026/06/Lip-Filler-after-04.jpg"),
("4015","2468","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-04.jpg\";s:8:\"filesize\";i:146656;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-04-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13578;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5275;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-04-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20766;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12414;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-04-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31249;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1833;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-04-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9634;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-04-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29379;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4016","2469","_wp_attached_file","2026/06/Lip-Filler-before-05.jpg"),
("4017","2469","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-05.jpg\";s:8:\"filesize\";i:137355;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-05-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4711;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-05-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19638;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11646;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-05-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29294;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1674;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-05-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8611;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-05-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27234;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4018","2470","_wp_attached_file","2026/06/Lip-Filler-after-05.jpg"),
("4019","2470","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-05.jpg\";s:8:\"filesize\";i:160530;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-05-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5285;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-05-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22269;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12757;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-05-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34231;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1870;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-05-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9583;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-05-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31419;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4020","2471","_wp_attached_file","2026/06/Lip-Filler-before-06.jpg"),
("4021","2471","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-06.jpg\";s:8:\"filesize\";i:131515;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-06-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11372;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4349;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-06-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18972;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10941;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-06-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26191;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1655;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-06-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8027;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-06-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24535;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4022","2472","_wp_attached_file","2026/06/Lip-Filler-after-06.jpg"),
("4023","2472","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-06.jpg\";s:8:\"filesize\";i:149711;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-06-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4518;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-06-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21990;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12044;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-06-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30859;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1625;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-06-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8552;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-06-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28078;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4024","2474","_wp_attached_file","2026/06/Face-Contouring-before.jpg"),
("4025","2474","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:34:\"2026/06/Face-Contouring-before.jpg\";s:8:\"filesize\";i:117593;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4611;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15312;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9561;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22621;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Face-Contouring-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1853;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7904;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21913;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4026","2475","_wp_attached_file","2026/06/Face-Contouring-after.jpg"),
("4027","2475","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:33:\"2026/06/Face-Contouring-after.jpg\";s:8:\"filesize\";i:118560;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10716;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4564;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15626;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9533;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22676;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Face-Contouring-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1878;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7952;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22064;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4028","2477","_wp_attached_file","2026/06/Chin-Filler-after.jpg"),
("4029","2477","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Chin-Filler-after.jpg\";s:8:\"filesize\";i:98632;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Chin-Filler-after-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8883;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Chin-Filler-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3922;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Chin-Filler-after-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10828;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Chin-Filler-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7025;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Chin-Filler-after-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18035;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Chin-Filler-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1655;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Chin-Filler-after-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6540;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Chin-Filler-after-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17947;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4030","2478","_wp_attached_file","2026/06/Face-Contouring-before-02.jpg"),
("4031","2478","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:37:\"2026/06/Face-Contouring-before-02.jpg\";s:8:\"filesize\";i:118351;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4490;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15752;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9410;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23586;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Face-Contouring-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1723;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7973;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22771;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4032","2479","_wp_attached_file","2026/06/Face-Contouring-after-02.jpg"),
("4033","2479","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:36:\"2026/06/Face-Contouring-after-02.jpg\";s:8:\"filesize\";i:122268;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4597;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16084;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9531;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24591;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1768;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8075;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23073;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4034","2480","_wp_attached_file","2026/06/Chin-Filler-before.jpg"),
("4035","2480","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Chin-Filler-before.jpg\";s:8:\"filesize\";i:104920;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Chin-Filler-before-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9519;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Chin-Filler-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4072;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Chin-Filler-before-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11767;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Chin-Filler-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7540;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Chin-Filler-before-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19974;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Chin-Filler-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1683;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Chin-Filler-before-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7037;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Chin-Filler-before-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19510;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4036","2484","_wp_attached_file","2026/06/Temple-Filler-before.jpg"),
("4037","2484","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Temple-Filler-before.jpg\";s:8:\"filesize\";i:128784;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-before-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4142;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-before-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13570;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8186;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-before-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23220;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Temple-Filler-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1699;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-before-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7378;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-before-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22941;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4038","2485","_wp_attached_file","2026/06/Temple-Filler-after.jpg"),
("4039","2485","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Temple-Filler-after.jpg\";s:8:\"filesize\";i:151220;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Temple-Filler-after-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13441;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Temple-Filler-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5087;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Temple-Filler-after-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18477;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Temple-Filler-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10673;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Temple-Filler-after-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31524;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Temple-Filler-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1927;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Temple-Filler-after-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9409;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Temple-Filler-after-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30153;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4040","2486","_wp_attached_file","2026/06/Temple-Filler-after-02.jpg"),
("4041","2486","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:34:\"2026/06/Temple-Filler-after-02.jpg\";s:8:\"filesize\";i:168428;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Temple-Filler-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14301;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Temple-Filler-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5322;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"Temple-Filler-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19899;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"Temple-Filler-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10913;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"Temple-Filler-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34403;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Temple-Filler-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2173;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"Temple-Filler-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10203;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"Temple-Filler-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32072;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4042","2487","_wp_attached_file","2026/06/Temple-Filler-before-02.jpg"),
("4043","2487","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:35:\"2026/06/Temple-Filler-before-02.jpg\";s:8:\"filesize\";i:145449;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Temple-Filler-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11853;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Temple-Filler-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4702;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Temple-Filler-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16842;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Temple-Filler-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9585;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Temple-Filler-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28467;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Temple-Filler-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2022;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Temple-Filler-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8596;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Temple-Filler-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26765;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4044","2489","_wp_attached_file","2026/06/Jawline-Filler-before-01.jpg"),
("4045","2489","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-01.jpg\";s:8:\"filesize\";i:163226;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8905;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3325;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15275;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7350;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25419;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1535;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4792;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14147;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-01-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27783;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4046","2490","_wp_attached_file","2026/06/Jawline-Filler-after-01.jpg"),
("4047","2490","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-01.jpg\";s:8:\"filesize\";i:214792;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3731;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18432;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8344;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30904;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1534;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5316;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16976;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-01-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34416;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4048","2491","_wp_attached_file","2026/06/Jawline-Filler-before-02.jpg"),
("4049","2491","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-02.jpg\";s:8:\"filesize\";i:212578;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11129;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3772;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19599;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8958;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32221;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1521;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5551;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17775;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-02-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35054;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4050","2492","_wp_attached_file","2026/06/Jawline-Filler-after-02.jpg"),
("4051","2492","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-02.jpg\";s:8:\"filesize\";i:194986;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3636;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15916;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7782;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26681;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1579;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5276;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15643;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-02-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29992;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4052","2493","_wp_attached_file","2026/06/Jawline-Filler-before-03.jpg"),
("4053","2493","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-03.jpg\";s:8:\"filesize\";i:165129;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8538;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3173;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13885;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6720;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22813;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1399;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4422;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13420;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-03-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25538;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4054","2494","_wp_attached_file","2026/06/Jawline-Filler-after-03.jpg"),
("4055","2494","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-03.jpg\";s:8:\"filesize\";i:153240;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8152;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3329;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12521;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6716;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20727;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1489;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4498;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12261;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-03-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22605;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4056","2495","_wp_attached_file","2026/06/Jawline-Filler-before-04.jpg"),
("4057","2495","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-04.jpg\";s:8:\"filesize\";i:163484;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8505;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3239;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13744;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6671;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22071;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1451;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4551;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12867;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-04-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24317;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4058","2496","_wp_attached_file","2026/06/Jawline-Filler-after-04.jpg"),
("4059","2496","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-04.jpg\";s:8:\"filesize\";i:174327;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3385;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14819;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7124;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24194;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1474;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4690;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13661;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-04-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26247;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4060","2497","_wp_attached_file","2026/06/Jawline-Filler-before-05.jpg"),
("4061","2497","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-05.jpg\";s:8:\"filesize\";i:224033;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11600;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3964;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20685;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9434;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34213;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1596;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5800;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18638;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-05-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36854;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4062","2498","_wp_attached_file","2026/06/Jawline-Filler-after-05.jpg"),
("4063","2498","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-05.jpg\";s:8:\"filesize\";i:201200;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10595;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3766;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16297;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8427;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28489;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1539;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5502;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16864;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-05-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32057;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("4064","2499","_wp_attached_file","2026/06/Jawline-Filler-before-06.jpg"),
("4065","2499","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-06.jpg\";s:8:\"filesize\";i:194618;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3750;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15466;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8107;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26782;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1570;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5416;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16253;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-06-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30767;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4066","2500","_wp_attached_file","2026/06/Jawline-Filler-after-06.jpg"),
("4067","2500","_wp_attachment_metadata","a:6:{s:5:\"width\";i:746;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-06.jpg\";s:8:\"filesize\";i:192079;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10108;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3615;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16099;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8051;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26549;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1501;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-200x172.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5279;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15870;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-06-600x515.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30324;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4068","2067","_edit_lock","1783009207:1"),
("4069","2503","_wp_attached_file","2026/06/Face-Contouring-after-03.jpg"),
("4070","2503","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:36:\"2026/06/Face-Contouring-after-03.jpg\";s:8:\"filesize\";i:129130;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11494;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4571;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14969;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8865;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25033;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1853;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8278;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24335;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4071","2504","_wp_attached_file","2026/06/Face-Contouring-before-03.jpg"),
("4072","2504","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:37:\"2026/06/Face-Contouring-before-03.jpg\";s:8:\"filesize\";i:134928;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11699;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4568;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15146;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8824;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26746;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Face-Contouring-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1849;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8440;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25546;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4073","2506","_wp_attached_file","2026/06/Under-Eye-Filler-after-02.jpg"),
("4074","2506","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:37:\"2026/06/Under-Eye-Filler-after-02.jpg\";s:8:\"filesize\";i:130176;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11381;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4465;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16101;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9426;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26380;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Under-Eye-Filler-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1689;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8045;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24790;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4075","2507","_wp_attached_file","2026/06/Under-Eye-Filler-before-01.jpg"),
("4076","2507","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1061;s:6:\"height\";i:640;s:4:\"file\";s:38:\"2026/06/Under-Eye-Filler-before-01.jpg\";s:8:\"filesize\";i:188509;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9171;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-01-1024x618.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4217;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-768x463.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48614;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21745;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10561;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42646;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1632;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4913;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15370;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31831;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-01-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52031;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4077","2508","_wp_attached_file","2026/06/Under-Eye-Filler-after-01.jpg"),
("4078","2508","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1061;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2026/06/Under-Eye-Filler-after-01.jpg\";s:8:\"filesize\";i:288766;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8875;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-01-1024x618.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4132;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-768x463.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45197;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19654;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10251;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40244;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Under-Eye-Filler-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1642;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4875;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14722;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29907;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-01-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48134;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4079","2509","_wp_attached_file","2026/06/Under-Eye-Filler-before-02.jpg"),
("4080","2509","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:38:\"2026/06/Under-Eye-Filler-before-02.jpg\";s:8:\"filesize\";i:134619;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11714;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4475;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15881;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9475;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26262;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1728;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8190;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25365;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4081","2511","_wp_attached_file","2026/06/Underarm-before-01.jpg"),
("4082","2511","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Underarm-before-01.jpg\";s:8:\"filesize\";i:141163;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Underarm-before-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11017;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Underarm-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3994;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Underarm-before-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16484;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Underarm-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9168;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Underarm-before-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26546;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Underarm-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1579;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Underarm-before-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7696;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Underarm-before-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25061;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4083","2512","_wp_attached_file","2026/06/Underarm-after-01.jpg"),
("4084","2512","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Underarm-after-01.jpg\";s:8:\"filesize\";i:127911;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Underarm-after-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Underarm-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4179;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Underarm-after-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14517;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Underarm-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8441;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Underarm-after-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22793;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Underarm-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1733;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Underarm-after-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7379;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Underarm-after-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21949;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4085","2514","_wp_attached_file","2026/06/Forehead-Crows-Feet-Refinement-before-01.jpg"),
("4086","2514","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:52:\"2026/06/Forehead-Crows-Feet-Refinement-before-01.jpg\";s:8:\"filesize\";i:138179;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11504;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5227;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16732;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9985;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26890;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Forehead-Crows-Feet-Refinement-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2173;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8669;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23909;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4087","2515","_wp_attached_file","2026/06/Forehead-Crows-Feet-Refinement-after-01.jpg"),
("4088","2515","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:51:\"2026/06/Forehead-Crows-Feet-Refinement-after-01.jpg\";s:8:\"filesize\";i:142041;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5135;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16969;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9763;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26923;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Forehead-Crows-Feet-Refinement-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2154;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8631;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24427;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4089","2516","_wp_attached_file","2026/06/Nefertiti-Neck-Lift-Lower-Face-before-01.jpg"),
("4090","2516","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:52:\"2026/06/Nefertiti-Neck-Lift-Lower-Face-before-01.jpg\";s:8:\"filesize\";i:178626;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Nefertiti-Neck-Lift-Lower-Face-before-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Nefertiti-Neck-Lift-Lower-Face-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5748;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:52:\"Nefertiti-Neck-Lift-Lower-Face-before-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22047;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:52:\"Nefertiti-Neck-Lift-Lower-Face-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11950;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:52:\"Nefertiti-Neck-Lift-Lower-Face-before-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36521;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Nefertiti-Neck-Lift-Lower-Face-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2192;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:52:\"Nefertiti-Neck-Lift-Lower-Face-before-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10293;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:52:\"Nefertiti-Neck-Lift-Lower-Face-before-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32360;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4091","2517","_wp_attached_file","2026/06/Forehead-Crows-Feet-Refinement-before-02.jpg"),
("4092","2517","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:52:\"2026/06/Forehead-Crows-Feet-Refinement-before-02.jpg\";s:8:\"filesize\";i:175927;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5671;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21974;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11789;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36633;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Forehead-Crows-Feet-Refinement-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2152;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10006;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31565;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4093","2518","_wp_attached_file","2026/06/Forehead-Crows-Feet-Refinement-after-02.jpg"),
("4094","2518","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:51:\"2026/06/Forehead-Crows-Feet-Refinement-after-02.jpg\";s:8:\"filesize\";i:173185;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5586;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21254;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11515;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35261;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Forehead-Crows-Feet-Refinement-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2151;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9797;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30770;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4095","2521","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-02.jpg"),
("4096","2521","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:42:\"2026/06/Face-Lift-with-Filler-after-02.jpg\";s:8:\"filesize\";i:152617;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12944;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4947;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18950;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10777;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29957;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Lift-with-Filler-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1914;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9229;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28859;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4097","2522","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-01.jpg"),
("4098","2522","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-before-01.jpg\";s:8:\"filesize\";i:108156;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10321;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4378;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12662;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8412;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19631;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1784;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7674;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19987;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4099","2523","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-01.jpg"),
("4100","2523","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:42:\"2026/06/Face-Lift-with-Filler-after-01.jpg\";s:8:\"filesize\";i:103051;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-01-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10010;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4289;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-01-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12662;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8260;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-01-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19476;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Lift-with-Filler-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1799;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-01-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7479;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-01-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19417;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4101","2524","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-02.jpg"),
("4102","2524","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-before-02.jpg\";s:8:\"filesize\";i:137270;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5111;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16117;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10109;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24749;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2037;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8924;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24246;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4103","2529","_wp_attached_file","2026/06/Radiesse-before-07.jpg"),
("4104","2529","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Radiesse-before-07.jpg\";s:8:\"filesize\";i:113278;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-07-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4557;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-07-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12607;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8453;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-07-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19345;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1803;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-07-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8493;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-07-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21486;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4105","2530","_wp_attached_file","2026/06/Radiesse-after-07.jpg"),
("4106","2530","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Radiesse-after-07.jpg\";s:8:\"filesize\";i:143978;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-07-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13422;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5227;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-07-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20287;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11760;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-07-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29219;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1902;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-07-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9595;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-07-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28614;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4107","2531","_wp_attached_file","2026/06/Radiesse-before-08.jpg"),
("4108","2531","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Radiesse-before-08.jpg\";s:8:\"filesize\";i:122169;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-08-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4996;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-08-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13042;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-08-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8471;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-08-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23563;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-08-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2002;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-08-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9235;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-08-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24803;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4109","2532","_wp_attached_file","2026/06/Radiesse-before-09.jpg"),
("4110","2532","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:898;s:4:\"file\";s:30:\"2026/06/Radiesse-before-09.jpg\";s:8:\"filesize\";i:268344;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-09-188x300.jpg\";s:5:\"width\";i:188;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10260;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4594;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-09-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23784;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-09-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11082;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-09-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38839;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-09-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1680;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-09-200x319.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11242;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-09-400x638.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39317;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4111","2533","_wp_attached_file","2026/06/Radiesse-after-09.jpg"),
("4112","2533","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:898;s:4:\"file\";s:29:\"2026/06/Radiesse-after-09.jpg\";s:8:\"filesize\";i:286451;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-09-188x300.jpg\";s:5:\"width\";i:188;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10572;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4749;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-09-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23854;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-09-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11426;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-09-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38199;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-09-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1747;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-09-200x319.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11556;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-09-400x638.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38683;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4113","2534","_wp_attached_file","2026/06/Radiesse-before-10.jpg"),
("4114","2534","_wp_attachment_metadata","a:6:{s:5:\"width\";i:540;s:6:\"height\";i:453;s:4:\"file\";s:30:\"2026/06/Radiesse-before-10.jpg\";s:8:\"filesize\";i:122295;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-10-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11041;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4078;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-10-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18616;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9176;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-10-540x441.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29853;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1622;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-10-200x168.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5717;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-10-400x336.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17411;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4115","2535","_wp_attached_file","2026/06/Radiesse-after-10.jpg"),
("4116","2535","_wp_attachment_metadata","a:6:{s:5:\"width\";i:540;s:6:\"height\";i:453;s:4:\"file\";s:29:\"2026/06/Radiesse-after-10.jpg\";s:8:\"filesize\";i:123055;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-10-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3959;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-10-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16456;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8352;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-10-540x441.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25724;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1635;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-10-200x168.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5375;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-10-400x336.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16104;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4117","2536","_wp_attached_file","2026/06/Radiesse-before-11.jpg"),
("4118","2536","_wp_attachment_metadata","a:6:{s:5:\"width\";i:540;s:6:\"height\";i:453;s:4:\"file\";s:30:\"2026/06/Radiesse-before-11.jpg\";s:8:\"filesize\";i:148494;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-11-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11929;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4344;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-11-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21932;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10224;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-11-540x441.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33650;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1669;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-11-200x168.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5979;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-11-400x336.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19163;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4119","2537","_wp_attached_file","2026/06/Radiesse-after-11.jpg"),
("4120","2537","_wp_attachment_metadata","a:6:{s:5:\"width\";i:540;s:6:\"height\";i:453;s:4:\"file\";s:29:\"2026/06/Radiesse-after-11.jpg\";s:8:\"filesize\";i:147237;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-11-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4472;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-11-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21492;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10221;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-11-540x441.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33889;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1724;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-11-200x168.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6015;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-11-400x336.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19307;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4121","2538","_wp_attached_file","2026/06/Radiesse-before-12.jpg"),
("4122","2538","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2026/06/Radiesse-before-12.jpg\";s:8:\"filesize\";i:345376;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9484;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Radiesse-before-12-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91429;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5022;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54330;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29938;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11474;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50571;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1882;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5153;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15914;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34075;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58359;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:31:\"Radiesse-before-12-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121126;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4123","2539","_wp_attached_file","2026/06/Radiesse-before-12-1.jpg"),
("4124","2539","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2026/06/Radiesse-before-12-1.jpg\";s:8:\"filesize\";i:345376;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9484;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Radiesse-before-12-1-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91429;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5022;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54330;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29938;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11474;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50571;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-12-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1882;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5153;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15914;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34075;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-12-1-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58359;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:33:\"Radiesse-before-12-1-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121126;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4125","2540","_wp_attached_file","2026/06/Radiesse-after-12.jpg"),
("4126","2540","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2026/06/Radiesse-after-12.jpg\";s:8:\"filesize\";i:609875;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10358;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Radiesse-after-12-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98342;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5377;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59139;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31889;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12391;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54339;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1919;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5294;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17494;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37417;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-12-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63521;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:30:\"Radiesse-after-12-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128545;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4127","2541","_wp_attached_file","2026/06/Radiesse-after-08.jpg"),
("4128","2541","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Radiesse-after-08.jpg\";s:8:\"filesize\";i:109376;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-08-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10970;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4726;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-08-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12183;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-08-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8127;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-08-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20516;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-08-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1956;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-08-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8282;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-08-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21112;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4130","2544","_wp_attached_file","2026/06/Lip-Filler-before-07.jpg"),
("4131","2544","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-07.jpg\";s:8:\"filesize\";i:248897;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7050;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-07-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40525;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3727;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27428;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16248;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8324;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25662;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1561;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4044;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10721;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19399;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-07-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28917;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-07-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50506;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4132","2545","_wp_attached_file","2026/06/Lip-Filler-after-07.jpg"),
("4133","2545","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-07.jpg\";s:8:\"filesize\";i:270657;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7743;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-07-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3997;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30353;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18339;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8806;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28035;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1567;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4278;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11754;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21513;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-07-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31977;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-07-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55965;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4134","2546","_wp_attached_file","2026/06/Lip-Filler-before-08.jpg"),
("4135","2546","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-08.jpg\";s:8:\"filesize\";i:355407;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8648;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-08-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59678;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4581;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39234;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23443;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10693;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36869;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-08-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1567;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4377;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14147;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27044;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41538;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-08-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75269;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4136","2547","_wp_attached_file","2026/06/Lip-Filler-before-08-1.jpg"),
("4137","2547","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2026/06/Lip-Filler-before-08-1.jpg\";s:8:\"filesize\";i:355407;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8648;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Lip-Filler-before-08-1-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59678;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4581;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39234;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23443;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10693;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36869;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-08-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1567;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4377;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14147;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27044;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:34:\"Lip-Filler-before-08-1-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41538;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:35:\"Lip-Filler-before-08-1-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75269;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4138","2548","_wp_attached_file","2026/06/Lip-Filler-after-08.jpg"),
("4139","2548","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-08.jpg\";s:8:\"filesize\";i:382185;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9285;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-08-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4787;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42890;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25420;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11237;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40048;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-08-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1628;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4584;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15242;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29620;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-08-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45411;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-08-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82064;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4140","2549","_wp_attached_file","2026/06/Lip-Filler-before-09.jpg"),
("4141","2549","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-09.jpg\";s:8:\"filesize\";i:126349;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-09-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11713;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4667;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-09-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15066;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-09-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9444;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-09-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24448;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-09-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1822;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-09-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8334;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-09-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24184;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4142","2550","_wp_attached_file","2026/06/Lip-Filler-after-09.jpg"),
("4143","2550","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-09.jpg\";s:8:\"filesize\";i:136612;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-09-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4461;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-09-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17559;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-09-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10272;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-09-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26628;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-09-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1749;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-09-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8084;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-09-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25175;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4144","2551","_wp_attached_file","2026/06/Lip-Filler-before-10.jpg"),
("4145","2551","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-10.jpg\";s:8:\"filesize\";i:151487;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-10-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11844;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4862;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-10-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17069;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9518;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-10-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28750;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1921;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-10-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8471;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-10-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26162;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4146","2552","_wp_attached_file","2026/06/Lip-Filler-after-10.jpg"),
("4147","2552","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-10.jpg\";s:8:\"filesize\";i:159618;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-10-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5273;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-10-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17943;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10213;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-10-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30760;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2051;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-10-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9234;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-10-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28193;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4148","2553","_wp_attached_file","2026/06/Lip-Filler-before-11.jpg"),
("4149","2553","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-11.jpg\";s:8:\"filesize\";i:147319;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-11-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11475;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4134;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-11-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19157;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9536;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-11-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30579;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1529;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-11-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5728;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-11-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18252;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4150","2554","_wp_attached_file","2026/06/Lip-Filler-after-11.jpg"),
("4151","2554","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-11.jpg\";s:8:\"filesize\";i:128003;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-11-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4572;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-11-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17055;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9348;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-11-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25876;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1694;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-11-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6093;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-11-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16810;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4152","2555","_wp_attached_file","2026/06/Lip-Filler-before-12.jpg"),
("4153","2555","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-12.jpg\";s:8:\"filesize\";i:129390;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-12-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3925;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-12-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18384;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9391;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-12-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27749;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1604;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-12-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5354;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-12-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16346;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4154","2556","_wp_attached_file","2026/06/Lip-Filler-after-12.jpg"),
("4155","2556","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-12.jpg\";s:8:\"filesize\";i:120567;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-12-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9864;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4168;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-12-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14434;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8183;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-12-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22736;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1689;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-12-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5518;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-12-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14570;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4156","2557","_wp_attached_file","2026/06/Lip-Filler-before-13.jpg"),
("4157","2557","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-13.jpg\";s:8:\"filesize\";i:122993;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-13-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10576;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4118;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-13-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16711;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9082;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-13-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25590;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1600;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-13-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5583;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-13-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16036;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4158","2558","_wp_attached_file","2026/06/Lip-Filler-after-13.jpg"),
("4159","2558","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-13.jpg\";s:8:\"filesize\";i:124707;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-13-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10478;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4027;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-13-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16372;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8832;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-13-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25480;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1601;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-13-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5554;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-13-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15964;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4160","2560","_wp_attached_file","2026/06/Sculptra-after-06.jpg"),
("4161","2560","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:29:\"2026/06/Sculptra-after-06.jpg\";s:8:\"filesize\";i:152020;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-06-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12630;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4947;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-06-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19590;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10231;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-06-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31813;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Sculptra-after-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1868;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-06-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6675;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-06-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19534;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4162","2561","_wp_attached_file","2026/06/Sculptra-before-06.jpg"),
("4163","2561","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2026/06/Sculptra-before-06.jpg\";s:8:\"filesize\";i:170620;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-06-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14000;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5022;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-06-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24390;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11690;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-06-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38182;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sculptra-before-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1832;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-06-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7134;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-06-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22268;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4164","2563","_wp_attached_file","2026/06/Sculptra-before-07.jpg"),
("4165","2563","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2026/06/Sculptra-before-07.jpg\";s:8:\"filesize\";i:148373;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-07-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4500;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-07-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19225;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9949;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-07-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30349;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sculptra-before-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1695;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-07-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6348;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sculptra-before-07-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18854;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4166","2564","_wp_attached_file","2026/06/Sculptra-after-07.jpg"),
("4167","2564","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:29:\"2026/06/Sculptra-after-07.jpg\";s:8:\"filesize\";i:145656;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-07-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11970;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4524;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-07-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19484;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10036;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-07-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30404;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Sculptra-after-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1710;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-07-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6223;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Sculptra-after-07-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18655;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4168","2566","_wp_attached_file","2026/06/Radiesse-after-13.jpg"),
("4169","2566","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/06/Radiesse-after-13.jpg\";s:8:\"filesize\";i:190356;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15775;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5881;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23739;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13201;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37861;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2187;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11046;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35506;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4170","2567","_wp_attached_file","2026/06/Radiesse-before-13.jpg"),
("4171","2567","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Radiesse-before-13.jpg\";s:8:\"filesize\";i:184676;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14947;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5617;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23723;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12875;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37162;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2117;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34096;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4172","2570","_wp_attached_file","2026/06/Jawline-Filler-before-07.jpg"),
("4173","2570","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-07.jpg\";s:8:\"filesize\";i:158650;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-07-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12110;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4183;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-07-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20045;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9551;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-07-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32597;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1745;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-07-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6253;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-07-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18973;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4174","2571","_wp_attached_file","2026/06/Jawline-Filler-after-07.jpg"),
("4175","2571","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-07.jpg\";s:8:\"filesize\";i:141793;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-07-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3928;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-07-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17366;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8209;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-07-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27604;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1643;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-07-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5491;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-07-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16434;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4176","2573","_wp_attached_file","2026/06/Face-Contouring-after-04.jpg"),
("4177","2573","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2026/06/Face-Contouring-after-04.jpg\";s:8:\"filesize\";i:117470;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-04-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4383;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-04-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13505;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8311;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-04-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23061;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1878;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-04-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6006;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-04-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15335;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4178","2574","_wp_attached_file","2026/06/Face-Contouring-before-04.jpg"),
("4179","2574","_wp_attachment_metadata","a:6:{s:5:\"width\";i:561;s:6:\"height\";i:480;s:4:\"file\";s:37:\"2026/06/Face-Contouring-before-04.jpg\";s:8:\"filesize\";i:126669;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-04-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11300;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4625;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-04-561x272.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15093;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8947;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-04-561x441.jpg\";s:5:\"width\";i:561;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26252;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Face-Contouring-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1972;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-04-200x171.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6330;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-04-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16940;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("4180","2576","_wp_attached_file","2026/06/Under-Eye-Filler-before-03.jpg"),
("4181","2576","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2026/06/Under-Eye-Filler-before-03.jpg\";s:8:\"filesize\";i:379336;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10660;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-03-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70212;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4805;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46758;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27730;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12622;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42928;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1719;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5345;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17134;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32556;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49440;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-03-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87837;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4182","2577","_wp_attached_file","2026/06/Under-Eye-Filler-after-03.jpg"),
("4183","2577","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2026/06/Under-Eye-Filler-after-03.jpg\";s:8:\"filesize\";i:388162;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10306;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-03-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69939;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4770;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46428;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29156;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12546;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43124;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Under-Eye-Filler-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1677;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5208;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16888;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32195;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49067;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-03-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87421;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4184","2578","_wp_attached_file","2026/06/Under-Eye-Filler-before-04.jpg"),
("4185","2578","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2026/06/Under-Eye-Filler-before-04.jpg\";s:8:\"filesize\";i:360219;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8930;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-04-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66111;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4917;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43335;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24593;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10948;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40195;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1658;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4561;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14719;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29365;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45987;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-04-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83085;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4186","2579","_wp_attached_file","2026/06/Under-Eye-Filler-after-04.jpg"),
("4187","2579","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2026/06/Under-Eye-Filler-after-04.jpg\";s:8:\"filesize\";i:391734;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9072;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-04-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72961;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5075;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47213;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26003;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11382;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44584;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Under-Eye-Filler-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1666;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4455;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15344;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31568;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50160;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-04-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91756;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4189","2581","_wp_attached_file","2026/06/Lip-Filler-after-14.jpg"),
("4190","2581","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-14.jpg\";s:8:\"filesize\";i:162772;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-14-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13148;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4869;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-14-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21516;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-14-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11721;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-14-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33605;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-14-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1716;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-14-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9109;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-14-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30361;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4191","2582","_wp_attached_file","2026/06/Lip-Filler-before-14.jpg"),
("4192","2582","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-14.jpg\";s:8:\"filesize\";i:150879;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-14-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4531;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-14-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20021;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-14-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11015;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-14-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30793;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-14-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1700;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-14-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8442;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-14-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28056;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4194","2584","_wp_attached_file","2026/06/Radiesse-after-13-1.jpg"),
("4195","2584","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Radiesse-after-13-1.jpg\";s:8:\"filesize\";i:172692;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Radiesse-after-13-1-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14674;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Radiesse-after-13-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5768;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Radiesse-after-13-1-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21549;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Radiesse-after-13-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11883;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Radiesse-after-13-1-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35058;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2228;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Radiesse-after-13-1-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10529;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Radiesse-after-13-1-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31912;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4196","2585","_wp_attached_file","2026/06/Radiesse-before-13-1.jpg"),
("4197","2585","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Radiesse-before-13-1.jpg\";s:8:\"filesize\";i:195795;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-13-1-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17216;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-13-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6194;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-13-1-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24592;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-13-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13172;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-13-1-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42059;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2185;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-13-1-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11974;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Radiesse-before-13-1-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38943;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4198","2055","_edit_lock","1783008089:1"),
("4199","2587","_wp_attached_file","2026/06/Lip-Filler-before-15.jpg"),
("4200","2587","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-15.jpg\";s:8:\"filesize\";i:188173;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-15-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6063;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-15-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23943;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-15-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13220;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-15-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37122;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-15-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2230;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-15-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10934;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-15-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33433;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4201","2588","_wp_attached_file","2026/06/Lip-Filler-after-15.jpg"),
("4202","2588","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-15.jpg\";s:8:\"filesize\";i:199447;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-15-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6011;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-15-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24407;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-15-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13259;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-15-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40293;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-15-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2223;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-15-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11284;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-15-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36371;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4203","2589","_wp_attached_file","2026/06/Lip-Filler-before-16.jpg"),
("4204","2589","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-16.jpg\";s:8:\"filesize\";i:169814;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-16-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13329;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5341;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-16-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19018;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-16-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10715;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-16-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31250;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2087;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-16-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9590;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-16-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28742;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4205","2590","_wp_attached_file","2026/06/Lip-Filler-after-16.jpg"),
("4206","2590","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-16.jpg\";s:8:\"filesize\";i:180686;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-16-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5370;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-16-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20042;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-16-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11154;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-16-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34347;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2048;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-16-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10108;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-16-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32012;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4207","2591","_wp_attached_file","2026/06/Lip-Filler-before-17.jpg"),
("4208","2591","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-17.jpg\";s:8:\"filesize\";i:149688;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-17-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4489;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-17-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19141;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-17-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10763;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-17-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29379;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-17-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1707;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-17-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8366;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-17-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27370;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4209","2592","_wp_attached_file","2026/06/Lip-Filler-after-17.jpg"),
("4210","2592","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-17.jpg\";s:8:\"filesize\";i:145746;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-17-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12141;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4672;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-17-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18741;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-17-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10910;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-17-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28371;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-17-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1757;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-17-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8516;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-17-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26636;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4211","2593","_wp_attached_file","2026/06/Lip-Filler-before-18.jpg"),
("4212","2593","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-before-18.jpg\";s:8:\"filesize\";i:149060;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-18-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11760;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4394;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-18-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18741;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-18-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10506;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-18-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28807;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-18-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1695;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-18-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8226;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-18-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26506;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4213","2594","_wp_attached_file","2026/06/Lip-Filler-after-18.jpg"),
("4214","2594","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Lip-Filler-after-18.jpg\";s:8:\"filesize\";i:135733;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-18-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11117;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4466;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-18-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16872;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-18-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9956;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-18-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25234;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-18-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1731;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-18-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7923;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-18-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23738;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4215","2101","_edit_lock","1782759811:1"),
("4216","952","_edit_lock","1782999590:1"),
("4217","2599","_wp_attached_file","2026/06/Lip-Filler-after-15a.jpg"),
("4218","2599","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-after-15a.jpg\";s:8:\"filesize\";i:102227;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-15a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10215;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-15a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4276;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-15a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12894;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-15a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8360;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-15a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20311;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-after-15a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1703;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-15a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7388;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-15a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20252;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4219","2600","_wp_attached_file","2026/06/Lip-Filler-before-15a.jpg"),
("4220","2600","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:33:\"2026/06/Lip-Filler-before-15a.jpg\";s:8:\"filesize\";i:107344;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-15a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9879;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-15a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4160;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-15a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13104;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-15a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8273;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-15a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20699;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-before-15a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1719;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-15a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7137;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-15a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20271;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4221","2601","_wp_attached_file","2026/06/Lip-Filler-after-16a.jpg"),
("4222","2601","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-after-16a.jpg\";s:8:\"filesize\";i:109673;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-16a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-16a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4433;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-16a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13625;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-16a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8785;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-16a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21551;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-after-16a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1745;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-16a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7919;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-16a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21652;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4223","2602","_wp_attached_file","2026/06/Lip-Filler-before-16a.jpg"),
("4224","2602","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:33:\"2026/06/Lip-Filler-before-16a.jpg\";s:8:\"filesize\";i:111289;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-16a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-16a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4358;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-16a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13569;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-16a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8681;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-16a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21717;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-before-16a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1759;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-16a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7825;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-16a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21885;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4225","2603","_wp_attached_file","2026/06/Lip-Filler-before-10a.jpg"),
("4226","2603","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:33:\"2026/06/Lip-Filler-before-10a.jpg\";s:8:\"filesize\";i:105628;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-10a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9631;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-10a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3870;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-10a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14029;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-10a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8582;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-10a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21075;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-before-10a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1560;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-10a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6893;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Lip-Filler-before-10a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20515;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4227","2604","_wp_attached_file","2026/06/Lip-Filler-after-10a.jpg"),
("4228","2604","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:32:\"2026/06/Lip-Filler-after-10a.jpg\";s:8:\"filesize\";i:117015;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-10a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10603;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-10a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4334;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-10a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15068;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-10a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9401;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-10a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23000;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-after-10a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1721;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-10a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7598;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-after-10a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22176;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4229","2407","_wp_attachment_image_alt","Hair Loss before"),
("4230","2408","_wp_attachment_image_alt","Hair Loss after"),
("4231","2606","_wp_attached_file","2026/06/Hair-Loss-after-02.jpg"),
("4232","2606","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/06/Hair-Loss-after-02.jpg\";s:8:\"filesize\";i:181214;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Hair-Loss-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17696;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Hair-Loss-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6900;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Hair-Loss-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30059;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Hair-Loss-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16927;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Hair-Loss-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42627;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Hair-Loss-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2225;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Hair-Loss-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12532;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Hair-Loss-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37880;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4233","2607","_wp_attached_file","2026/06/Hair-Loss-before-02.jpg"),
("4234","2607","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:31:\"2026/06/Hair-Loss-before-02.jpg\";s:8:\"filesize\";i:201459;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Hair-Loss-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21120;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Hair-Loss-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7893;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Hair-Loss-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36527;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Hair-Loss-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19818;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Hair-Loss-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52624;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Hair-Loss-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2418;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Hair-Loss-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14814;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Hair-Loss-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45804;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4235","2611","_wp_attached_file","2026/06/Brightening-IV.jpg"),
("4236","2611","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:571;s:4:\"file\";s:26:\"2026/06/Brightening-IV.jpg\";s:8:\"filesize\";i:302422;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6274;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45693;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28439;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13760;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43742;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:24:\"Brightening-IV-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2363;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6662;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17411;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-600x343.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32035;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:26:\"Brightening-IV-800x457.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48816;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4237","2613","_wp_attached_file","2026/06/Double-Chin-before.jpg"),
("4238","2613","_wp_attachment_metadata","a:6:{s:5:\"width\";i:915;s:6:\"height\";i:585;s:4:\"file\";s:30:\"2026/06/Double-Chin-before.jpg\";s:8:\"filesize\";i:260190;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10487;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51765;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25657;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11602;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44064;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Double-Chin-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1722;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-200x128.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5375;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-400x256.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17136;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-600x384.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34416;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"Double-Chin-before-800x511.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54861;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4239","2614","_wp_attached_file","2026/06/Double-Chin-after.jpg"),
("4240","2614","_wp_attachment_metadata","a:6:{s:5:\"width\";i:915;s:6:\"height\";i:585;s:4:\"file\";s:29:\"2026/06/Double-Chin-after.jpg\";s:8:\"filesize\";i:270606;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10560;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5255;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-768x491.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49427;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25483;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11669;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42477;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Double-Chin-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1868;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-200x128.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5476;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-400x256.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16864;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-600x384.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33400;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"Double-Chin-after-800x511.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52403;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4241","2617","_wp_page_template","100-width.php"),
("4242","2617","_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:2:\"no\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";}s:15:\"content_bg_full\";s:2:\"no\";s: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\";}"),
("4243","2617","fusion_builder_status","active"),
("4244","2617","_fusion_google_fonts",""),
("4245","2617","_thumbnail_id","2626"),
("4248","2617","_edit_last","1"),
("4249","2617","avada_post_views_count","30"),
("4250","2617","avada_today_post_views_count","15"),
("4251","2617","avada_post_views_count_today_date","02-07-2026"),
("4252","2626","_wp_attached_file","2026/06/Lanluma.jpg"),
("4253","2626","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:19:\"2026/06/Lanluma.jpg\";s:8:\"filesize\";i:82488;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Lanluma-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3633;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"Lanluma-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Lanluma-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2151;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Lanluma-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14762;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:19:\"Lanluma-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8210;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:19:\"Lanluma-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3819;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:19:\"Lanluma-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11844;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:17:\"Lanluma-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1114;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:19:\"Lanluma-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2264;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:19:\"Lanluma-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5431;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:19:\"Lanluma-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10507;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:19:\"Lanluma-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15811;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4254","2428","_edit_lock","1783006452:1"),
("4255","2639","_wp_attached_file","2026/06/Lip-Flip-before-01.jpg"),
("4256","2639","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:30:\"2026/06/Lip-Flip-before-01.jpg\";s:8:\"filesize\";i:77586;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-01-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5780;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3758;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-01-606x272.jpg\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14060;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7532;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Lip-Flip-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1644;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-01-200x102.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3355;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-01-400x205.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8529;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-01-600x307.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15442;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4257","2640","_wp_attached_file","2026/06/Lip-Flip-after-01.png"),
("4258","2640","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:29:\"2026/06/Lip-Flip-after-01.png\";s:8:\"filesize\";i:182710;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-01-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60543;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33315;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-01-606x272.png\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:181139;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-01-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83161;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Lip-Flip-after-01-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7904;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-01-200x102.png\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29915;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-01-400x205.png\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99182;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-01-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189935;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4259","2641","_wp_attached_file","2026/06/Lip-Flip-before-02.png"),
("4260","2641","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:30:\"2026/06/Lip-Flip-before-02.png\";s:8:\"filesize\";i:201508;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-02-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32761;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-02-606x272.png\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200359;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-02-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84436;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Lip-Flip-before-02-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7672;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-02-200x102.png\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32327;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-02-400x205.png\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108378;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Lip-Flip-before-02-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209509;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4261","2642","_wp_attached_file","2026/06/Lip-Flip-after-02.png"),
("4262","2642","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:29:\"2026/06/Lip-Flip-after-02.png\";s:8:\"filesize\";i:216211;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-02-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34174;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-02-606x272.png\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:214637;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-02-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90450;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Lip-Flip-after-02-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7853;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-02-200x102.png\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33072;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-02-400x205.png\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113312;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"Lip-Flip-after-02-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:221678;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4263","2644","_wp_attached_file","2026/06/Bruxism-Jawline-Slimming.jpg"),
("4264","2644","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:36:\"2026/06/Bruxism-Jawline-Slimming.jpg\";s:8:\"filesize\";i:183735;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5791;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95282;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29087;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12674;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50772;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Bruxism-Jawline-Slimming-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2179;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8944;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29089;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60858;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:36:\"Bruxism-Jawline-Slimming-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100876;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4265","2648","_wp_attached_file","2026/06/Sad-Mouth-before-01.png"),
("4266","2648","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:31:\"2026/06/Sad-Mouth-before-01.png\";s:8:\"filesize\";i:208820;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-01-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66922;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37616;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-01-606x272.png\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204036;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-01-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92009;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Sad-Mouth-before-01-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8798;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-01-200x102.png\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32642;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-01-400x205.png\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110815;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-01-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:217763;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4267","2649","_wp_attached_file","2026/06/Sad-Mouth-after-01.png"),
("4268","2649","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:30:\"2026/06/Sad-Mouth-after-01.png\";s:8:\"filesize\";i:174736;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-01-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34874;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-01-606x272.png\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171039;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-01-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78170;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sad-Mouth-after-01-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8302;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-01-200x102.png\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28909;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-01-400x205.png\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95264;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-01-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183206;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4269","2650","_wp_attached_file","2026/06/Sad-Mouth-before-02.png"),
("4270","2650","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:31:\"2026/06/Sad-Mouth-before-02.png\";s:8:\"filesize\";i:177180;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-02-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62953;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35081;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-02-606x272.png\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171561;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-02-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85540;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Sad-Mouth-before-02-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8650;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-02-200x102.png\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31919;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-02-400x205.png\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100958;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-02-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189205;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4271","2651","_wp_attached_file","2026/06/Sad-Mouth-after-02.png"),
("4272","2651","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:30:\"2026/06/Sad-Mouth-after-02.png\";s:8:\"filesize\";i:167517;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-02-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35292;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-02-606x272.png\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:163295;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-02-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84593;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sad-Mouth-after-02-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8399;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-02-200x102.png\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28958;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-02-400x205.png\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93413;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-02-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177359;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4273","2654","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-01a.jpg"),
("4274","2654","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:44:\"2026/06/Face-Lift-with-Filler-before-01a.jpg\";s:8:\"filesize\";i:101024;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-01a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9730;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-01a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4103;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-01a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11133;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-01a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7358;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-01a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18045;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-before-01a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1758;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-01a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7265;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-01a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18632;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4275","2655","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-01a.jpg"),
("4276","2655","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-after-01a.jpg\";s:8:\"filesize\";i:95599;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-01a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-01a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4048;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-01a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10962;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-01a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7190;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-01a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17761;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-after-01a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1740;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-01a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7074;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-01a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17975;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4277","2656","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-02a.jpg"),
("4278","2656","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:44:\"2026/06/Face-Lift-with-Filler-before-02a.jpg\";s:8:\"filesize\";i:129070;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-02a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-02a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4974;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-02a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14270;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-02a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9200;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-02a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22687;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-before-02a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2053;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-02a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8481;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:44:\"Face-Lift-with-Filler-before-02a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22753;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4279","2657","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-02a.jpg"),
("4280","2657","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-after-02a.jpg\";s:8:\"filesize\";i:141831;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-02a-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12104;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-02a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4675;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-02a-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16100;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-02a-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9120;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-02a-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27097;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-after-02a-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1898;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-02a-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8731;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-after-02a-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26671;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4281","2659","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-03.jpg"),
("4282","2659","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-before-03.jpg\";s:8:\"filesize\";i:140461;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-03-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8490;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4228;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-03-606x272.jpg\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29931;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11023;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1598;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-03-200x102.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4334;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-03-400x205.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13974;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-03-600x307.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28947;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4283","2660","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-03.jpg"),
("4284","2660","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:42:\"2026/06/Face-Lift-with-Filler-after-03.jpg\";s:8:\"filesize\";i:171721;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-03-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4966;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-03-606x272.jpg\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38199;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14029;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Lift-with-Filler-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1852;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-03-200x102.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5450;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-03-400x205.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18125;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-03-600x307.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37389;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4285","2661","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-04.jpg"),
("4286","2661","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-before-04.jpg\";s:8:\"filesize\";i:130742;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-04-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7890;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4148;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-04-606x272.jpg\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24633;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9731;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1621;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-04-200x102.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4221;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-04-400x205.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12330;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-04-600x307.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25235;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4287","2662","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-04.jpg"),
("4288","2662","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:42:\"2026/06/Face-Lift-with-Filler-after-04.jpg\";s:8:\"filesize\";i:151211;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-04-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9438;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4114;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-04-606x272.jpg\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30302;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11661;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Lift-with-Filler-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1589;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-04-200x102.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4847;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-04-400x205.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15242;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-04-600x307.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30887;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4289","2663","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-05.jpg"),
("4290","2663","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1003;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-before-05.jpg\";s:8:\"filesize\";i:288743;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10299;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4955;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21686;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11148;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37785;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-before-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1910;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-200x313.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11214;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-400x627.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37048;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-05-600x940.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71416;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4291","2664","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-05.jpg"),
("4292","2664","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1003;s:4:\"file\";s:42:\"2026/06/Face-Lift-with-Filler-after-05.jpg\";s:8:\"filesize\";i:282553;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9633;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4483;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19811;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9949;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34121;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Lift-with-Filler-after-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1860;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-200x313.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10432;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-400x627.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33201;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-05-600x940.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64196;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4293","2665","_wp_attached_file","2026/06/Face-Lift-with-Filler-before-06.jpg"),
("4294","2665","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1003;s:4:\"file\";s:43:\"2026/06/Face-Lift-with-Filler-before-06.jpg\";s:8:\"filesize\";i:212157;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9942;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4924;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12639;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8801;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22419;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-before-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2114;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-200x313.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10596;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-400x627.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26738;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-06-600x940.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46274;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4295","2666","_wp_attached_file","2026/06/Face-Lift-with-Filler-after-06.jpg"),
("4296","2666","_wp_attachment_metadata","a:6:{s:5:\"width\";i:640;s:6:\"height\";i:1003;s:4:\"file\";s:42:\"2026/06/Face-Lift-with-Filler-after-06.jpg\";s:8:\"filesize\";i:334017;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12768;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5582;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-640x272.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17729;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11242;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-640x441.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34767;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Lift-with-Filler-after-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2128;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-200x313.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13798;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-400x627.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42813;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-06-600x940.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:940;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80144;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4297","2065","_edit_lock","1782992263:1"),
("4298","2668","_wp_attached_file","2026/06/Jawline-Filler-before-08.jpg"),
("4299","2668","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:592;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-08.jpg\";s:8:\"filesize\";i:113990;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-08-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4740;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-08-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17540;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-08-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9877;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-08-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34007;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-08-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1763;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-08-200x210.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7848;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-08-400x421.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25215;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4300","2669","_wp_attached_file","2026/06/Jawline-Filler-after-08.jpg"),
("4301","2669","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:592;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-08.jpg\";s:8:\"filesize\";i:187845;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-08-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4457;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-08-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21605;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-08-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10781;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-08-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35530;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-08-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1589;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-08-200x210.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7570;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-08-400x421.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25394;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4302","2670","_wp_attached_file","2026/06/Jawline-Filler-before-09.jpg"),
("4303","2670","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:592;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-09.jpg\";s:8:\"filesize\";i:216600;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-09-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5690;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-09-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25091;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-09-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12270;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-09-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42073;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-09-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2034;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-09-200x210.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9438;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-09-400x421.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30500;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4304","2671","_wp_attached_file","2026/06/Jawline-Filler-after-09.jpg"),
("4305","2671","_wp_attachment_metadata","a:6:{s:5:\"width\";i:563;s:6:\"height\";i:592;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-09.jpg\";s:8:\"filesize\";i:237363;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-09-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17928;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5984;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-09-563x272.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27414;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-09-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13294;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-09-563x441.jpg\";s:5:\"width\";i:563;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45668;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-09-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2092;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-09-200x210.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9852;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-09-400x421.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32241;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4306","2672","_wp_attached_file","2026/06/Jawline-Filler-before-10.jpg"),
("4307","2672","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:36:\"2026/06/Jawline-Filler-before-10.jpg\";s:8:\"filesize\";i:136985;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-10-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9612;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4448;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-10-606x272.jpg\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26465;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11534;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1738;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-10-200x102.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5145;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-10-400x205.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14705;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-10-600x307.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27939;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4308","2673","_wp_attached_file","2026/06/Jawline-Filler-after-10.jpg"),
("4309","2673","_wp_attachment_metadata","a:6:{s:5:\"width\";i:606;s:6:\"height\";i:310;s:4:\"file\";s:35:\"2026/06/Jawline-Filler-after-10.jpg\";s:8:\"filesize\";i:152958;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-10-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9565;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4137;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-10-606x272.jpg\";s:5:\"width\";i:606;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30136;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-10-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11984;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1644;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-10-200x102.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4954;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-10-400x205.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15243;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-10-600x307.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31076;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4311","2676","_wp_attached_file","2026/07/Sad-Mouth-before-03.jpg"),
("4312","2676","_wp_attachment_metadata","a:6:{s:5:\"width\";i:933;s:6:\"height\";i:585;s:4:\"file\";s:31:\"2026/07/Sad-Mouth-before-03.jpg\";s:8:\"filesize\";i:241241;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10102;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4454;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45608;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23857;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11183;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39592;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Sad-Mouth-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1724;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5385;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15873;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-600x376.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30643;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-03-800x502.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48197;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4313","2677","_wp_attached_file","2026/07/Sad-Mouth-after-03.jpg"),
("4314","2677","_wp_attachment_metadata","a:6:{s:5:\"width\";i:933;s:6:\"height\";i:585;s:4:\"file\";s:30:\"2026/07/Sad-Mouth-after-03.jpg\";s:8:\"filesize\";i:319046;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4522;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56528;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30074;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13478;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49136;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sad-Mouth-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1741;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6235;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19354;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-600x376.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37839;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-03-800x502.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59901;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("4315","2679","_wp_attached_file","2026/07/Lip-Filler-before-19.jpg"),
("4316","2679","_wp_attachment_metadata","a:6:{s:5:\"width\";i:933;s:6:\"height\";i:585;s:4:\"file\";s:32:\"2026/07/Lip-Filler-before-19.jpg\";s:8:\"filesize\";i:168963;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6436;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3527;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27010;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14380;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7121;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23591;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-19-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1522;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3606;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9910;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-600x376.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18571;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-19-800x502.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28544;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4317","2680","_wp_attached_file","2026/07/Lip-Filler-after-19.jpg"),
("4318","2680","_wp_attachment_metadata","a:6:{s:5:\"width\";i:933;s:6:\"height\";i:585;s:4:\"file\";s:31:\"2026/07/Lip-Filler-after-19.jpg\";s:8:\"filesize\";i:231438;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8558;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4172;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40544;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21384;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9517;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35206;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-19-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1635;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4479;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13785;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-600x376.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27260;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-19-800x502.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42918;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4319","2681","_wp_attached_file","2026/07/Lip-Filler-before-20.jpg"),
("4320","2681","_wp_attachment_metadata","a:6:{s:5:\"width\";i:933;s:6:\"height\";i:585;s:4:\"file\";s:32:\"2026/07/Lip-Filler-before-20.jpg\";s:8:\"filesize\";i:236536;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3917;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41434;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22143;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9416;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35724;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-20-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1534;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4131;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13980;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-600x376.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27729;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-20-800x502.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43798;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4321","2682","_wp_attached_file","2026/07/Lip-Filler-after-20.jpg"),
("4322","2682","_wp_attachment_metadata","a:6:{s:5:\"width\";i:933;s:6:\"height\";i:585;s:4:\"file\";s:31:\"2026/07/Lip-Filler-after-20.jpg\";s:8:\"filesize\";i:236462;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8351;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4182;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39113;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21529;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9343;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33988;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-20-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1582;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4278;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-400x251.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13589;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-600x376.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26257;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-20-800x502.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41470;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4324","2685","_wp_attached_file","2026/07/Radiesse-before-15.jpg"),
("4325","2685","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:30:\"2026/07/Radiesse-before-15.jpg\";s:8:\"filesize\";i:199541;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-15-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10099;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4551;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-15-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15762;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-15-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9021;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-15-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23060;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-15-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1876;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-15-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9781;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-15-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28695;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4326","2686","_wp_attached_file","2026/07/Radiesse-after-15.jpg"),
("4327","2686","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:29:\"2026/07/Radiesse-after-15.jpg\";s:8:\"filesize\";i:249977;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-15-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11097;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4778;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-15-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19929;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-15-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10598;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-15-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31935;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-15-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1898;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-15-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10756;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-15-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33046;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4328","2687","_wp_attached_file","2026/07/Radiesse-before-16.jpg"),
("4329","2687","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:30:\"2026/07/Radiesse-before-16.jpg\";s:8:\"filesize\";i:393831;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-16-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17313;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6783;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-16-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38470;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-16-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18054;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-16-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62141;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2000;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-16-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16447;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-16-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58183;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4330","2688","_wp_attached_file","2026/07/Radiesse-after-16.jpg"),
("4331","2688","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:29:\"2026/07/Radiesse-after-16.jpg\";s:8:\"filesize\";i:295824;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-16-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12266;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5236;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-16-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26705;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-16-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12576;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-16-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40881;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1900;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-16-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11788;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-16-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38917;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4332","2690","_wp_attached_file","2026/07/Under-Eye-Filler-before-05.jpg"),
("4333","2690","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1056;s:6:\"height\";i:471;s:4:\"file\";s:38:\"2026/07/Under-Eye-Filler-before-05.jpg\";s:8:\"filesize\";i:234224;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7393;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-05-1024x457.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49968;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4335;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-768x343.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32654;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23891;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10960;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35431;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-before-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1602;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-before-05-200x89.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3761;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-400x178.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11964;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-600x268.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22707;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-05-800x357.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34935;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4334","2691","_wp_attached_file","2026/07/Under-Eye-Filler-after-05.jpg"),
("4335","2691","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1056;s:6:\"height\";i:471;s:4:\"file\";s:37:\"2026/07/Under-Eye-Filler-after-05.jpg\";s:8:\"filesize\";i:225031;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6629;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-05-1024x457.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3989;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-768x343.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32395;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23718;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9876;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33830;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Under-Eye-Filler-after-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1500;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-after-05-200x89.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3420;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-400x178.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10947;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-600x268.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22027;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-05-800x357.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34669;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4337","2693","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-after-04.jpg"),
("4338","2693","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:51:\"2026/07/Forehead-Crows-Feet-Refinement-after-04.jpg\";s:8:\"filesize\";i:308804;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-04-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12765;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5007;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-04-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17599;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10198;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-04-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35130;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Forehead-Crows-Feet-Refinement-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1986;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-04-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12219;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-04-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41100;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4339","2694","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-before-03.jpg"),
("4340","2694","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:52:\"2026/07/Forehead-Crows-Feet-Refinement-before-03.jpg\";s:8:\"filesize\";i:285759;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-03-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4803;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-03-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15799;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9080;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-03-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33217;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Forehead-Crows-Feet-Refinement-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1942;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-03-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11110;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-03-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37534;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4341","2695","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-after-03.jpg"),
("4342","2695","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:51:\"2026/07/Forehead-Crows-Feet-Refinement-after-03.jpg\";s:8:\"filesize\";i:286651;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-03-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4772;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-03-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16313;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9547;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-03-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33386;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Forehead-Crows-Feet-Refinement-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1968;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-03-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11153;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-03-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37151;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4343","2696","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-before-04.jpg"),
("4344","2696","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:866;s:4:\"file\";s:52:\"2026/07/Forehead-Crows-Feet-Refinement-before-04.jpg\";s:8:\"filesize\";i:289641;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-04-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4885;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-04-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16473;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9596;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-04-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34377;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Forehead-Crows-Feet-Refinement-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1999;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-04-200x296.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11313;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-04-400x592.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38167;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4345","2061","_edit_lock","1782993108:1"),
("4346","2698","_wp_attached_file","2026/07/Jawline-Filler-before-11.jpg"),
("4347","2698","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:585;s:4:\"file\";s:36:\"2026/07/Jawline-Filler-before-11.jpg\";s:8:\"filesize\";i:182227;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7695;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Jawline-Filler-before-11-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62097;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3363;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38290;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23933;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9561;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34940;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1487;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4243;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12325;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25191;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-11-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41089;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4348","2699","_wp_attached_file","2026/07/Jawline-Filler-after-11.jpg"),
("4349","2699","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:585;s:4:\"file\";s:35:\"2026/07/Jawline-Filler-after-11.jpg\";s:8:\"filesize\";i:242743;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6788;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-after-11-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3585;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26337;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17528;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8012;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24928;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1591;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3940;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10098;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18467;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-11-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28070;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4350","2700","_wp_attached_file","2026/07/Jawline-Filler-before-12.jpg"),
("4351","2700","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:585;s:4:\"file\";s:36:\"2026/07/Jawline-Filler-before-12.jpg\";s:8:\"filesize\";i:357518;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8928;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Jawline-Filler-before-12-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3810;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46752;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29774;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11482;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44803;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1549;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4673;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14459;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30425;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-12-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50065;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4352","2701","_wp_attached_file","2026/07/Jawline-Filler-after-12.jpg"),
("4353","2701","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:585;s:4:\"file\";s:35:\"2026/07/Jawline-Filler-after-12.jpg\";s:8:\"filesize\";i:294696;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7834;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-after-12-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56658;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3499;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36075;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23389;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9846;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34342;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1533;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-200x100.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4276;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12173;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24308;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-12-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38408;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4354","2703","_wp_attached_file","2026/07/Lip-Filler-before-21.jpg"),
("4355","2703","_wp_attachment_metadata","a:6:{s:5:\"width\";i:834;s:6:\"height\";i:585;s:4:\"file\";s:32:\"2026/07/Lip-Filler-before-21.jpg\";s:8:\"filesize\";i:215514;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11212;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4323;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-768x539.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49710;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23738;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11168;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39409;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lip-Filler-before-21-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1688;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5794;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-400x281.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17810;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-600x421.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34236;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"Lip-Filler-before-21-800x561.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52829;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4356","2704","_wp_attached_file","2026/07/Lip-Filler-after-21.jpg"),
("4357","2704","_wp_attachment_metadata","a:6:{s:5:\"width\";i:834;s:6:\"height\";i:585;s:4:\"file\";s:31:\"2026/07/Lip-Filler-after-21.jpg\";s:8:\"filesize\";i:238181;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4456;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-768x539.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47847;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22822;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10145;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37220;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Lip-Filler-after-21-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1695;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5252;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-400x281.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16492;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-600x421.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32441;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"Lip-Filler-after-21-800x561.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50827;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4358","2706","_wp_attached_file","2026/07/Face-Lift-with-Filler-after-07.jpg"),
("4359","2706","_wp_attachment_metadata","a:6:{s:5:\"width\";i:515;s:6:\"height\";i:552;s:4:\"file\";s:42:\"2026/07/Face-Lift-with-Filler-after-07.jpg\";s:8:\"filesize\";i:116469;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-07-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9501;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3864;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-07-515x272.jpg\";s:5:\"width\";i:515;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12619;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7453;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-07-515x441.jpg\";s:5:\"width\";i:515;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19265;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"Face-Lift-with-Filler-after-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1706;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-07-200x214.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5935;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"Face-Lift-with-Filler-after-07-400x429.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15714;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4360","2707","_wp_attached_file","2026/07/Face-Lift-with-Filler-before-07.jpg"),
("4361","2707","_wp_attachment_metadata","a:6:{s:5:\"width\";i:515;s:6:\"height\";i:552;s:4:\"file\";s:43:\"2026/07/Face-Lift-with-Filler-before-07.jpg\";s:8:\"filesize\";i:102585;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-07-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12951;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4648;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-07-515x272.jpg\";s:5:\"width\";i:515;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18985;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-07-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10171;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-07-515x441.jpg\";s:5:\"width\";i:515;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30002;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"Face-Lift-with-Filler-before-07-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1800;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-07-200x214.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7536;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"Face-Lift-with-Filler-before-07-400x429.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23049;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4362","2709","_wp_attached_file","2026/07/Salmon-DNA-undereye-after-01.jpg"),
("4363","2709","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1089;s:6:\"height\";i:585;s:4:\"file\";s:40:\"2026/07/Salmon-DNA-undereye-after-01.jpg\";s:8:\"filesize\";i:264719;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6836;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-after-01-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58324;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3744;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-768x413.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36154;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24260;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8788;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36295;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"Salmon-DNA-undereye-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1543;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-200x107.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3625;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-400x215.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11211;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-600x322.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23660;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:40:\"Salmon-DNA-undereye-after-01-800x430.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38529;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4364","2710","_wp_attached_file","2026/07/Salmon-DNA-undereye-before-01.jpg"),
("4365","2710","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1089;s:6:\"height\";i:585;s:4:\"file\";s:41:\"2026/07/Salmon-DNA-undereye-before-01.jpg\";s:8:\"filesize\";i:192083;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6288;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Salmon-DNA-undereye-before-01-1024x550.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48990;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3433;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-768x413.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30902;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20047;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7959;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30344;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"Salmon-DNA-undereye-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1394;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-200x107.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3370;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-400x215.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9945;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-600x322.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20775;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:41:\"Salmon-DNA-undereye-before-01-800x430.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33224;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4366","2711","_wp_attached_file","2026/07/Mole-Removal-before-01.jpg"),
("4367","2711","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1038;s:6:\"height\";i:471;s:4:\"file\";s:34:\"2026/07/Mole-Removal-before-01.jpg\";s:8:\"filesize\";i:226948;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-300x136.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6748;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Mole-Removal-before-01-1024x465.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48540;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-768x348.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30852;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21726;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9534;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32689;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Mole-Removal-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1552;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-before-01-200x91.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3675;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-400x182.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10795;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20471;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-800x363.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32973;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4368","2712","_wp_attached_file","2026/07/Mole-Removal-after-01.jpg"),
("4369","2712","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1038;s:6:\"height\";i:471;s:4:\"file\";s:33:\"2026/07/Mole-Removal-after-01.jpg\";s:8:\"filesize\";i:308602;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-300x136.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9961;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-after-01-1024x465.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69131;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6200;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-768x348.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45046;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34402;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14092;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50723;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Mole-Removal-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1946;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"Mole-Removal-after-01-200x91.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5127;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-400x182.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15510;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29917;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:33:\"Mole-Removal-after-01-800x363.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47519;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4370","2714","_wp_attached_file","2026/07/Mole-Removal-before-01-1.jpg"),
("4371","2714","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1038;s:6:\"height\";i:471;s:4:\"file\";s:36:\"2026/07/Mole-Removal-before-01-1.jpg\";s:8:\"filesize\";i:226948;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-300x136.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6748;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Mole-Removal-before-01-1-1024x465.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48540;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-768x348.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30852;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21726;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9534;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32689;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Mole-Removal-before-01-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1552;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Mole-Removal-before-01-1-200x91.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3675;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-400x182.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10795;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20471;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:36:\"Mole-Removal-before-01-1-800x363.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32973;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4375","2718","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-before-05.jpg"),
("4376","2718","_wp_attachment_metadata","a:6:{s:5:\"width\";i:969;s:6:\"height\";i:585;s:4:\"file\";s:52:\"2026/07/Forehead-Crows-Feet-Refinement-before-05.jpg\";s:8:\"filesize\";i:325945;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11843;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58521;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32380;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13505;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51908;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Forehead-Crows-Feet-Refinement-before-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1835;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6047;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19273;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39262;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63191;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4377","2719","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-after-05.jpg"),
("4378","2719","_wp_attachment_metadata","a:6:{s:5:\"width\";i:969;s:6:\"height\";i:585;s:4:\"file\";s:51:\"2026/07/Forehead-Crows-Feet-Refinement-after-05.jpg\";s:8:\"filesize\";i:410014;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5414;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73260;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38802;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14669;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63618;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Forehead-Crows-Feet-Refinement-after-05-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1854;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6308;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22283;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47839;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79135;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4379","2721","_wp_attached_file","2026/07/Jawline-Filler-before-13.jpg"),
("4380","2721","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:689;s:4:\"file\";s:36:\"2026/07/Jawline-Filler-before-13.jpg\";s:8:\"filesize\";i:115396;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-13-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11612;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4066;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-13-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21303;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9994;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-13-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34996;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1586;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-13-200x236.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7604;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-13-400x471.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25383;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4381","2722","_wp_attached_file","2026/07/Jawline-Filler-after-13.jpg"),
("4382","2722","_wp_attachment_metadata","a:6:{s:5:\"width\";i:585;s:6:\"height\";i:689;s:4:\"file\";s:35:\"2026/07/Jawline-Filler-after-13.jpg\";s:8:\"filesize\";i:205662;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-13-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4209;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-13-585x272.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21009;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9661;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-13-585x441.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31254;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1663;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-13-200x236.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7623;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-13-400x471.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23874;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4383","2725","_wp_attached_file","2026/07/Jawline-Filler-after-16.jpg"),
("4384","2725","_wp_attachment_metadata","a:6:{s:5:\"width\";i:969;s:6:\"height\";i:585;s:4:\"file\";s:35:\"2026/07/Jawline-Filler-after-16.jpg\";s:8:\"filesize\";i:281257;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8871;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3914;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42831;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23993;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10161;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38026;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Jawline-Filler-after-16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1549;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4762;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14556;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28747;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:35:\"Jawline-Filler-after-16-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46112;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4385","2726","_wp_attached_file","2026/07/Jawline-Filler-before-16.jpg"),
("4386","2726","_wp_attachment_metadata","a:6:{s:5:\"width\";i:969;s:6:\"height\";i:585;s:4:\"file\";s:36:\"2026/07/Jawline-Filler-before-16.jpg\";s:8:\"filesize\";i:254571;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4160;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48993;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27372;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12131;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43824;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Jawline-Filler-before-16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1648;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5469;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17192;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33540;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:36:\"Jawline-Filler-before-16-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52664;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4387","2728","_wp_attached_file","2026/07/Sad-Mouth-before-04.jpg"),
("4388","2728","_wp_attachment_metadata","a:6:{s:5:\"width\";i:557;s:6:\"height\";i:912;s:4:\"file\";s:31:\"2026/07/Sad-Mouth-before-04.jpg\";s:8:\"filesize\";i:155911;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-04-183x300.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10488;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4738;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-04-557x272.jpg\";s:5:\"width\";i:557;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16389;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8933;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-04-557x441.jpg\";s:5:\"width\";i:557;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28723;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"Sad-Mouth-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1936;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-04-200x327.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11792;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"Sad-Mouth-before-04-400x655.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37554;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4389","2729","_wp_attached_file","2026/07/Sad-Mouth-after-04.jpg"),
("4390","2729","_wp_attachment_metadata","a:6:{s:5:\"width\";i:557;s:6:\"height\";i:912;s:4:\"file\";s:30:\"2026/07/Sad-Mouth-after-04.jpg\";s:8:\"filesize\";i:239167;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-04-183x300.jpg\";s:5:\"width\";i:183;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4690;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-04-557x272.jpg\";s:5:\"width\";i:557;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14325;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8566;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-04-557x441.jpg\";s:5:\"width\";i:557;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24930;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Sad-Mouth-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1984;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-04-200x327.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10959;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Sad-Mouth-after-04-400x655.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31428;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4392","2731","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-after-05-1.jpg"),
("4393","2731","_wp_attachment_metadata","a:6:{s:5:\"width\";i:969;s:6:\"height\";i:585;s:4:\"file\";s:53:\"2026/07/Forehead-Crows-Feet-Refinement-after-05-1.jpg\";s:8:\"filesize\";i:362275;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12109;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65642;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32690;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13598;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56567;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-05-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1777;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6039;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20584;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43221;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:53:\"Forehead-Crows-Feet-Refinement-after-05-1-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70919;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4394","2732","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-before-05-1.jpg"),
("4395","2732","_wp_attachment_metadata","a:6:{s:5:\"width\";i:969;s:6:\"height\";i:585;s:4:\"file\";s:54:\"2026/07/Forehead-Crows-Feet-Refinement-before-05-1.jpg\";s:8:\"filesize\";i:292195;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10763;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4514;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-768x464.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53019;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28009;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12593;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46968;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-05-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1854;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-200x121.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5824;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-400x241.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17893;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35099;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:54:\"Forehead-Crows-Feet-Refinement-before-05-1-800x483.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57478;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4396","2733","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-after-06.jpg"),
("4397","2733","_wp_attachment_metadata","a:6:{s:5:\"width\";i:582;s:6:\"height\";i:645;s:4:\"file\";s:51:\"2026/07/Forehead-Crows-Feet-Refinement-after-06.jpg\";s:8:\"filesize\";i:203232;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-06-271x300.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13350;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4942;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-06-582x272.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20352;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10073;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-06-582x441.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35647;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:49:\"Forehead-Crows-Feet-Refinement-after-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1880;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-06-200x222.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8250;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:51:\"Forehead-Crows-Feet-Refinement-after-06-400x443.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26194;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4398","2734","_wp_attached_file","2026/07/Forehead-Crows-Feet-Refinement-before-06.jpg"),
("4399","2734","_wp_attachment_metadata","a:6:{s:5:\"width\";i:582;s:6:\"height\";i:645;s:4:\"file\";s:52:\"2026/07/Forehead-Crows-Feet-Refinement-before-06.jpg\";s:8:\"filesize\";i:230284;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-06-271x300.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14809;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5223;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-06-582x272.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20846;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-06-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10882;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-06-582x441.jpg\";s:5:\"width\";i:582;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39683;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:50:\"Forehead-Crows-Feet-Refinement-before-06-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1935;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-06-200x222.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8974;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:52:\"Forehead-Crows-Feet-Refinement-before-06-400x443.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29092;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4400","2736","_wp_attached_file","2026/07/Cheek-Filler-after-02.jpg"),
("4401","2736","_wp_attachment_metadata","a:6:{s:5:\"width\";i:600;s:6:\"height\";i:540;s:4:\"file\";s:33:\"2026/07/Cheek-Filler-after-02.jpg\";s:8:\"filesize\";i:124463;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-02-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9668;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4254;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-02-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13351;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7324;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-02-600x441.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21714;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Cheek-Filler-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1901;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-02-200x180.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5606;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-02-400x360.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14301;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4402","2737","_wp_attached_file","2026/07/Cheek-Filler-before-01.jpg"),
("4403","2737","_wp_attachment_metadata","a:6:{s:5:\"width\";i:600;s:6:\"height\";i:540;s:4:\"file\";s:34:\"2026/07/Cheek-Filler-before-01.jpg\";s:8:\"filesize\";i:114774;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-01-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8930;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4086;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-01-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12449;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6794;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-01-600x441.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19977;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Cheek-Filler-before-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1842;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-01-200x180.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5347;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-01-400x360.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12937;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4404","2738","_wp_attached_file","2026/07/Cheek-Filler-after-01.jpg"),
("4405","2738","_wp_attachment_metadata","a:6:{s:5:\"width\";i:600;s:6:\"height\";i:540;s:4:\"file\";s:33:\"2026/07/Cheek-Filler-after-01.jpg\";s:8:\"filesize\";i:116807;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-01-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4249;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-01-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13283;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-01-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7279;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-01-600x441.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20527;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Cheek-Filler-after-01-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1940;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-01-200x180.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5468;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Cheek-Filler-after-01-400x360.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13461;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4406","2739","_wp_attached_file","2026/07/Cheek-Filler-before-02.jpg"),
("4407","2739","_wp_attachment_metadata","a:6:{s:5:\"width\";i:600;s:6:\"height\";i:540;s:4:\"file\";s:34:\"2026/07/Cheek-Filler-before-02.jpg\";s:8:\"filesize\";i:119536;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-02-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4071;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-02-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12664;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7065;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-02-600x441.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20964;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Cheek-Filler-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1817;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-02-200x180.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5349;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"Cheek-Filler-before-02-400x360.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13485;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4409","2743","_wp_attached_file","2026/07/Under-Eye-Filler-before-03.jpg"),
("4410","2743","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2026/07/Under-Eye-Filler-before-03.jpg\";s:8:\"filesize\";i:325650;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9343;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-03-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4378;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40378;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22444;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10965;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35459;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1677;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4858;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14993;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28058;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-03-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42449;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-03-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76448;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4411","2744","_wp_attached_file","2026/07/Under-Eye-Filler-after-03.jpg"),
("4412","2744","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2026/07/Under-Eye-Filler-after-03.jpg\";s:8:\"filesize\";i:330209;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9006;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-03-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59146;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4315;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39864;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23629;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10878;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35298;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Under-Eye-Filler-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1624;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14750;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27625;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-03-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41949;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-03-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75441;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4413","2745","_wp_attached_file","2026/07/Under-Eye-Filler-before-04.jpg"),
("4414","2745","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2026/07/Under-Eye-Filler-before-04.jpg\";s:8:\"filesize\";i:316666;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8033;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-04-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4180;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37673;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19930;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9635;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34566;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"Under-Eye-Filler-before-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1560;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4190;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12875;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25622;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-before-04-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39932;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:39:\"Under-Eye-Filler-before-04-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72063;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4415","2746","_wp_attached_file","2026/07/Under-Eye-Filler-after-04.jpg"),
("4416","2746","_wp_attachment_metadata","a:6:{s:5:\"width\";i:1404;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2026/07/Under-Eye-Filler-after-04.jpg\";s:8:\"filesize\";i:339858;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8168;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-04-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62682;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4248;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40946;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20858;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9978;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38263;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Under-Eye-Filler-after-04-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1553;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4110;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13321;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27388;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:37:\"Under-Eye-Filler-after-04-800x456.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43422;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:38:\"Under-Eye-Filler-after-04-1200x684.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79384;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4417","2749","_wp_attached_file","2026/07/Face-Contouring-before.jpg"),
("4418","2749","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:34:\"2026/07/Face-Contouring-before.jpg\";s:8:\"filesize\";i:118648;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10636;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4646;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14711;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9205;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22216;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"Face-Contouring-before-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1886;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7853;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-before-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21571;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4419","2750","_wp_attached_file","2026/07/Face-Contouring-after.jpg"),
("4420","2750","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:33:\"2026/07/Face-Contouring-after.jpg\";s:8:\"filesize\";i:119552;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10739;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4660;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15136;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9313;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22345;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"Face-Contouring-after-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1883;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7969;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"Face-Contouring-after-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21871;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4421","2751","_wp_attached_file","2026/07/Face-Contouring-before-02.jpg"),
("4422","2751","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:37:\"2026/07/Face-Contouring-before-02.jpg\";s:8:\"filesize\";i:122096;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4509;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15937;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9515;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23630;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"Face-Contouring-before-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1755;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8081;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"Face-Contouring-before-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22896;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4423","2752","_wp_attached_file","2026/07/Face-Contouring-after-02.jpg"),
("4424","2752","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:36:\"2026/07/Face-Contouring-after-02.jpg\";s:8:\"filesize\";i:124970;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11187;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4669;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16169;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9592;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24473;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"Face-Contouring-after-02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1807;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8138;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"Face-Contouring-after-02-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23107;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4425","2754","_wp_attached_file","2026/07/PRP-Face-Rejuvenation-after-1.jpg"),
("4426","2754","_wp_attachment_metadata","a:6:{s:5:\"width\";i:431;s:6:\"height\";i:525;s:4:\"file\";s:41:\"2026/07/PRP-Face-Rejuvenation-after-1.jpg\";s:8:\"filesize\";i:112179;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-246x300.jpg\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4160;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-431x272.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12543;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7850;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-431x441.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19014;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"PRP-Face-Rejuvenation-after-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1825;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-200x244.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6858;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"PRP-Face-Rejuvenation-after-1-400x487.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18301;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("4427","2755","_wp_attached_file","2026/07/PRP-Face-Rejuvenation-before-1.jpg"),
("4428","2755","_wp_attachment_metadata","a:6:{s:5:\"width\";i:431;s:6:\"height\";i:525;s:4:\"file\";s:42:\"2026/07/PRP-Face-Rejuvenation-before-1.jpg\";s:8:\"filesize\";i:104024;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-246x300.jpg\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3909;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-431x272.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11780;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7412;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-431x441.jpg\";s:5:\"width\";i:431;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17675;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:40:\"PRP-Face-Rejuvenation-before-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1775;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-200x244.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6253;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:42:\"PRP-Face-Rejuvenation-before-1-400x487.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16569;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4429","2757","_wp_attached_file","2026/07/Radiesse-before-03.jpg"),
("4430","2757","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/07/Radiesse-before-03.jpg\";s:8:\"filesize\";i:195102;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5849;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23900;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12507;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38909;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2189;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10867;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34157;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4431","2758","_wp_attached_file","2026/07/Radiesse-after-03.jpg"),
("4432","2758","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/07/Radiesse-after-03.jpg\";s:8:\"filesize\";i:215862;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6438;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26690;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13933;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45108;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-03-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2368;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12227;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-03-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39379;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4433","2759","_wp_attached_file","2026/07/Radiesse-before-13.jpg"),
("4434","2759","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:30:\"2026/07/Radiesse-before-13.jpg\";s:8:\"filesize\";i:176267;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14597;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5505;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21740;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11828;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35350;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Radiesse-before-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2153;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10203;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Radiesse-before-13-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32853;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4435","2760","_wp_attached_file","2026/07/Radiesse-after-13.jpg"),
("4436","2760","_wp_attachment_metadata","a:6:{s:5:\"width\";i:433;s:6:\"height\";i:525;s:4:\"file\";s:29:\"2026/07/Radiesse-after-13.jpg\";s:8:\"filesize\";i:180845;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15247;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5744;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-433x272.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21738;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12127;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-433x441.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35954;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"Radiesse-after-13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2214;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-200x242.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10555;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"Radiesse-after-13-400x485.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33677;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4437","922","_edit_lock","1783006185:1"),
("4438","1203","_edit_lock","1783008100:1"),
("4439","968","_edit_lock","1782999594:1"),
("4440","1649","_edit_lock","1782999593:1"),
("4441","1651","_edit_lock","1782999810:1"),
("4442","2767","postcart","show"),
("4443","2767","_postcart","field_6a1ecc5c3bda3"),
("4444","2767","treatment","Masseter Botox"),
("4445","2767","_treatment","field_6a1ecc5c3bddb"),
("4446","2768","postcart","show"),
("4447","2768","_postcart","field_6a1ecc5c3bda3"),
("4448","2768","treatment","Botox"),
("4449","2768","_treatment","field_6a1ecc5c3bddb"),
("4450","2769","postcart","show"),
("4451","2769","_postcart","field_6a1ecc5c3bda3"),
("4452","2769","treatment","Fat Dissolving"),
("4453","2769","_treatment","field_6a1ecc5c3bddb"),
("4454","2770","postcart","show"),
("4455","2770","_postcart","field_6a1ecc5c3bda3"),
("4456","2770","treatment","Botox"),
("4457","2770","_treatment","field_6a1ecc5c3bddb"),
("4458","2771","postcart","show"),
("4459","2771","_postcart","field_6a1ecc5c3bda3"),
("4460","2771","treatment","Botox"),
("4461","2771","_treatment","field_6a1ecc5c3bddb"),
("4462","2772","postcart","show"),
("4463","2772","_postcart","field_6a1ecc5c3bda3"),
("4464","2772","treatment","Mesotherapy"),
("4465","2772","_treatment","field_6a1ecc5c3bddb"),
("4466","2773","postcart","show"),
("4467","2773","_postcart","field_6a1ecc5c3bda3"),
("4468","2773","treatment","Botox, Skin Boosters"),
("4469","2773","_treatment","field_6a1ecc5c3bddb"),
("4470","2774","postcart","show"),
("4471","2774","_postcart","field_6a1ecc5c3bda3"),
("4472","2774","treatment","Botox"),
("4473","2774","_treatment","field_6a1ecc5c3bddb"),
("4474","948","_edit_lock","1782999946:1"),
("4475","2775","postcart","show"),
("4476","2775","_postcart","field_6a1ecc5c3bda3"),
("4477","2775","treatment","Skin Lesion Removal"),
("4478","2775","_treatment","field_6a1ecc5c3bddb"),
("4480","2776","_wp_attached_file","2026/07/Main-BG-new-copy.jpg"),
("4481","2776","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1572;s:4:\"file\";s:28:\"2026/07/Main-BG-new-copy.jpg\";s:8:\"filesize\";i:175509;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7018;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Main-BG-new-copy-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52083;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3950;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32453;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Main-BG-new-copy-1536x943.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:943;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101230;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2048x1258.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153058;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19069;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8160;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29410;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"Main-BG-new-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1621;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-200x123.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3804;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-400x246.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11240;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-600x368.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21935;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-800x491.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34736;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:29:\"Main-BG-new-copy-1200x737.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67943;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4484","2782","_wp_attached_file","2026/07/DrSoheila-Picture-Homepage-copy.jpg"),
("4485","2782","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:43:\"2026/07/DrSoheila-Picture-Homepage-copy.jpg\";s:8:\"filesize\";i:29511;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8410;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4824;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15992;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9506;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25538;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"DrSoheila-Picture-Homepage-copy-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1935;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8410;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23208;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4486","2783","_wp_attached_file","2026/07/DrSoheila-Picture-Homepage-copy-1.jpg"),
("4487","2783","_wp_attachment_metadata","a:6:{s:5:\"width\";i:493;s:6:\"height\";i:740;s:4:\"file\";s:45:\"2026/07/DrSoheila-Picture-Homepage-copy-1.jpg\";s:8:\"filesize\";i:178368;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"DrSoheila-Picture-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8327;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"DrSoheila-Picture-Homepage-copy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4777;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:45:\"DrSoheila-Picture-Homepage-copy-1-493x272.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17025;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:45:\"DrSoheila-Picture-Homepage-copy-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9462;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:45:\"DrSoheila-Picture-Homepage-copy-1-493x441.jpg\";s:5:\"width\";i:493;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27077;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:43:\"DrSoheila-Picture-Homepage-copy-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1922;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:45:\"DrSoheila-Picture-Homepage-copy-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8327;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:45:\"DrSoheila-Picture-Homepage-copy-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23542;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:4:\"1.78\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 15 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1777997495\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:15:\"6.7649998656528\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:18:\"0.0060975609756098\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4489","2785","_wp_attached_file","2026/07/Main-BG-new-copy-2.jpg"),
("4490","2785","_wp_attachment_metadata","a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1572;s:4:\"file\";s:30:\"2026/07/Main-BG-new-copy-2.jpg\";s:8:\"filesize\";i:170308;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6722;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Main-BG-new-copy-2-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3695;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30903;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"Main-BG-new-copy-2-1536x943.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:943;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97405;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"Main-BG-new-copy-2-2048x1258.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148761;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-669x272.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17725;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7764;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27834;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"Main-BG-new-copy-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1477;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-200x123.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3553;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-400x246.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10607;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-600x368.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20922;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"Main-BG-new-copy-2-800x491.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33036;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:31:\"Main-BG-new-copy-2-1200x737.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:737;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64981;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4491","2787","_wp_attached_file","2026/07/Hyperhidrosis.mp4"),
("4492","2787","_wp_attachment_metadata","a:12:{s:7:\"bitrate\";i:8305244;s:8:\"filesize\";i:44941515;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:42;s:16:\"length_formatted\";s:4:\"0:42\";s:5:\"width\";i:720;s:6:\"height\";i:1280;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:16:\"H.264/MPEG-4 AVC\";s:5:\"audio\";a:9:{s:10:\"dataformat\";s:3:\"mp4\";s:7:\"bitrate\";i:192917;s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.13670422335600906915686891807126812636852264404296875;}s:17:\"created_timestamp\";i:1783003242;}"),
("4497","2804","_wp_attached_file","2026/07/Aesthefill-200x200-copy.png"),
("4498","2804","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2026/07/Aesthefill-200x200-copy.png\";s:8:\"filesize\";i:17672;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Aesthefill-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12558;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"Aesthefill-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3719;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4499","2805","_wp_attached_file","2026/07/Lanluma-200x200-copy.png"),
("4500","2805","_wp_attachment_metadata","a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2026/07/Lanluma-200x200-copy.png\";s:8:\"filesize\";i:15980;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lanluma-200x200-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10984;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"Lanluma-200x200-copy-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3569;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4501","2617","_edit_lock","1783006454:1"),
("4504","2043","_edit_lock","1783008226:1"),
("4505","2119","_edit_lock","1783008229:1"),
("4507","2838","_wp_attached_file","2026/07/lip-flip-botox-hero.jpg"),
("4508","2838","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:31:\"2026/07/lip-flip-botox-hero.jpg\";s:8:\"filesize\";i:56558;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4310;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20650;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8966;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32268;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"lip-flip-botox-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1835;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8891;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27356;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"lip-flip-botox-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53931;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:802:\"{\"prompt\":\"macro beauty photograph of a woman\'s natural soft lips, subtle relaxed upper lip with gentle smile, smooth glowing skin, professional aesthetic clinic photography, soft natural light, bright airy tones, high detail, no text\",\"originalPrompt\":\"macro beauty photograph of a woman\'s natural soft lips, subtle relaxed upper lip with gentle smile, smooth glowing skin, professional aesthetic clinic photography, soft natural light, bright airy tones, high detail, no text\",\"width\":512,\"height\":512,\"seed\":41001,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4509","2838","_wp_attachment_image_alt","Lip Flip Botox treatment - natural subtle lip enhancement"),
("4510","2841","_wp_attached_file","2026/07/jalupro-skin-booster-hero.jpg"),
("4511","2841","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:37:\"2026/07/jalupro-skin-booster-hero.jpg\";s:8:\"filesize\";i:54973;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10971;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19035;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9862;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29835;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"jalupro-skin-booster-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2172;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10971;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29122;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"jalupro-skin-booster-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53330;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:844:\"{\"prompt\":\"aesthetic practitioner in white gloves performing a gentle skin booster micro-injection on a womans cheek in a bright clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"aesthetic practitioner in white gloves performing a gentle skin booster micro-injection on a womans cheek in a bright clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":42002,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4512","2841","_wp_attachment_image_alt","Jalupro skin booster treatment in clinic"),
("4513","2843","_wp_attached_file","2026/07/profhilo-skin-booster-hero.jpg"),
("4514","2843","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:38:\"2026/07/profhilo-skin-booster-hero.jpg\";s:8:\"filesize\";i:52414;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9771;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5009;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19120;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9909;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30060;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"profhilo-skin-booster-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2009;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9771;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27216;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"profhilo-skin-booster-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50476;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:836:\"{\"prompt\":\"portrait of a woman with luminous deeply hydrated glowing facial skin, hands gently framing her jawline, dewy complexion, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"portrait of a woman with luminous deeply hydrated glowing facial skin, hands gently framing her jawline, dewy complexion, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":42008,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4515","2843","_wp_attachment_image_alt","Profhilo skin booster - deeply hydrated glowing skin"),
("4516","2845","_wp_attached_file","2026/07/prp-face-rejuvenation-hero.jpg"),
("4517","2845","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:38:\"2026/07/prp-face-rejuvenation-hero.jpg\";s:8:\"filesize\";i:57957;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11895;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5534;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15009;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9421;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27477;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"prp-face-rejuvenation-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2195;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11895;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31154;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56331;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:854:\"{\"prompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":42005,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4518","2845","_wp_attachment_image_alt","PRP face rejuvenation - platelet rich plasma vials"),
("4519","2848","_wp_attached_file","2026/07/sunekos-skin-booster-hero.jpg"),
("4520","2848","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:37:\"2026/07/sunekos-skin-booster-hero.jpg\";s:8:\"filesize\";i:77146;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11401;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5149;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27132;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11616;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43402;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"sunekos-skin-booster-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1994;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11401;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36538;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"sunekos-skin-booster-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71260;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:772:\"{\"prompt\":\"close-up of a womans radiant eye and cheek area with dewy smooth skin, soft window light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"close-up of a womans radiant eye and cheek area with dewy smooth skin, soft window light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43003,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4521","2848","_wp_attachment_image_alt","Sunekos skin booster - radiant eye and cheek area"),
("4522","2850","_wp_attached_file","2026/07/nctf-skin-booster-hero.jpg"),
("4523","2850","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:34:\"2026/07/nctf-skin-booster-hero.jpg\";s:8:\"filesize\";i:53242;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5067;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19115;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9557;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30349;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"nctf-skin-booster-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2010;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10242;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27882;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:34:\"nctf-skin-booster-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51150;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:848:\"{\"prompt\":\"beauty portrait of a woman with flawless glass-skin complexion, gloved hand of practitioner near her forehead with fine needle, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"beauty portrait of a woman with flawless glass-skin complexion, gloved hand of practitioner near her forehead with fine needle, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43004,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4524","2850","_wp_attachment_image_alt","NCTF skin booster - glass skin complexion"),
("4525","2852","_wp_attached_file","2026/07/prp-face-rejuvenation-hero-1.jpg"),
("4526","2852","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:40:\"2026/07/prp-face-rejuvenation-hero-1.jpg\";s:8:\"filesize\";i:53384;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5875;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19929;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11441;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33382;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2276;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11289;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29180;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-1-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52341;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:854:\"{\"prompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43005,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4527","2852","_wp_attachment_image_alt","PRP face rejuvenation - platelet rich plasma vials"),
("4528","2853","_wp_attached_file","2026/07/prp-face-rejuvenation-hero-2.jpg"),
("4529","2853","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:40:\"2026/07/prp-face-rejuvenation-hero-2.jpg\";s:8:\"filesize\";i:60933;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12761;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6219;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21321;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11232;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33130;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2333;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12761;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33301;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-2-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59617;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:854:\"{\"prompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43016,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4530","2853","_wp_attachment_image_alt","PRP face rejuvenation - platelet rich plasma vials"),
("4531","2854","_wp_attached_file","2026/07/prp-face-rejuvenation-hero-3.jpg"),
("4532","2854","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:40:\"2026/07/prp-face-rejuvenation-hero-3.jpg\";s:8:\"filesize\";i:50711;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10500;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5361;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14493;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8956;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25864;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2143;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10500;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27673;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-3-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49825;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:854:\"{\"prompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43027,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4533","2854","_wp_attachment_image_alt","PRP face rejuvenation - platelet rich plasma vials"),
("4534","2855","_wp_attached_file","2026/07/prp-face-rejuvenation-hero-4.jpg"),
("4535","2855","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:40:\"2026/07/prp-face-rejuvenation-hero-4.jpg\";s:8:\"filesize\";i:58021;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5620;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15621;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9367;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27398;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2293;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12217;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31588;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-4-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56589;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:854:\"{\"prompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43038,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4536","2855","_wp_attachment_image_alt","PRP face rejuvenation - platelet rich plasma vials"),
("4537","2856","_wp_attached_file","2026/07/prp-face-rejuvenation-hero-5.jpg"),
("4538","2856","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:40:\"2026/07/prp-face-rejuvenation-hero-5.jpg\";s:8:\"filesize\";i:58065;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5751;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15963;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9718;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28005;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2284;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11891;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31336;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-5-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56788;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:854:\"{\"prompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43049,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4539","2856","_wp_attachment_image_alt","PRP face rejuvenation - platelet rich plasma vials"),
("4540","2857","_wp_attached_file","2026/07/prp-face-rejuvenation-hero-6.jpg"),
("4541","2857","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:40:\"2026/07/prp-face-rejuvenation-hero-6.jpg\";s:8:\"filesize\";i:46318;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9928;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5218;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12717;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7654;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21986;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"prp-face-rejuvenation-hero-6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2138;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9928;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25425;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"prp-face-rejuvenation-hero-6-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45519;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:854:\"{\"prompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden platelet-rich plasma serum in glass vials on a clinic tray, woman with fresh rejuvenated skin softly blurred in background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43060,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4542","2857","_wp_attachment_image_alt","PRP face rejuvenation - platelet rich plasma vials"),
("4543","2858","_wp_attached_file","2026/07/mesotherapy-skin-rejuvenation-hero.jpg"),
("4544","2858","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:46:\"2026/07/mesotherapy-skin-rejuvenation-hero.jpg\";s:8:\"filesize\";i:58181;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5606;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21036;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10886;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33185;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:44:\"mesotherapy-skin-rejuvenation-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2198;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11530;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30836;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:46:\"mesotherapy-skin-rejuvenation-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56031;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:852:\"{\"prompt\":\"woman receiving mesotherapy micro-injection on her cheekbone from practitioner, refreshed youthful skin, bright clinical setting, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"woman receiving mesotherapy micro-injection on her cheekbone from practitioner, refreshed youthful skin, bright clinical setting, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43006,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4545","2858","_wp_attachment_image_alt","Mesotherapy skin rejuvenation treatment"),
("4546","2860","_wp_attached_file","2026/07/mesotherapy-glowing-skin-hero.jpg"),
("4547","2860","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:41:\"2026/07/mesotherapy-glowing-skin-hero.jpg\";s:8:\"filesize\";i:57719;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5361;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21606;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10397;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33653;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"mesotherapy-glowing-skin-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2136;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10328;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29075;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:41:\"mesotherapy-glowing-skin-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55073;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:808:\"{\"prompt\":\"backlit beauty portrait of a woman with radiant glowing skin, golden hour light on face, serene expression, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"backlit beauty portrait of a woman with radiant glowing skin, golden hour light on face, serene expression, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43007,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4548","2860","_wp_attachment_image_alt","Mesotherapy for glowing skin"),
("4549","2862","_wp_attached_file","2026/07/nefertiti-neck-lift-hero.jpg"),
("4550","2862","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:36:\"2026/07/nefertiti-neck-lift-hero.jpg\";s:8:\"filesize\";i:51785;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4261;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17170;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8173;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27796;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"nefertiti-neck-lift-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1825;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8981;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25483;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"nefertiti-neck-lift-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48830;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:818:\"{\"prompt\":\"elegant side profile of a womans smooth lifted neck and defined jawline, chin slightly raised, graceful posture, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"elegant side profile of a womans smooth lifted neck and defined jawline, chin slightly raised, graceful posture, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43008,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4551","2862","_wp_attachment_image_alt","Nefertiti neck lift - smooth lifted neck and jawline"),
("4552","2864","_wp_attached_file","2026/07/trap-barbie-botox-hero.jpg"),
("4553","2864","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:34:\"2026/07/trap-barbie-botox-hero.jpg\";s:8:\"filesize\";i:39310;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7879;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3942;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13606;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7222;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22295;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"trap-barbie-botox-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1761;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7879;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20590;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:34:\"trap-barbie-botox-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38823;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:820:\"{\"prompt\":\"rear three-quarter view of a woman with slim relaxed shoulders and elongated neck, bare shoulders, hair in a bun, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"rear three-quarter view of a woman with slim relaxed shoulders and elongated neck, bare shoulders, hair in a bun, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43009,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4554","2864","_wp_attachment_image_alt","Trap Barbie Botox - slim shoulders and elongated neck"),
("4555","2866","_wp_attached_file","2026/07/chin-filler-hero.jpg"),
("4556","2866","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:28:\"2026/07/chin-filler-hero.jpg\";s:8:\"filesize\";i:53593;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8377;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3760;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17580;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7596;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28935;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"chin-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1706;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8377;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25795;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"chin-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50857;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:826:\"{\"prompt\":\"close-up side profile of a womans balanced defined chin and lower face, practitioner hand with white marking pencil, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"close-up side profile of a womans balanced defined chin and lower face, practitioner hand with white marking pencil, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43010,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4557","2866","_wp_attachment_image_alt","Chin filler - balanced defined chin profile"),
("4558","2868","_wp_attached_file","2026/07/jawline-filler-hero.jpg"),
("4559","2868","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:31:\"2026/07/jawline-filler-hero.jpg\";s:8:\"filesize\";i:57717;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9920;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5047;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20527;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9774;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34191;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"jawline-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2072;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9920;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28174;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"jawline-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54358;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:788:\"{\"prompt\":\"sharp sculpted jawline of a woman in soft dramatic side light, close crop of lower face and neck, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"sharp sculpted jawline of a woman in soft dramatic side light, close crop of lower face and neck, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43011,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4560","2868","_wp_attachment_image_alt","Jawline filler - sharp sculpted jawline"),
("4561","2870","_wp_attached_file","2026/07/face-contouring-hero.jpg"),
("4562","2870","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:32:\"2026/07/face-contouring-hero.jpg\";s:8:\"filesize\";i:56671;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10063;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4843;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19471;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9523;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31150;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"face-contouring-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1955;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10063;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28625;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"face-contouring-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53951;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:838:\"{\"prompt\":\"sculpted contoured female face with high cheekbones, beauty studio portrait, gentle shadows accentuating facial structure, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"sculpted contoured female face with high cheekbones, beauty studio portrait, gentle shadows accentuating facial structure, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43012,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4563","2870","_wp_attachment_image_alt","Face contouring with dermal fillers"),
("4564","2872","_wp_attached_file","2026/07/double-chin-treatment-hero.jpg"),
("4565","2872","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:38:\"2026/07/double-chin-treatment-hero.jpg\";s:8:\"filesize\";i:56891;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10013;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4712;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17180;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8669;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28247;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"double-chin-treatment-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1942;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10013;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28586;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"double-chin-treatment-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54211;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:786:\"{\"prompt\":\"woman gently touching under her chin showing a slim defined chin profile, clean beauty portrait, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"woman gently touching under her chin showing a slim defined chin profile, clean beauty portrait, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43013,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4566","2872","_wp_attachment_image_alt","Double chin fat dissolving treatment"),
("4567","2874","_wp_attached_file","2026/07/high-dose-vitamin-c-iv-hero.jpg"),
("4568","2874","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:39:\"2026/07/high-dose-vitamin-c-iv-hero.jpg\";s:8:\"filesize\";i:55274;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6402;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21149;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11325;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33410;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"high-dose-vitamin-c-iv-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2436;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11672;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30415;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:39:\"high-dose-vitamin-c-iv-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53735;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:824:\"{\"prompt\":\"IV infusion bag with bright citrus orange slices beside it in a modern wellness lounge, fresh vibrant clinic scene, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"IV infusion bag with bright citrus orange slices beside it in a modern wellness lounge, fresh vibrant clinic scene, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43014,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4569","2874","_wp_attachment_image_alt","High dose vitamin C IV drip therapy"),
("4570","2876","_wp_attached_file","2026/07/glutathione-iv-hero.jpg"),
("4571","2876","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:31:\"2026/07/glutathione-iv-hero.jpg\";s:8:\"filesize\";i:61152;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12640;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6130;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21079;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11804;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35053;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"glutathione-iv-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2249;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12640;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33471;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"glutathione-iv-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59446;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:806:\"{\"prompt\":\"woman relaxing in a comfortable clinic chair receiving an IV drip infusion, serene bright wellness clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"woman relaxing in a comfortable clinic chair receiving an IV drip infusion, serene bright wellness clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43015,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4572","2876","_wp_attachment_image_alt","Glutathione IV infusion for skin brightening"),
("4573","2878","_wp_attached_file","2026/07/nad-iv-hero.jpg"),
("4574","2878","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:23:\"2026/07/nad-iv-hero.jpg\";s:8:\"filesize\";i:51720;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5435;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17966;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9926;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29025;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"nad-iv-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2133;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10770;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28232;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:23:\"nad-iv-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51834;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:810:\"{\"prompt\":\"close-up of an IV drip chamber and line in a modern wellness clinic, cool fresh tones, energetic atmosphere, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"close-up of an IV drip chamber and line in a modern wellness clinic, cool fresh tones, energetic atmosphere, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43016,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4575","2878","_wp_attachment_image_alt","NAD+ IV therapy for energy and longevity"),
("4576","2880","_wp_attached_file","2026/07/vitamin-injections-hero.jpg"),
("4577","2880","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:35:\"2026/07/vitamin-injections-hero.jpg\";s:8:\"filesize\";i:63705;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13275;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7331;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27889;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15179;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43546;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"vitamin-injections-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2606;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13275;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34683;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"vitamin-injections-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61780;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:822:\"{\"prompt\":\"glass vitamin ampoules and a fine syringe arranged on a clinic tray, colorful vitamin vials, bright clean setting, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"glass vitamin ampoules and a fine syringe arranged on a clinic tray, colorful vitamin vials, bright clean setting, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43017,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4578","2880","_wp_attachment_image_alt","Vitamin injections - B12 and nutrient shots"),
("4579","2882","_wp_attached_file","2026/07/stem-cell-iv-hero.jpg"),
("4580","2882","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:29:\"2026/07/stem-cell-iv-hero.jpg\";s:8:\"filesize\";i:67579;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13428;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6823;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25970;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13233;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40182;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"stem-cell-iv-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2445;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13428;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36420;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"stem-cell-iv-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65372;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:844:\"{\"prompt\":\"scientific laboratory vials with regenerative serum and an IV stand in a state-of-the-art clinic, futuristic clean aesthetic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"scientific laboratory vials with regenerative serum and an IV stand in a state-of-the-art clinic, futuristic clean aesthetic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43018,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4581","2882","_wp_attachment_image_alt","Stem cell IV regenerative therapy"),
("4582","2884","_wp_attached_file","2026/07/cheek-filler-hero.jpg"),
("4583","2884","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:29:\"2026/07/cheek-filler-hero.jpg\";s:8:\"filesize\";i:58668;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10029;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4915;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20431;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9826;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33240;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"cheek-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1965;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10029;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29197;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"cheek-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55691;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:756:\"{\"prompt\":\"close-up of a womans lifted high cheekbone in soft beauty light, elegant profile, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"close-up of a womans lifted high cheekbone in soft beauty light, elegant profile, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43019,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4584","2884","_wp_attachment_image_alt","Cheek filler - lifted high cheekbones"),
("4585","2886","_wp_attached_file","2026/07/temple-filler-hero.jpg"),
("4586","2886","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:30:\"2026/07/temple-filler-hero.jpg\";s:8:\"filesize\";i:48807;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9154;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4568;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17384;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9100;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28024;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"temple-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1878;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9154;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25233;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"temple-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47052;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:806:\"{\"prompt\":\"woman with hair pulled back showing smooth full temple and upper face, side beauty portrait, gentle light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"woman with hair pulled back showing smooth full temple and upper face, side beauty portrait, gentle light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43020,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4587","2886","_wp_attachment_image_alt","Temple filler - smooth full temple area"),
("4588","2888","_wp_attached_file","2026/07/face-lift-with-filler-hero.jpg"),
("4589","2888","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:38:\"2026/07/face-lift-with-filler-hero.jpg\";s:8:\"filesize\";i:55859;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10404;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5064;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19922;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9893;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30850;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"face-lift-with-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2007;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10404;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28808;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"face-lift-with-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53634;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:802:\"{\"prompt\":\"elegant mature woman with lifted youthful facial contours smiling softly, natural light beauty portrait, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"elegant mature woman with lifted youthful facial contours smiling softly, natural light beauty portrait, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43021,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4590","2888","_wp_attachment_image_alt","Liquid face lift with dermal fillers"),
("4591","2890","_wp_attached_file","2026/07/smile-lines-filler-hero.jpg"),
("4592","2890","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:35:\"2026/07/smile-lines-filler-hero.jpg\";s:8:\"filesize\";i:52140;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10092;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4939;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16552;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9193;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28009;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"smile-lines-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2017;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10092;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27728;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"smile-lines-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50709;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:776:\"{\"prompt\":\"close-up of a womans genuine soft smile with smooth cheeks, fresh natural look, warm light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"close-up of a womans genuine soft smile with smooth cheeks, fresh natural look, warm light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43022,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4593","2890","_wp_attachment_image_alt","Smile lines and nasolabial fold filler"),
("4594","2892","_wp_attached_file","2026/07/derma-pen-microneedling-hero.jpg"),
("4595","2892","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:40:\"2026/07/derma-pen-microneedling-hero.jpg\";s:8:\"filesize\";i:58531;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5865;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25387;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11784;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37729;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:38:\"derma-pen-microneedling-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2257;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11374;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30594;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:40:\"derma-pen-microneedling-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56036;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:834:\"{\"prompt\":\"derma pen microneedling device gliding over a womans cheek held by gloved practitioner, professional treatment close-up, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"derma pen microneedling device gliding over a womans cheek held by gloved practitioner, professional treatment close-up, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43023,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4596","2892","_wp_attachment_image_alt","Derma pen microneedling treatment"),
("4597","2894","_wp_attached_file","2026/07/exosome-microneedling-hero.jpg"),
("4598","2894","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:38:\"2026/07/exosome-microneedling-hero.jpg\";s:8:\"filesize\";i:64550;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11713;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5741;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24661;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11454;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37839;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"exosome-microneedling-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2207;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11713;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32829;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"exosome-microneedling-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61329;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:836:\"{\"prompt\":\"scientific exosome serum ampoule being applied to glowing skin during microneedling treatment, laboratory-grade skincare, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"scientific exosome serum ampoule being applied to glowing skin during microneedling treatment, laboratory-grade skincare, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43024,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4599","2894","_wp_attachment_image_alt","Exosome microneedling regenerative treatment"),
("4600","2896","_wp_attached_file","2026/07/growth-factor-microneedling-hero.jpg"),
("4601","2896","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:44:\"2026/07/growth-factor-microneedling-hero.jpg\";s:8:\"filesize\";i:52081;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5440;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26337;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12425;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37789;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:42:\"growth-factor-microneedling-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2032;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9792;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27042;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:44:\"growth-factor-microneedling-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49863;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:836:\"{\"prompt\":\"golden serum droplet on glowing skin with microneedling device softly blurred in background, regenerative skincare macro, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"golden serum droplet on glowing skin with microneedling device softly blurred in background, regenerative skincare macro, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43025,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}");

INSERT IGNORE INTO `wp_postmeta` VALUES 
("4602","2896","_wp_attachment_image_alt","Growth factor microneedling treatment"),
("4603","2898","_wp_attached_file","2026/07/pigmentation-treatment-hero.jpg"),
("4604","2898","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:39:\"2026/07/pigmentation-treatment-hero.jpg\";s:8:\"filesize\";i:60483;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10450;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5029;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20069;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10057;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33143;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"pigmentation-treatment-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1959;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10450;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30176;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:39:\"pigmentation-treatment-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57129;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:804:\"{\"prompt\":\"half-lit portrait of a woman with even clear skin tone, flawless complexion, clean dermatology aesthetic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"half-lit portrait of a woman with even clear skin tone, flawless complexion, clean dermatology aesthetic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43026,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4605","2898","_wp_attachment_image_alt","Mesotherapy for pigmentation - even clear skin tone"),
("4606","2900","_wp_attached_file","2026/07/subcision-acne-scar-hero.jpg"),
("4607","2900","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:36:\"2026/07/subcision-acne-scar-hero.jpg\";s:8:\"filesize\";i:62839;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11186;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5170;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21607;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10242;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34281;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"subcision-acne-scar-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2091;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11186;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31834;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"subcision-acne-scar-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59635;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:830:\"{\"prompt\":\"dermatologist in gloves examining a womans smooth cheek skin texture, acne scar treatment consultation, bright clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"dermatologist in gloves examining a womans smooth cheek skin texture, acne scar treatment consultation, bright clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43027,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4608","2900","_wp_attachment_image_alt","Subcision acne scar treatment - smooth skin texture"),
("4609","2902","_wp_attached_file","2026/07/skin-tag-mole-removal-hero.jpg"),
("4610","2902","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:38:\"2026/07/skin-tag-mole-removal-hero.jpg\";s:8:\"filesize\";i:74385;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13016;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6142;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26687;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12465;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40731;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"skin-tag-mole-removal-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2300;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13016;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37013;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"skin-tag-mole-removal-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69229;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:810:\"{\"prompt\":\"dermatologist examining a patients skin with a dermatoscope, professional skin check, bright medical office, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"dermatologist examining a patients skin with a dermatoscope, professional skin check, bright medical office, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43028,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4611","2902","_wp_attachment_image_alt","Skin tag and mole removal - dermatoscope examination"),
("4612","2904","_wp_attached_file","2026/07/mesotherapy-fat-dissolving-hero.jpg"),
("4613","2904","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:43:\"2026/07/mesotherapy-fat-dissolving-hero.jpg\";s:8:\"filesize\";i:65155;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12196;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5677;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18618;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9758;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31047;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:41:\"mesotherapy-fat-dissolving-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2254;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12196;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33487;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:43:\"mesotherapy-fat-dissolving-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62286;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:804:\"{\"prompt\":\"practitioner in gloves marking a womans toned abdomen for lipolysis injections, clinical body contouring, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"practitioner in gloves marking a womans toned abdomen for lipolysis injections, clinical body contouring, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43029,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4614","2904","_wp_attachment_image_alt","Mesotherapy fat dissolving lipolysis injections"),
("4615","2906","_wp_attached_file","2026/07/cellulite-treatment-hero.jpg"),
("4616","2906","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:36:\"2026/07/cellulite-treatment-hero.jpg\";s:8:\"filesize\";i:42214;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9103;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4151;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13363;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7224;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20756;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"cellulite-treatment-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1833;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9103;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23282;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"cellulite-treatment-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42085;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:770:\"{\"prompt\":\"smooth toned thighs and legs of a woman, body skincare, clean spa aesthetic, soft light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"smooth toned thighs and legs of a woman, body skincare, clean spa aesthetic, soft light, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43030,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4617","2906","_wp_attachment_image_alt","Cellulite treatment - smooth toned skin"),
("4618","2908","_wp_attached_file","2026/07/body-fat-dissolving-hero.jpg"),
("4619","2908","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:36:\"2026/07/body-fat-dissolving-hero.jpg\";s:8:\"filesize\";i:56732;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10578;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5050;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16635;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9201;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28481;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:34:\"body-fat-dissolving-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1985;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10578;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29185;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:36:\"body-fat-dissolving-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53993;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:784:\"{\"prompt\":\"slim female waist with a measuring tape draped loosely, body contouring concept, bright studio, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"slim female waist with a measuring tape draped loosely, body contouring concept, bright studio, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43031,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4620","2908","_wp_attachment_image_alt","Body fat dissolving injections - contoured waist"),
("4621","2910","_wp_attached_file","2026/07/underarm-hyperhidrosis-hero.jpg"),
("4622","2910","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:39:\"2026/07/underarm-hyperhidrosis-hero.jpg\";s:8:\"filesize\";i:56264;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5276;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19874;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10340;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32688;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:37:\"underarm-hyperhidrosis-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2053;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10520;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29168;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:39:\"underarm-hyperhidrosis-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53578;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:784:\"{\"prompt\":\"confident woman in white top with raised arm showing fresh dry underarm, clean bright portrait, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"confident woman in white top with raised arm showing fresh dry underarm, clean bright portrait, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43032,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4623","2910","_wp_attachment_image_alt","Underarm hyperhidrosis Botox - fresh and dry"),
("4624","2912","_wp_attached_file","2026/07/hands-feet-hyperhidrosis-hero.jpg"),
("4625","2912","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:41:\"2026/07/hands-feet-hyperhidrosis-hero.jpg\";s:8:\"filesize\";i:40502;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4672;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16871;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9012;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25646;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:39:\"hands-feet-hyperhidrosis-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1962;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8742;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22487;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:41:\"hands-feet-hyperhidrosis-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40669;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:784:\"{\"prompt\":\"close-up of a womans calm open palms held together, dry healthy hands, soft neutral background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"close-up of a womans calm open palms held together, dry healthy hands, soft neutral background, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43033,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4626","2912","_wp_attachment_image_alt","Hands and feet hyperhidrosis treatment"),
("4627","2914","_wp_attached_file","2026/07/lip-filler-treatment-hero.jpg"),
("4628","2914","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:37:\"2026/07/lip-filler-treatment-hero.jpg\";s:8:\"filesize\";i:69209;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10543;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5051;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27245;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11260;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40998;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:35:\"lip-filler-treatment-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1963;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10543;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32382;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:37:\"lip-filler-treatment-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63941;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:838:\"{\"prompt\":\"full defined glossy lips of a woman receiving a gentle lip filler injection with fine needle by gloved hand, macro beauty, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"full defined glossy lips of a woman receiving a gentle lip filler injection with fine needle by gloved hand, macro beauty, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43034,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4629","2914","_wp_attachment_image_alt","Lip filler treatment - full defined lips"),
("4630","2916","_wp_attached_file","2026/07/tear-trough-filler-hero.jpg"),
("4631","2916","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:35:\"2026/07/tear-trough-filler-hero.jpg\";s:8:\"filesize\";i:59479;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9446;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4473;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21996;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9826;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32809;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:33:\"tear-trough-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1768;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9446;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29484;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:35:\"tear-trough-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56264;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:806:\"{\"prompt\":\"macro of a womans bright refreshed under-eye area and eye, smooth skin without dark circles, crisp detail, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"macro of a womans bright refreshed under-eye area and eye, smooth skin without dark circles, crisp detail, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43035,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4632","2916","_wp_attachment_image_alt","Tear trough filler - bright refreshed under-eye"),
("4633","2918","_wp_attached_file","2026/07/under-eye-filler-hero.jpg"),
("4634","2918","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:33:\"2026/07/under-eye-filler-hero.jpg\";s:8:\"filesize\";i:67331;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4968;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22383;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10546;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37405;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:31:\"under-eye-filler-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1944;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10695;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32940;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:33:\"under-eye-filler-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63472;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:848:\"{\"prompt\":\"womans eyes looking at camera with smooth bright under-eye skin, practitioner holding fine cannula near cheek, clinical beauty, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"womans eyes looking at camera with smooth bright under-eye skin, practitioner holding fine cannula near cheek, clinical beauty, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43036,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4635","2918","_wp_attachment_image_alt","Under eye filler treatment"),
("4636","2920","_wp_attached_file","2026/07/prp-hair-loss-hero.jpg"),
("4637","2920","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:30:\"2026/07/prp-hair-loss-hero.jpg\";s:8:\"filesize\";i:80631;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14072;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6938;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27470;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14644;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48313;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"prp-hair-loss-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2385;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14072;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41009;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"prp-hair-loss-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75578;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:840:\"{\"prompt\":\"practitioner performing PRP scalp injection on a patients hairline parting, golden plasma syringe, hair restoration clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"practitioner performing PRP scalp injection on a patients hairline parting, golden plasma syringe, hair restoration clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43037,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4638","2920","_wp_attachment_image_alt","PRP hair loss treatment - scalp injection"),
("4639","2922","_wp_attached_file","2026/07/mesotherapy-hair-loss-hero.jpg"),
("4640","2922","_wp_attachment_metadata","a:6:{s:5:\"width\";i:627;s:6:\"height\";i:940;s:4:\"file\";s:38:\"2026/07/mesotherapy-hair-loss-hero.jpg\";s:8:\"filesize\";i:71064;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13419;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6637;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-627x272.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22568;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-320x202.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12197;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-627x441.jpg\";s:5:\"width\";i:627;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36814;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:36:\"mesotherapy-hair-loss-hero-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2460;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13419;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-400x600.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36642;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:38:\"mesotherapy-hair-loss-hero-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67380;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:812:\"{\"prompt\":\"woman with thick healthy hair receiving scalp mesotherapy micro-injections along hair parting, bright clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"originalPrompt\":\"woman with thick healthy hair receiving scalp mesotherapy micro-injections along hair parting, bright clinic, professional aesthetic clinic photography, soft natural light, bright airy tones, photorealistic, high detail, no text\",\"width\":512,\"height\":512,\"seed\":43038,\"model\":\"sana\",\"enhance\":false,\"nologo\":true,\"negative_prompt\":\"undefined\",\"nofeed\":false,\"safe\":false,\"quality\":\"medium\",\"image\":[],\"transparent\":false,\"has_nsfw_concept\":false,\"concept\":[],\"trackingData\":{\"actualModel\":\"sana\",\"usage\":{\"completionImageTokens\":1,\"totalTokenCount\":1}}}\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}"),
("4641","2922","_wp_attachment_image_alt","Mesotherapy for hair loss - scalp treatment"),
("4642","1644","_edit_lock","1783015861:1"),
("4643","1686","_edit_lock","1783015869:1");

INSERT IGNORE INTO `wp_posts` VALUES 
("5","1","2023-07-07 13:53:04","2023-07-07 13:53: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=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"125px\" padding_bottom_small=\"60px\" admin_label=\"Home - Hero\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W10=\" video_aspect_ratio=\"16:9\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/07/Main-BG-new-copy-2.jpg\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG18.jpg\"][fusion_builder_row][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" margin_top=\"-100px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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-color7)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" text_color=\"var(--awb-color7)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" font_size=\"20px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_bottom=\"35px\" margin_bottom_small=\"30px\"]Premium injectables &amp; skin treatments by Dr. Soheila Eskandari, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_small=\"15px\" first=\"true\" min_height=\"\" link=\"\"][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\" alignment=\"left\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/appointments/\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color7)\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]Book an Appointment[/fusion_button][/fusion_builder_column_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_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\" alignment=\"left\" link=\"https://wa.me/+971505145129\" button_gradient_top_color_hover=\"#075e54\" button_gradient_bottom_color_hover=\"#075e54\" icon=\"fa-whatsapp fab\" button_gradient_top_color=\"#25d366\" button_gradient_bottom_color=\"#25d366\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\"]Whatsapp[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2026/06/pattern-3.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"20\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"0px\" admin_label=\"Home - Hero\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W10=\" video_aspect_ratio=\"16:9\" background_color_small=\"#ecebe7\" pattern_bg_size=\"10%\" padding_left_small=\"0px\" padding_right_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"80\" aspect_ratio_position=\"48% 49%\" 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=\"2785|full\"]https://dr.frex.digital/wp-content/uploads/2026/07/Main-BG-new-copy-2.jpg[/fusion_imageframe][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" z_index=\"100\" padding_left_small=\"10px\" padding_right_small=\"10px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color7)\" margin_bottom=\"0px\" font_size=\"40px\" content_align_small=\"left\" margin_top_small=\"-210px\"]Naturally You,<br />\r\nBeautifully<br />\r\nRefined[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2026/06/pattern-3.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"20\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"0px\" padding_bottom_small=\"15px\" admin_label=\"Home - Hero\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W10=\" video_aspect_ratio=\"16:9\" background_color_small=\"#ecebe7\" pattern_bg_size=\"10%\"][fusion_builder_row][fusion_builder_column type=\"45.00\" type=\"45.00\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" margin_top_small=\"0px\" padding_top_small=\"15px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" text_color=\"var(--awb-color7)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" font_size=\"17px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_bottom=\"55px\" margin_bottom_small=\"30px\"]Premium injectables &amp; skin treatments by Dr. Soheila Eskandari, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_small=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" 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\" alignment=\"left\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/appointments/\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color7)\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]Book an Appointment[/fusion_button][/fusion_builder_column_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_button target=\"_self\" color=\"custom\" 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\" alignment=\"left\" link=\"https://wa.me/+971505145129\" button_gradient_top_color_hover=\"#075e54\" button_gradient_bottom_color_hover=\"#075e54\" icon=\"fa-whatsapp fab\" button_gradient_top_color=\"#25d366\" button_gradient_bottom_color=\"#25d366\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\"]Whatsapp[/fusion_button][/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"var(--awb-color3)\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"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)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" content_alignment=\"center\" margin_bottom=\"0\"]New patient offer this month! <a href=\"https://dr.frex.digital/appointments/\"><u>book your first consultation today!</u></a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-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)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" content_alignment=\"center\" margin_bottom=\"0\"]New patient offer this month!<br />\r\n<a href=\"https://dr.frex.digital/appointments/\"><u>book your first consultation today!</u></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\" 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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Treatment\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\" margin_bottom_small=\"30px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila Eskandari and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"equals\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"12\" 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=\"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=\"stretch\" columns_medium=\"3\" columns_small=\"1\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"yes\" loop=\"yes\" scroll_items=\"1\" mouse_scroll=\"yes\" mouse_pointer=\"custom\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" custom_field_value=\"show\" autoplay_speed=\"3000\" autoplay_hover_pause=\"yes\" arrow_border_radius_top_left=\"50%\" arrow_border_radius_top_right=\"50%\" arrow_border_radius_bottom_right=\"50%\" arrow_border_radius_bottom_left=\"50%\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\" padding_bottom_small=\"40px\"][fusion_builder_row][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\" padding_top=\"60px\" padding_right=\"100px\" padding_bottom=\"60px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_left_small=\"0px\" padding_right_small=\"0px\" padding_bottom_small=\"0px\" first=\"true\" padding_top_small=\"0px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\" content_align_small=\"center\" margin_top_small=\"0\"]Meet Dr. Soheila Eskandari[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\" content_align_small=\"center\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\" content_alignment_small=\"center\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\" content_alignment_small=\"center\" margin_bottom_small=\"0\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color6)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color3)\" button_gradient_bottom_color_hover=\"var(--awb-color3)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color3)\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"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=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/07/DrSoheila-Picture-Homepage-copy-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"2783|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-Homepage-copy.jpg\" background_position_small=\"center center\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" top_margin=\"170px\" bottom_margin=\"170px\" /][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\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/appointments/\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color7)\" border_color=\"var(--awb-color7)\"]Book an Appointment[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"17\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\" background_color=\"rgba(49,44,41,0.57)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"40px\" margin_top_small=\"0\"]Discover The Art Of Natural Beauty[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"30px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color7)\" border_color=\"var(--awb-color7)\"]View Our Treatments[/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_bottom=\"115px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"0px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"0px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\" padding_top_small=\"40px\" padding_left_small=\"30px\" padding_right_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"30px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\" content_align_small=\"center\" margin_top_small=\"0\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\" margin_bottom_small=\"30px\" content_alignment_small=\"center\"]\r\n<p>Targeted, Dr. Soheila Eskandari solutions for the concerns that matter most to you.</p>\r\n[/fusion_text][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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/by-concerns/\" alignment_small=\"center\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"10\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"yes\" loop=\"yes\" scroll_items=\"1\" mouse_scroll=\"yes\" mouse_pointer=\"custom\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" margin_bottom=\"0\" autoplay_speed=\"3000\" autoplay_hover_pause=\"yes\" arrow_border_radius_top_left=\"50%\" arrow_border_radius_top_right=\"50%\" arrow_border_radius_bottom_right=\"50%\" arrow_border_radius_bottom_left=\"50%\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"115px\" padding_bottom=\"95px\" background_color=\"var(--awb-color2)\" padding_top_small=\"40px\" padding_bottom_small=\"20px\" margin_top_small=\"-30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top_small=\"0\"]Aesthetic Treatments[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\" margin_bottom_small=\"30px\"]\r\n<p>Enhance your confidence from head to toe with our comprehensive range of advanced aesthetic treatments for face, neck, body, and hair, expertly tailored for both women and men.</p>\r\n[/fusion_text][fusion_flip_boxes columns=\"2\" front_title_size=\"2\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\" front_title_line_height=\"6\" back_title_line_height=\"1.5\"][fusion_flip_box title_front=\"Hair\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Hair\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Hair_image-copy-1.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]<p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/mesotherapy/\">Mesotherapy</a><br><a href=\"https://dr.frex.digital/treatments/prp/\">PRP - Platelet-Rich Plasma</a><br><a href=\"https://dr.frex.digital/treatments/mesotherapy/hair-loss/\">Hair Loss</a><br><a href=\"https://dr.frex.digital/treatments/microneedling/\">Microneedling</a></p><p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/\">View All Treatments</a></p>[/fusion_flip_box][fusion_flip_box title_front=\"Face\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Face\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/face_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]<p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/dermal-fillers/\">Filler</a><br><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/\">Botox</a><br><a href=\"https://dr.frex.digital/treatments/biostimulators/\">Biostimulators</a><br><a href=\"https://dr.frex.digital/treatments/mesotherapy/\">Mesotherapy</a></p><p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/\">View All Treatments</a></p>[/fusion_flip_box][fusion_flip_box title_front=\"Neck\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Neck\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Neck_image-copy-1.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]<p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/skin-boosters/profhilo/\">Profhilo</a><br><a href=\"https://dr.frex.digital/treatments/skin-boosters/\">Skinboosters</a><br><a href=\"https://dr.frex.digital/treatments/dermal-fillers/\">Dermal Fillers</a><br><a href=\"https://dr.frex.digital/treatments/microneedling/\">RF Microneedling</a></p><p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/\">View All Treatments</a></p>[/fusion_flip_box][fusion_flip_box title_front=\"Body\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Body\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Body_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">EMsculpt<br />\r\nCool sculpting<br />\r\nVenus Legacy<br />\r\nBBL</p>\r\n<p style=\"text-align: center;\">View All Treatments</p>\r\n[/fusion_flip_box][/fusion_flip_boxes][fusion_flip_boxes columns=\"1\" front_title_size=\"2\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\" front_title_line_height=\"6\" back_title_line_height=\"1.5\" margin_bottom=\"0\"][fusion_flip_box title_front=\"For Men\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"For Men\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Men_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]<p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/prp/\">PRP</a><br><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/\">Botox</a><br><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/underarm-hyperhidrosis/\">Underarm Botox</a></p><p style=\"text-align: center;\"><a href=\"https://dr.frex.digital/treatments/\">View All Treatments</a></p>[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" padding_top=\"115px\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\" margin_top_small=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\" margin_bottom_small=\"30px\"]\r\n<p>See the natural, balanced results Dr. Soheila Eskandari creates real transformations from real patients.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_medium=\"\" type_small=\"1_1\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" margin_bottom=\"30px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"22px\" margin_bottom=\"25px\"]<p><strong>Lip Filler</strong></p>[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2467|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Lip-Filler-before-04.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2468|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Lip-Filler-after-04.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" type_small=\"1_1\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"22px\" margin_bottom=\"25px\" margin_bottom_small=\"20px\"]<p><strong>Crow’s Feet Refinement</strong></p>[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2514|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-Refinement-before-01.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2515|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-Refinement-after-01.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"22px\" margin_bottom=\"25px\" margin_bottom_small=\"20px\"]<p><strong>Hair Loss</strong></p>[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2407|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/PRP-before.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2408|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/PRP-after.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"22px\" margin_bottom=\"25px\" margin_bottom_small=\"20px\"]<p><strong>Radiesse</strong></p>[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2458|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Radiesse-before-04.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2459|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Radiesse-after-04.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"22px\" margin_bottom=\"25px\" margin_bottom_small=\"20px\"]<p><strong>Sculptra</strong></p>[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2416|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Sculptra-before-02.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2417|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Sculptra-after-02.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"22px\" margin_bottom=\"25px\" margin_bottom_small=\"20px\"]<p><strong>Face Contouring</strong></p>[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2749|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Face-Contouring-before.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"1_2\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" type_small=\"1_2\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2750|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Face-Contouring-after.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</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\" 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=\"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=\"16\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled-new-copy.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" margin_bottom_small=\"0px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG20-1.jpg\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2026/06/pattern-3.svg\" pattern_bg_size=\"10%\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" margin_bottom_small=\"45px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color7)\" margin_top_small=\"0\" content_align_small=\"center\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color7)\" margin_bottom_small=\"20px\" content_alignment_small=\"center\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila Eskandari\'s Clinic.</p>\r\n[/fusion_text][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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color7)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color7)\" link=\"https://dr.frex.digital/appointments/\" alignment_small=\"center\"]Book an Appointment[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" 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-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"50\" type=\"50\" layout=\"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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" font_size=\"25px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</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-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner type=\"55\" type=\"55\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>Dr. Soheila Eskandari perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" layout=\"20\" align_self=\"auto\" content_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" 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-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"50\" type=\"50\" layout=\"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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" font_size=\"25px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner type=\"55\" type=\"55\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" layout=\"20\" align_self=\"auto\" content_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" 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-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"50\" type=\"50\" layout=\"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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" font_size=\"25px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner type=\"55\" type=\"55\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" layout=\"20\" align_self=\"auto\" content_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" 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-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"50\" type=\"50\" layout=\"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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" font_size=\"25px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color7)\" font_size=\"14px\" content_alignment_small=\"center\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25\" type=\"25\" layout=\"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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner type=\"55\" type=\"55\" layout=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" 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\" text_color=\"var(--awb-color7)\" margin_bottom=\"0\" content_alignment_small=\"center\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" layout=\"20\" align_self=\"auto\" content_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\" padding_top_small=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy-new.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1904|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy-new.jpg\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" top_margin=\"150px\" bottom_margin=\"150px\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila Eskandari believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>\r\n[/fusion_text][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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]About Dr. Soheila Eskandari[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>\r\n[/fusion_text][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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/appointments/\"]Book an Appointment[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy-new2.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1905|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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=\"rgba(0,0,0,0.57)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" margin_bottom_small=\"0px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled-copy.jpg\"][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\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"true\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" padding_top_small=\"15px\" padding_right_small=\"15px\" padding_bottom_small=\"15px\" padding_left_small=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgovKiDar9ix2K8g2qnYsdiv2YYg2q/ZiNi02YfigIzZh9in24wg2b7Ys9iq4oCM2YfYp9uMINin24zZhtiz2KrYp9qv2LHYp9mFICovCiNzYl9pbnN0YWdyYW0gI3NiaV9pbWFnZXMgLnNiaV9pdGVtIHsKICAgIGJvcmRlci1yYWRpdXM6IDEycHggIWltcG9ydGFudDsKICAgIG92ZXJmbG93OiBoaWRkZW4gIWltcG9ydGFudDsKICAgIC13ZWJraXQtYm9yZGVyLXJhZGl1czogMTJweCAhaW1wb3J0YW50OwogICAgLW1vei1ib3JkZXItcmFkaXVzOiAxMnB4ICFpbXBvcnRhbnQ7Cn0KCiNzYl9pbnN0YWdyYW0gI3NiaV9pbWFnZXMgLnNiaV9pdGVtIC5zYmlfcGhvdG8gewogICAgYm9yZGVyLXJhZGl1czogMTJweCAhaW1wb3J0YW50Owp9CgovKiDYs9mHINiz2KrZiNmG2Ycg2qnYsdiv2YYg2K/ZgtuM2YLYp9mLINmF2KvZhCDYp9uM2YbYs9iq2Kfar9ix2KfZhSDYqNix2KfbjCDZhdmI2KjYp9uM2YQgKi8KQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAjc2JfaW5zdGFncmFtICNzYmlfaW1hZ2VzIHsKICAgICAgICBkaXNwbGF5OiBncmlkICFpbXBvcnRhbnQ7CiAgICAgICAgZ3JpZC10ZW1wbGF0ZS1jb2x1bW5zOiByZXBlYXQoMywgMWZyKSAhaW1wb3J0YW50OwogICAgICAgIGdhcDogM3B4ICFpbXBvcnRhbnQ7IC8qINmB2KfYtdmE2Ycg2KjbjNmGINi52qnYs+KAjNmH2Kcg2YXYq9mEINin24zZhtiz2KrYp9qv2LHYp9mFICovCiAgICB9CiAgICAjc2JfaW5zdGFncmFtICNzYmlfaW1hZ2VzIC5zYmlfaXRlbSB7CiAgICAgICAgd2lkdGg6IDEwMCUgIWltcG9ydGFudDsKICAgICAgICBtYXJnaW46IDAgIWltcG9ydGFudDsKICAgICAgICBwYWRkaW5nOiAwICFpbXBvcnRhbnQ7CiAgICAgICAgZmxvYXQ6IG5vbmUgIWltcG9ydGFudDsKICAgIH0KfQo8L3N0eWxlPgoKW2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_top_small=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\" margin_bottom_small=\"30px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Home Page","","publish","closed","closed","","homepage","","","2026-07-02 16:19:07","2026-07-02 16:19:07","","0","https://dr.frex.digital/?page_id=5","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("7","7496","2023-07-07 13:59:10","2023-07-07 13:59:10","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color5)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn19\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),var(--awb-color7-l),calc(var(--awb-color7-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color7)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Sat : 9am to 6pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),var(--awb-color7-l),calc(var(--awb-color7-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color7)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),var(--awb-color7-l),calc(var(--awb-color7-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color7)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"https://www.facebook.com/soheila.eskandari.94\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color7)\" tooltip_placement=\"bottom\" alignment=\"right\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color7-h),var(--awb-color7-s),var(--awb-color7-l),calc(var(--awb-color7-a) - 10%))\" phone=\"tel:+971505145129\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"15px\" padding_right=\"30px\" padding_bottom=\"15px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"99999\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color3)\" background_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"20\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifSwiZWxlbWVudF9jb250ZW50Ijp7ImRhdGEiOiJzaXRlX2xvZ28iLCJ0eXBlIjoiYWxsIn19\" max_width=\"120px\" sticky_max_width=\"90px\" /][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"right\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifSwiZWxlbWVudF9jb250ZW50Ijp7ImRhdGEiOiJzaXRlX2xvZ28iLCJ0eXBlIjoiYWxsIn19\" max_width=\"95px\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" 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\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"mobile-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"flex-start\" main_justify_content=\"left\" transition_type=\"fade\" 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=\"fa-bars fas\" collapsed_nav_icon_close=\"fa-times fas\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_items_height=\"65\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color7)\" mobile_trigger_font_size=\"23px\" trigger_padding_left=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"2\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"main-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color7)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color7)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color7)\" icons_hover_color=\"var(--awb-color7)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12\" submenu_border_radius_top_right=\"12\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"small\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJzdWJtZW51X3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X3NlcF9jb2xvciI6InJnYmEoMCwwLDAsMCkiLCJzb3VyY2UiOiJtZW51X3N1Yl9zZXBfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJzdWJtZW51X2JnIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibWVudV9zdWJfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJzdWJtZW51X2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfY29sb3IiOiIjMjEyOTM0Iiwic291cmNlIjoibWVudV9zdWJfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJzdWJtZW51X2FjdGl2ZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtZW51X2JnX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoibWVudV9zdWJfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJtb2JpbGVfdHJpZ2dlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfdHJpZ2dlcl9jb2xvciI6IiMwMDAwMDAiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV90b2dnbGVfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJtb2JpbGVfc2VwX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsIm1vYmlsZV9zZXBfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYm9yZGVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2JnIjp7ImRhdGEiOiJjb2xvciIsIm1vYmlsZV9iZyI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9iYWNrZ3JvdW5kX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsIm1vYmlsZV9jb2xvciI6IiM0YTRlNTciLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9tb2JpbGVfbWVudV90eXBvZ3JhcGh5IiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2FjdGl2ZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYWN0aXZlX2JnIjoiIzY1YmM3YiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2FjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2ZvbnRfaG92ZXJfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9fQ==\" active_color=\"var(--awb-color7)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"1_4\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" border_color=\"var(--awb-color7)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color7)\" alignment=\"right\" margin_top=\"10px\" margin_bottom=\"10px\" link=\"https://dr.frex.digital/appointments/\"]Book an Appointment[/fusion_button][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=\"medium-visibility,large-visibility\" sticky_display=\"sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" font_size=\"12px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" border_color=\"var(--awb-color7)\" padding_top=\"8px\" padding_bottom=\"8px\" padding_right=\"13px\" padding_left=\"13px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color7)\" alignment=\"right\" link=\"https://dr.frex.digital/appointments/\"]Book an Appointment[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Header","","publish","closed","closed","","global-header","","","2026-06-21 15:49:52","2026-06-21 15:49:52","","0","https://dr.frex.digital/fusion_tb_section/global-header/","0","fusion_tb_section","","0"),
("19","7496","2023-07-07 14:48:47","2023-07-07 14:48:47","","Dance Icons","","publish","closed","closed","","dance-icons","","","2024-02-01 15:21:22","2024-02-01 15:21:22","","0","https://dr.frex.digital/?fusion_icons=dance-icons","0","fusion_icons","","0"),
("25","7496","2023-07-07 15:06:21","2023-07-07 15:06:21","Source : https://www.vecteezy.com/vector-art/7853127-dance-school-logo-design","logo","","inherit","open","closed","","logo","","","2023-07-10 13:24:28","2023-07-10 13:24:28","","0","https://dr.frex.digital/wp-content/uploads/2023/07/logo.svg","0","attachment","image/svg+xml","0"),
("28","7496","2023-07-07 15:20:06","2023-07-07 15:20:06","","pattern-2","","inherit","open","closed","","pattern-2","","","2023-07-07 15:20:06","2023-07-07 15:20:06","","0","https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg","0","attachment","image/svg+xml","0"),
("47","7496","2026-06-21 15:49:25","2023-07-07 16:27:14","","Home","","publish","closed","closed","","home","","","2026-06-21 15:49:25","2026-06-21 15:49:25","","0","https://dr.frex.digital/?p=47","1","nav_menu_item","","0"),
("48","7496","2023-07-07 16:27:25","2023-07-07 16:27: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=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"150px\" padding_bottom=\"150px\" padding_bottom_small=\"60px\" padding_top_small=\"60px\" animation_color=\"var(--awb-color3)\" admin_label=\"About - PTB\" background_slider_images=\"Select Images\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG15.jpg\" background_position_small=\"center center\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG17-1.jpg\"][fusion_builder_row][fusion_builder_column type=\"46.00\" type=\"46.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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" text_color=\"var(--awb-color7)\" font_size=\"53px\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"var(--awb-color6)\"]Defining the Art of <br /><span style=\"color: var(--awb-color6);\">Natural Architecture</span>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"10\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"45px\" text_color=\"var(--awb-color1)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.7)\" content_align_small=\"left\" margin_top_small=\"0\"]Defining the Art of <br />Natural Architecture[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color7)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" font_size=\"20px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_bottom=\"0\"]Meet Dr. Soheila Eskandari where advanced medical precision meets elite aesthetic elegance in the heart of Dubai.[/fusion_title][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" bevel_color=\"var(--awb-color4)\" bevel_color_hover=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/appointments/\"]Book an Elite Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"About - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" 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=\"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=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"no\" border_position=\"all\" element_content=\"\" background_image_id=\"1036|full\" border_radius_bottom_left=\"20px\" border_radius_bottom_right=\"20px\" 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=\"2\" padding_top=\"70px\" padding_right=\"0px\" padding_bottom=\"70px\" padding_left=\"79px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" padding_top_small=\"40px\" padding_bottom_small=\"0px\" padding_right_medium=\"0px\" padding_right_small=\"0px\" padding_left_small=\"0px\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"120\" 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\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1036|full\" borderradius=\"16px\" margin_bottom_small=\"30px\"]https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" 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\" text_color=\"var(--awb-color7)\"]<strong>Meet </strong><b>Dr. Soheila Eskandari</b>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>The Expert Behind Your Radiance</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=\"35px\"]\r\n<p id=\"p-rc_dafbf139548de0fa-25\" data-path-to-node=\"13\"><span data-path-to-node=\"13,1\"><span class=\"citation-30\"><span style=\"letter-spacing: 0.225px; background-color: rgba(0, 0, 0, 0);\"><b>Dr. Soheila Eskandari</b></span> is a highly accomplished aesthetic medicine specialist dedicated to delivering world-class, bespoke facial sculpting and cellular rejuvenation treatments in Dubai</span></span><span data-path-to-node=\"13,3\">. </span><span data-path-to-node=\"13,5\"><span class=\"citation-29\">With years of rigorous clinical experience, her practice is anchored in absolute medical integrity, scientific honesty, and artistic precision</span></span><span data-path-to-node=\"13,7\">.</span></p>\r\n<p id=\"p-rc_dafbf139548de0fa-26\" data-path-to-node=\"14\"><span data-path-to-node=\"14,1\"><span class=\"citation-28\">Recognized for her subtle yet transformative touch, <b>Dr. Soheila Eskandari</b> specializes in mapping the face’s structural vectors to restore lost volume and erase signs of fatigue without the need for invasive surgical procedures</span></span><span data-path-to-node=\"14,3\">. </span><span data-path-to-node=\"14,5\"><span class=\"citation-27\">She takes her time during comprehensive, private consultations to carefully design a personalized treatment blueprint tailored directly to your distinct lifestyle demands and aesthetic goals</span></span><span data-path-to-node=\"14,7\">.</span></p>\r\n[/fusion_text][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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/appointments/\"]Book an Appointments[/fusion_button][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" border_size=\"2\" top_margin=\"40px\" bottom_margin=\"40px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"About - Info\" padding_bottom=\"0px\"][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=\"2\" padding_top=\"70px\" padding_bottom=\"70px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" padding_top_small=\"0px\" padding_bottom_small=\"40px\" padding_right_medium=\"0px\" padding_left_small=\"0px\" padding_right=\"79px\" padding_right_small=\"0px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"div\" 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\" text_color=\"var(--awb-color7)\" margin_top_small=\"0\"]\r\n<p><strong>The Vision &amp; Philosophy</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>The Architecture of Expression</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=\"35px\"]\r\n<p id=\"p-rc_dafbf139548de0fa-23\" data-path-to-node=\"9\"><span data-path-to-node=\"9,1\"><span class=\"citation-35\"><b>\"Your face is not a canvas to be overfilled; it is a masterpiece of dynamic architecture to be preserved and refined.\"</b></span></span></p>\r\n<p data-path-to-node=\"9\"><span data-path-to-node=\"9,1\"><span class=\"citation-35\">At Dr. Soheila Eskandari’s clinic, we completely reject the outdated, artificial, and \"frozen\" look that has dominated the aesthetic market</span></span><span data-path-to-node=\"9,3\">. </span><span data-path-to-node=\"9,5\"><span class=\"citation-34\">We believe that true facial rejuvenation requires a profound, scientific understanding of muscle dynamics and structural aging</span></span><span data-path-to-node=\"9,7\">.</span></p>\r\n<p id=\"p-rc_dafbf139548de0fa-24\" data-path-to-node=\"10\"><span data-path-to-node=\"10,1\"><span class=\"citation-33\">Our signature approach utilizes advanced </span><b data-path-to-node=\"10,1\" data-index-in-node=\"41\"><span class=\"citation-33\">Micro-Dosing Techniques</span></b></span><span data-path-to-node=\"10,3\">. </span><span data-path-to-node=\"10,5\"><span class=\"citation-32\">By precisely mapping your unique facial anatomy, Dr. Soheila Eskandari selectively targets only the hyperactive fibers responsible for dynamic wrinkles</span></span><span data-path-to-node=\"10,7\">. </span><span data-path-to-node=\"10,9\"><span class=\"citation-31\">This ensures that your authentic expressions, emotional warmth, and natural smile remain entirely untouched, while your skin achieves a timeless, refreshed, and well-rested elegance</span></span><span data-path-to-node=\"10,11\">.</span></p>\r\n[/fusion_text][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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/treatments/\"]View Our Treatments[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" 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=\"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=\"right center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Clinic-door-About-us-copy.jpg\" last=\"no\" border_position=\"all\" element_content=\"\" background_image_id=\"1430|full\" border_radius_top_right=\"20px\" border_radius_top_left=\"20px\" padding_bottom=\"0\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" background_color=\"var(--awb-color6)\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" margin_top=\"-1px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_small=\"0px\" padding_right_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"div\" text_shadow=\"yes\" text_shadow_blur=\"10\" 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\" text_color=\"var(--awb-color3)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"var(--awb-color4)\" content_align_small=\"left\"]\r\n<p><strong>Our Core Pillars of Practice</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" margin_bottom=\"25px\" text_color=\"var(--awb-color1)\" font_size=\"40px\" content_align_small=\"left\"]\r\n<p>Science. Structure. Systemic Wellness</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\" font_size=\"18px\" text_color=\"var(--awb-color1)\" margin_right=\"12%\" margin_left=\"12%\" margin_bottom=\"40px\" margin_left_small=\"0px\" margin_right_small=\"0px\" content_alignment_small=\"left\" margin_bottom_small=\"0\"]\r\n<p>To accommodate the fast-paced, high-end routine of Dubai’s residents and expats, <br />our <span style=\"color: var(--awb-color3);\">premium clinic operates on three foundational pillars</span></p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgogIC5waWxsYXJzLWNvbnRhaW5lciB7CiAgICBkaXNwbGF5OiBncmlkOwogICAgZ3JpZC10ZW1wbGF0ZS1jb2x1bW5zOiByZXBlYXQoYXV0by1maXQsIG1pbm1heCgzMDBweCwgMWZyKSk7CiAgICBnYXA6IDM1cHg7CiAgICBmb250LWZhbWlseTogaW5oZXJpdDsKICAgIHBhZGRpbmc6IDIwcHggMDsKICB9CiAgCiAgLnBpbGxhci1jYXJkIHsKICAgIHBvc2l0aW9uOiByZWxhdGl2ZTsKICAgIHBhZGRpbmc6IDUwcHggMzVweDsKICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIGJvcmRlci1yYWRpdXM6IDEycHg7CiAgICBvdmVyZmxvdzogaGlkZGVuOwogICAgdHJhbnNpdGlvbjogYWxsIDAuNHMgY3ViaWMtYmV6aWVyKDAuMjUsIDAuOCwgMC4yNSwgMSk7CiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDsKICB9CiAgCiAgLnBpbGxhci1jYXJkOmhvdmVyIHsKICAgIGJvcmRlci1jb2xvcjogI2VmZTVkYzsKICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWSgtOHB4KTsKICAgIGJveC1zaGFkb3c6IDAgMTVweCAzNXB4IHJnYmEoMCwgMCwgMCwgMC40KSwgMCAwIDUwcHggcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjMpOwogIH0KICAKICAucGlsbGFyLW51bWJlciB7CiAgICBwb3NpdGlvbjogYWJzb2x1dGU7CiAgICB0b3A6IC0xNXB4OwogICAgcmlnaHQ6IDE1cHg7CiAgICBmb250LXNpemU6IDE1MHB4OwogICAgZm9udC13ZWlnaHQ6IDgwMDsKICAgIGNvbG9yOiB0cmFuc3BhcmVudDsKICAgIC13ZWJraXQtdGV4dC1zdHJva2U6IDFweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMTUpOwogICAgei1pbmRleDogMDsKICAgIHRyYW5zaXRpb246IGFsbCAwLjVzIGVhc2U7CiAgICB1c2VyLXNlbGVjdDogbm9uZTsKICB9CiAgCiAgLnBpbGxhci1jYXJkOmhvdmVyIC5waWxsYXItbnVtYmVyIHsKICAgIC13ZWJraXQtdGV4dC1zdHJva2U6IDEuNXB4IHJnYmEoMjI0LCAyMTEsIDE5MiwgMC40KTsKICAgIHRleHQtc2hhZG93OiAwIDAgMjBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMik7CiAgfQogIAogIC5waWxsYXItYWNjZW50LWxpbmUgewogICAgd2lkdGg6IDM1cHg7CiAgICBoZWlnaHQ6IDJweDsKICAgIGJhY2tncm91bmQtY29sb3I6ICNlZmU1ZGM7CiAgICBtYXJnaW4tYm90dG9tOiAyNXB4OwogICAgcG9zaXRpb246IHJlbGF0aXZlOwogICAgei1pbmRleDogMTsKICAgIHRyYW5zaXRpb246IHdpZHRoIDAuNHMgZWFzZTsKICB9CiAgCiAgLnBpbGxhci1jYXJkOmhvdmVyIC5waWxsYXItYWNjZW50LWxpbmUgewogICAgd2lkdGg6IDcwcHg7CiAgfQogIAogIC5waWxsYXItdGl0bGUgewogICAgY29sb3I6ICNlZmU1ZGMgIWltcG9ydGFudDsKICAgIHRleHQtc2hhZG93OiAycHggMnB4IDVweCByZ2JhKDAsIDAsIDAsIDAuMyk7CiAgICBmb250LXNpemU6IDIycHg7CiAgICBmb250LXdlaWdodDogNjAwOwogICAgbWFyZ2luOiAwIDAgMTVweCAwOwogICAgbGluZS1oZWlnaHQ6IDEuNDsKICAgIHBvc2l0aW9uOiByZWxhdGl2ZTsKICAgIHotaW5kZXg6IDE7CiAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgfQogIAogIC5waWxsYXItZGVzYyB7CiAgICBjb2xvcjogI2ZmZjsKICAgIGZvbnQtc2l6ZTogMTVweDsKICAgIGxpbmUtaGVpZ2h0OiAxLjg7CiAgICBtYXJnaW46IDA7CiAgICBwb3NpdGlvbjogcmVsYXRpdmU7CiAgICB6LWluZGV4OiAxOwogICAgb3BhY2l0eTogMC44NTsKICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwaWxsYXJzLWNvbnRhaW5lciI+CiAgCiAgPGRpdiBjbGFzcz0icGlsbGFyLWNhcmQiPgogICAgPGRpdiBjbGFzcz0icGlsbGFyLW51bWJlciI+MDE8L2Rpdj4KICAgIDxkaXYgY2xhc3M9InBpbGxhci1hY2NlbnQtbGluZSI+PC9kaXY+CiAgICA8aDMgY2xhc3M9InBpbGxhci10aXRsZSI+QmVzcG9rZSBTdHJ1Y3R1cmFsIFJlZmluZW1lbnQ8L2gzPgogICAgPHAgY2xhc3M9InBpbGxhci1kZXNjIj5VdGlsaXppbmcgZ2xvYmFsbHkgZWxpdGUgYnJhbmRzIG9mIGRlcm1hbCBmaWxsZXJzLCBiaW9zdGltdWxhdG9ycyAoU2N1bHB0cmEsIFJhZGllc3NlKSwgYW5kIEFwdG9zIHRocmVhZCBsaWZ0cyB0byByZXN0b3JlIHNrZWxldGFsIHN1cHBvcnQgYW5kIGNvbnRvdXJzIHdpdGggdW5kZXRlY3RhYmxlIHBlcmZlY3Rpb24uPC9wPgogIDwvZGl2PgoKICA8ZGl2IGNsYXNzPSJwaWxsYXItY2FyZCI+CiAgICA8ZGl2IGNsYXNzPSJwaWxsYXItbnVtYmVyIj4wMjwvZGl2PgogICAgPGRpdiBjbGFzcz0icGlsbGFyLWFjY2VudC1saW5lIj48L2Rpdj4KICAgIDxoMyBjbGFzcz0icGlsbGFyLXRpdGxlIj5BZHZhbmNlZCBCaW8tUmVnZW5lcmF0aXZlIFNjaWVuY2U8L2gzPgogICAgPHAgY2xhc3M9InBpbGxhci1kZXNjIj5IYXJuZXNzaW5nIGN1dHRpbmctZWRnZSBjZWxsdWxhciBtZXNzZW5nZXJzIGxpa2UgUERSTiAoU2FsbW9uIEROQSksIEV4b3NvbWVzLCBhbmQgYXV0b2xvZ291cyBQUlAgdG8gcmVwYWlyIGNvbXByb21pc2VkIHNraW4gYmFycmllcnMgYW5kIG5hdHVyYWxseSByZXZlcnNlIGVudmlyb25tZW50YWwgc3VuIGFuZCBoYXJkLXdhdGVyIGRhbWFnZS48L3A+CiAgPC9kaXY+CgogIDxkaXYgY2xhc3M9InBpbGxhci1jYXJkIj4KICAgIDxkaXYgY2xhc3M9InBpbGxhci1udW1iZXIiPjAzPC9kaXY+CiAgICA8ZGl2IGNsYXNzPSJwaWxsYXItYWNjZW50LWxpbmUiPjwvZGl2PgogICAgPGgzIGNsYXNzPSJwaWxsYXItdGl0bGUiPlN5c3RlbWljIEludGVybmFsIFdlbGxuZXNzPC9oMz4KICAgIDxwIGNsYXNzPSJwaWxsYXItZGVzYyI+Q3JhZnRpbmcgMTAwJSBiaW9hdmFpbGFibGUgaW50cmF2ZW5vdXMgKElWKSBudXRyaWVudCwgR2x1dGF0aGlvbmUsIGFuZCBOQUQrIHRoZXJhcGllcyB0byBkZXRveGlmeSB0aGUgYm9keSBhbmQgbG9jayBpbiBhIGJyaWxsaWFudCwgbHVtaW5vdXMgZ2xvdyB0aGF0IHJhZGlhdGVzIGZyb20gdGhlIGluc2lkZSBvdXQuPC9wPgogIDwvZGl2PgogIAo8L2Rpdj4=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom_medium=\"90px\" admin_label=\"About - Gallery\" padding_bottom=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" margin_bottom_small=\"0\"][fusion_builder_row][fusion_global id=\"1263\"][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"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_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"39\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"About - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\" background_color=\"rgba(49,44,41,0.42)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color7)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Ready to Experience Bespoke Aesthetic Care?[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Trust your facial architecture to expert, precise hands. Secure your private consultation with Dr. Soheila Eskandari in Dubai today.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/appointments/\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color7)\"]Secure Your Appointment Now[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","About","","publish","closed","closed","","about","","","2026-06-21 15:42:05","2026-06-21 15:42:05","","0","https://dr.frex.digital/?page_id=48","0","page","","0"),
("50","7496","2023-07-07 16:30:56","2023-07-07 16:30: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\" 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=\"125px\" padding_bottom=\"125px\" padding_bottom_small=\"80px\" padding_top_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Student Stories -  PTB\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\"]\r\n<p>Student Stories</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"50px\"]\r\n<p>Who we are</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" 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\" text_color=\"var(--awb-color8)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"0\"]In aenean metus tempus orci orci sed libero malesuada diam in.[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"min\" 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_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" gradient_end_color=\"hsla(var(--awb-color3-h),calc(var(--awb-color3-s) + 100%),calc(var(--awb-color3-l) - 55%),calc(var(--awb-color3-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"20\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" min_height=\"550px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-4-scaled.jpg\" animation_type=\"reveal\" animation_color=\"var(--awb-color3)\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" admin_label=\"Student Stories - Banner\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"125px\" padding_bottom=\"125px\" animation_type=\"fade\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" admin_label=\"Student Stories - Story\"][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\" margin_bottom=\"0px\" 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-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)\"]Student : Lisa Stuart[/fusion_text][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]How Avada Dance Changed My Life[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]My name is Lisa and I have been a student at Avada Dance for three years. I started dancing when I was six years old, but I had to stop when I was 12 due to a knee injury. </p>\r\n<p>I was devastated and lost my confidence and passion for dance. When I was 15, I decided to give dance another try and enrolled in a beginner class at Avada Dance. It was the best decision I ever made.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]The instructors were so supportive and encouraging, and they helped me regain my strength and skills. They also taught me new styles and techniques that I never tried before, such as hip hop, jazz, and contemporary. I felt like I was rediscovering myself through dance. I also made many friends who shared my love for dance and motivated me to improve. </p>\r\n<p>Thanks to Avada Dance, I have regained my confidence and passion for dance, and I have even participated in several competitions and performances. Dancing makes me happy and fulfilled, and I can\'t imagine my life without it. Avada Dance has truly changed my life for the better. [/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"486|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-2.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"min\" 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_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" gradient_end_color=\"hsla(var(--awb-color3-h),calc(var(--awb-color3-s) + 100%),calc(var(--awb-color3-l) - 55%),calc(var(--awb-color3-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"20\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" min_height=\"550px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-5-scaled.jpg\" animation_type=\"reveal\" animation_color=\"var(--awb-color3)\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" admin_label=\"Student Stories - Banner\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"125px\" padding_bottom=\"125px\" animation_type=\"fade\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Student Stories - Story\"][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\" margin_bottom=\"0px\" 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-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>Student : Alexa Moore</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\" 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\" margin_bottom=\"30px\"]My Journey from a Beginner to a Dancer[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p>My name is Alexa and I have been a student at Avada Dance for two years.</p>\r\n<p> I never danced before I joined Avada Dance. I was always shy and insecure about my body and my abilities. I wanted to try something new and challenge myself, so I signed up for a beginner class at Avada Dance. </p>\r\n<p>It was the most amazing experience I ever had. The instructors were so patient and kind, and they made me feel comfortable and welcome. They taught me the basics of dance, such as posture, balance, coordination, and rhythm<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); font-weight: var(--awb-text-font-weight); 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);\">.</span></p>\r\n[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"611|full\" margin_bottom=\"45px\"]https://dr.frex.digital/wp-content/uploads/2023/07/banner-11-scaled.jpg[/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\" margin_bottom=\"50px\"]\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); font-weight: var(--awb-text-font-weight); 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);\">They also helped me develop my own style and expression. I learned so much and had so much fun. I also met many wonderful people who became my friends and supported me along the way. Thanks to Avada Dance, I have grown as a person and as a dancer.</span></p>\r\n<p>I have gained confidence and self-esteem, and I have discovered a new passion for dance. I have even advanced to intermediate and advanced classes, and I have performed in several showcases and festivals. Dancing has given me a new purpose and joy in life, and I owe it all to Avada Dance. </p>\r\n[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"490|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-3.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"min\" 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_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" gradient_end_color=\"hsla(var(--awb-color3-h),calc(var(--awb-color3-s) + 100%),calc(var(--awb-color3-l) - 55%),calc(var(--awb-color3-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"20\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" min_height=\"550px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-6-scaled.jpg\" animation_type=\"reveal\" animation_color=\"var(--awb-color3)\" admin_label=\"Student Stories - Banner\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"125px\" padding_bottom=\"125px\" animation_type=\"fade\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" admin_label=\"Student Stories - Story\"][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\" margin_bottom=\"0px\" 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-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>Student : Mark Brown</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\" 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\" margin_bottom=\"30px\"]How Avada Dance Helped Me Find My Balance[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]My name is Mark and I have been a student at Avada Dance for one year. I work as a lawyer and I have a very stressful and busy life. I always wanted to learn how to dance, but I never had the time or the courage to do it. </p>\r\n<p>One day, I saw an advertisement for Avada Dance and I decided to give it a try. It was the best thing I ever did for myself. The instructors were very professional and friendly, and they taught me how to dance with grace and ease. </p>\r\n<p>They also helped me relax and have fun. I learned different styles of dance, such as ballet, tap, and salsa. I felt like I was escaping from my worries and problems for a while. I also met many nice people who shared my interest in dance and made me laugh. </p>\r\n<p>Thanks to Avada Dance, I have found a new balance in my life. I have reduced my stress and improved my health. </p>\r\n<p>I have also discovered a new hobby and a new way of expressing myself. Dancing has made me happier and more fulfilled, and I can\'t thank Avada Dance enough for that.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"495|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-4.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Student Stories","","publish","closed","closed","","student-stories","","","2023-07-19 16:20:15","2023-07-19 16:20:15","","0","https://dr.frex.digital/?page_id=50","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("52","7496","2023-07-07 16:30:53","2023-07-07 16: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\" 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=\"125px\" padding_bottom=\"125px\" padding_bottom_small=\"80px\" padding_top_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Classes - PTB\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\"]Dance Classes[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"50px\"]Dance Classes[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" 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\" text_color=\"var(--awb-color8)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"0\"]In aenean metus tempus orci orci sed libero malesuada diam in.[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"min\" 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_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" gradient_end_color=\"hsla(var(--awb-color3-h),calc(var(--awb-color3-s) + 100%),calc(var(--awb-color3-l) - 55%),calc(var(--awb-color3-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"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=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" min_height=\"550px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-10-scaled.jpg\" animation_type=\"reveal\" animation_color=\"var(--awb-color3)\" admin_label=\"Classes - Banner\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"125px\" padding_bottom=\"125px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" admin_label=\"Classes - Classes\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"505\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"2\" offset=\"0\" 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=\"2\" column_spacing=\"50\" 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=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"0px\" padding_top=\"0px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"0px\" padding_bottom_small=\"0px\" margin_bottom_small=\"80px\" padding_top_medium=\"0px\" padding_bottom_medium=\"0px\" padding_left=\"0px\" padding_right=\"0px\" flex_column_spacing=\"0\" margin_bottom_medium=\"90px\" admin_label=\"Classes - Classes\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"513\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"2\" 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=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"2\" column_spacing=\"0\" 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][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Classes - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-11.jpg\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" padding_top_small=\"50px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Classes - Info\"][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=\"1\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" padding_top_small=\"50px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"0px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"0px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"0px\" admin_label=\"Classes - Next Classes\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/fusion_text][/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\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Classes","","publish","closed","closed","","classes","","","2023-07-19 15:53:08","2023-07-19 15:53:08","","0","https://dr.frex.digital/?page_id=52","0","page","","0"),
("54","7496","2023-07-07 16:30:51","2023-07-07 16:30: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\" 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=\"125px\" padding_bottom=\"125px\" padding_bottom_small=\"80px\" padding_top_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" background_color=\"var(--awb-color3)\" admin_label=\"News - PTB\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\"]Stories From the studio[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"50px\"]\r\n<p>Who we are</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" 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\" text_color=\"var(--awb-color8)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"0\"]In aenean metus tempus orci orci sed libero malesuada diam in.[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"125px\" padding_bottom=\"125px\" admin_label=\"News - Articles\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"644\" 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=\"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=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"2\" column_spacing=\"60\" row_spacing=\"60\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-11-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"News - Banner\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" 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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"News - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","News","","publish","closed","closed","","news","","","2023-07-19 16:06:44","2023-07-19 16:06:44","","0","https://dr.frex.digital/?page_id=54","0","page","","0"),
("56","7496","2023-07-07 16:30:55","2023-07-07 16:30: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\" 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=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"150px\" padding_bottom=\"150px\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/5794427_Coll_wavebreak_Hospital_1280x720.mp4\" padding_bottom_small=\"100px\" padding_top_small=\"100px\" animation_color=\"var(--awb-color3)\" admin_label=\"Contact Us - PTB\" background_color=\"rgba(224,211,192,0.5)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"10\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" text_color=\"var(--awb-color7)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"var(--awb-color6)\"]\r\n<p>Get In Touch</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"50px\" text_color=\"var(--awb-color7)\"]Get In Touch[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"10\" 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\" text_color=\"var(--awb-color7)\" fusion_font_variant_title_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_bottom=\"0\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"var(--awb-color4)\"]\r\n<p>Premium Aesthetic Care in Dubai</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"120px\" padding_top_small=\"60px\" padding_bottom_small=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color6)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" z_index=\"100\" overflow=\"visible\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"2\" box_shadow_horizontal=\"2\" box_shadow_color=\"rgba(67,69,73,0.27)\" margin_bottom_small=\"50px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-map-marker-alt fas\" spin=\"no\" linktarget=\"_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\" alignment=\"center\" size=\"32\" circlebordercolor=\"var(--awb-color6)\" circlebordersize=\"2\" circlecolor=\"var(--awb-color1)\" iconcolor=\"var(--awb-color6)\" margin_top=\"-60px\" circlebordercolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color1)\" /][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"22px\" text_shadow_vertical=\"1\" text_shadow_horizontal=\"1\" text_shadow_color=\"var(--awb-color4)\"]\r\n<p><strong>VISIT US</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\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</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=\"yes\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"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=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" border_sizes_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color6)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" z_index=\"100\" overflow=\"visible\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"2\" box_shadow_horizontal=\"2\" box_shadow_color=\"rgba(67,69,73,0.27)\" margin_bottom_small=\"50px\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_right=\"0%\" last=\"no\" border_position=\"all\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-phone fas\" spin=\"no\" linktarget=\"_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\" alignment=\"right\" size=\"32\" circlebordercolor=\"var(--awb-color6)\" circlebordersize=\"2\" circlecolor=\"var(--awb-color1)\" iconcolor=\"var(--awb-color6)\" circlebordercolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color1)\" margin_right=\"-6px\" margin_top=\"-60px\" /][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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%\" last=\"no\" border_position=\"all\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-whatsapp fab\" spin=\"no\" linktarget=\"_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\" alignment=\"left\" size=\"32\" circlebordercolor=\"var(--awb-color6)\" circlebordersize=\"2\" circlecolor=\"var(--awb-color1)\" iconcolor=\"var(--awb-color6)\" circlebordercolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color1)\" margin_left=\"-6px\" margin_top=\"-60px\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"22px\" text_shadow_vertical=\"1\" text_shadow_horizontal=\"1\" text_shadow_color=\"var(--awb-color4)\"]\r\n<p><strong>CALL OR MESSAGE</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\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p><a href=\"tel:+971505145129\">+971 50 514 5129</a><br />WhatsApp: <a href=\"https://wa.me/+971505145129\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">+971 50 514 5129</span></a></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=\"yes\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"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=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" border_sizes_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color6)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" z_index=\"100\" overflow=\"visible\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"2\" box_shadow_horizontal=\"2\" box_shadow_color=\"rgba(67,69,73,0.27)\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope fas\" spin=\"no\" linktarget=\"_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\" alignment=\"center\" size=\"32\" circlebordercolor=\"var(--awb-color6)\" circlebordersize=\"2\" circlecolor=\"var(--awb-color1)\" iconcolor=\"var(--awb-color6)\" margin_top=\"-60px\" circlebordercolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color1)\" /][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"22px\" text_shadow_vertical=\"1\" text_shadow_horizontal=\"1\" text_shadow_color=\"var(--awb-color4)\"]\r\n<p><strong>EMAIL US</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\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>info@drsoheila.ae<br />support@drsoheila.ae</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"120px\" padding_bottom=\"80px\" flex_column_spacing=\"70px\" margin_bottom=\"0px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" padding_top_small=\"0px\" padding_bottom_small=\"40px\" margin_bottom_small=\"0px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" margin_bottom_medium=\"90px\" admin_label=\"Contact Us - Form\"][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=\"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\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIzNzAiIHN0eWxlPSJib3JkZXI6MDsgYm9yZGVyLXJhZGl1czogMTBweDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" margin_bottom_small=\"0px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"24px\" margin_bottom_small=\"30px\"]\r\n<p>Contact Form</p>\r\n[/fusion_title][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Contact","","publish","closed","closed","","contact","","","2026-06-17 18:33:22","2026-06-17 18:33:22","","0","https://dr.frex.digital/?page_id=56","0","page","","0"),
("59","7496","2026-06-21 15:49:25","2023-07-07 16:31:22","","About Us","","publish","closed","closed","","59","","","2026-06-21 15:49:25","2026-06-21 15:49:25","","0","https://dr.frex.digital/?p=59","5","nav_menu_item","","0"),
("61","7496","2026-06-21 15:49:25","2023-07-07 16:31:22","","Contact Us","","publish","closed","closed","","61","","","2026-06-21 15:49:25","2026-06-21 15:49:25","","0","https://dr.frex.digital/?p=61","6","nav_menu_item","","0"),
("96","7496","2023-07-07 18:28:11","2023-07-07 18:28:11","Source : https://www.pexels.com/photo/woman-in-white-dress-dancing-8462911/","hero-1","","inherit","open","closed","","hero-1","","","2023-07-10 13:23:03","2023-07-10 13:23:03","","0","https://dr.frex.digital/wp-content/uploads/2023/07/hero-1.jpg","0","attachment","image/jpeg","0"),
("105","7496","2023-07-07 18:38:43","2023-07-07 18:38:43","{\\\"conditions\\\":{\\\"front_page\\\":{\\\"label\\\":\\\"Front Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"front_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":880}}","Homepage","","publish","closed","closed","","homepage","","","2024-02-06 05:47:31","2024-02-06 05:47:31","","0","https://dr.frex.digital/fusion_tb_layout/homepage/","0","fusion_tb_layout","","0"),
("135","7496","2023-07-10 13:19:19","2023-07-10 13:19:19","Source : https://www.pexels.com/photo/young-asian-male-performing-street-dance-5368931/","class-1","","inherit","open","closed","","class-1","","","2023-07-10 13:22:30","2023-07-10 13:22:30","","0","https://dr.frex.digital/wp-content/uploads/2023/07/class-1.jpg","0","attachment","image/jpeg","0"),
("140","7496","2023-07-10 14:06:49","2023-07-10 14:06:49","","Dance-v1.2","","inherit","open","closed","","dance-v1-2","","","2023-07-10 14:06:49","2023-07-10 14:06:49","","0","https://dr.frex.digital/wp-content/uploads/2023/07/Dance-v1.2.zip","0","attachment","application/zip","0"),
("145","7496","2023-07-10 14:27:22","2023-07-10 14:27:22","Source : https://www.pexels.com/photo/actors-artists-ballet-costumes-45258/","class-2","","inherit","open","closed","","class-2","","","2023-07-10 14:28:02","2023-07-10 14:28:02","","0","https://dr.frex.digital/wp-content/uploads/2023/07/class-2.jpg","0","attachment","image/jpeg","0"),
("146","7496","2023-07-10 14:29:16","2023-07-10 14:29:16","Source : https://www.pexels.com/photo/ballerina-dancing-6616719/","class-3","","inherit","open","closed","","class-3","","","2023-07-10 14:31:30","2023-07-10 14:31:30","","0","https://dr.frex.digital/wp-content/uploads/2023/07/class-3.jpg","0","attachment","image/jpeg","0"),
("154","7496","2023-07-10 14:45:42","2023-07-10 14:45:42","Source : https://www.pexels.com/photo/young-ballerina-doing-dance-move-in-studio-5149586/","info-1","","inherit","open","closed","","info-1","","","2023-07-10 14:46:22","2023-07-10 14:46:22","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg","0","attachment","image/jpeg","0"),
("160","7496","2023-07-10 15:12:48","2023-07-10 15:12: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color3)\" padding_top=\"120px\" padding_bottom=\"80px\" padding_top_small=\"40px\" admin_label=\"Footer - Content\" padding_bottom_small=\"40px\" link_color=\"var(--awb-color7)\" link_hover_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifSwiZWxlbWVudF9jb250ZW50Ijp7ImRhdGEiOiJzaXRlX2xvZ28iLCJ0eXBlIjoiYWxsIn19\" max_width=\"250px\" /][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color7)\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>COSMETIC CLINIC DUBAI</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-color7)\"]\r\n<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color7)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"https://www.facebook.com/soheila.eskandari.94\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" font_size=\"22px\" phone=\"tel:+971505145129\" email=\"info@drsoheila.ae\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color7)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.51)\"]\r\n<p>Quick access</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-color7)\"]<p><a href=\"https://dr.frex.digital/treatments/\"><u>Treatments</u></a></p><p><a href=\"https://dr.frex.digital/appointments/\"><u>Book an Appointment</u></a></p><p><u>By Concerns</u></p><p><a href=\"https://dr.frex.digital/about/\"><u>About Us</u></a></p><p><u>Dr. Soheila Eskandari</u></p>[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color7)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.51)\"]\r\n<p>Contact</p>\r\n[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color7)\" item_padding_bottom=\"20px\" size=\"15px\" iconcolor=\"var(--awb-color7)\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>\r\n[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]\r\n<p><a href=\"tel://+971505145129\">+971 50 514 5129</a></p>\r\n[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHN0eWxlPSJib3JkZXI6MDsgYm9yZGVyLXJhZGl1czogMTBweDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","publish","closed","closed","","global-footer","","","2026-06-16 11:26:54","2026-06-16 11:26:54","","0","https://dr.frex.digital/fusion_tb_section/global-footer/","0","fusion_tb_section","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("161","7496","2023-07-10 15:20:57","2023-07-10 15:20:57","","Company","","publish","closed","closed","","company","","","2023-07-10 15:20:57","2023-07-10 15:20:57","","0","https://dr.frex.digital/2023/07/10/company/","0","nav_menu_item","","0"),
("162","7496","2023-07-10 15:20:57","2023-07-10 15:20:57","","News","","publish","closed","closed","","news","","","2023-07-10 15:20:57","2023-07-10 15:20:57","","0","https://dr.frex.digital/2023/07/10/news/","2","nav_menu_item","","0"),
("163","7496","2023-07-10 15:20:57","2023-07-10 15:20:57","","Contact","","publish","closed","closed","","contact","","","2023-07-10 15:20:57","2023-07-10 15:20:57","","0","https://dr.frex.digital/2023/07/10/contact/","3","nav_menu_item","","0"),
("164","7496","2023-07-10 15:20:57","2023-07-10 15:20:57","","Privacy Policy","","publish","closed","closed","","privacy-policy","","","2023-07-10 15:20:57","2023-07-10 15:20:57","","0","https://dr.frex.digital/2023/07/10/privacy-policy/","0","nav_menu_item","","0"),
("165","7496","2023-07-10 15:20:57","2023-07-10 15:20:57","","Terms of Use","","publish","closed","closed","","terms-of-use","","","2023-07-10 15:20:57","2023-07-10 15:20:57","","0","https://dr.frex.digital/2023/07/10/terms-of-use/","2","nav_menu_item","","0"),
("166","7496","2023-07-10 15:20:57","2023-07-10 15:20:57","","Press","","publish","closed","closed","","press","","","2023-07-10 15:20:57","2023-07-10 15:20:57","","0","https://dr.frex.digital/2023/07/10/press/","3","nav_menu_item","","0"),
("167","7496","2023-07-10 15:20:58","2023-07-10 15:20:58","[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"center\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0\" padding_right=\"0\" padding_bottom=\"0\" padding_left=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_hover_color=\"var(--awb-color4)\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 60%))\" border_position=\"all\" border_sizes_top=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_sizes_right=\"1px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" spacing_right=\"2.6666666666666665%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" padding_top_small=\"6px\" padding_bottom_small=\"6px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"false\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_form_email name=\"insert_your_email\" required=\"no\" placeholder=\"Insert your email\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"1_3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" spacing_left=\"0%\" padding_top=\"6px\" padding_right=\"6px\" padding_bottom=\"6px\" padding_left=\"0px\" padding_top_small=\"6px\" padding_right_small=\"6px\" padding_bottom_small=\"6px\" padding_left_small=\"6px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"false\" min_height=\"\" link=\"\"][fusion_form_submit button_el_type=\"submit\" hide_on_mobile=\"small-visibility, medium-visibility, large-visibility\" accent_color=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color1)\" color=\"custom\" button_gradient_bottom_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" button_gradient_top_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" icon_divider=\"no\" icon_position=\"left\" stretch=\"yes\" default_stretch_value=\"no\" text_transform=\"var(--awb-typography3-text-transform)\" type=\"flat\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" padding_top=\"20px\" padding_bottom=\"20px\" font_size=\"18px\" line_height=\"23px\" fusion_font_family_button_font=\"var(--awb-typography3-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography3)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"96\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" border_left=\"0px\" button_gradient_bottom_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 15%),var(--awb-color6-a))\" button_gradient_top_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 15%),var(--awb-color6-a))\" button_accent_color=\"var(--awb-color1)\" button_accent_hover_color=\"var(--awb-color1)\" button_bevel_color=\"#5db072\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" border_radius_top_left=\"0\"]Subscribe[/fusion_form_submit][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_hover_color=\"var(--awb-color4)\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"30px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_form_notice error=\"There was an error trying to send your message. Please try again later.\" success=\"Thank you for your message. It has been sent.\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","New Form Form 3678 (L P)","","publish","closed","closed","","new-form-form-3678-l-p","","","2023-07-11 12:40:13","2023-07-11 12:40:13","","0","https://dr.frex.digital/fusion_form/new-form-form-3678-l-p/","0","fusion_form","","0"),
("178","7496","2023-07-10 15:34:56","2023-07-10 15:34:56","Source : https://www.pexels.com/video/woman-dancing-ballet-10637173/","pexels-cottonbro-10637173 (720p)","","inherit","open","closed","","pexels-cottonbro-10637173-720p","","","2023-07-19 17:30:05","2023-07-19 17:30:05","","0","https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-10637173-720p.mp4","0","attachment","video/mp4","0"),
("182","7496","2023-07-10 15:56:12","2023-07-10 15:56:12","Source : https://www.pexels.com/photo/energetic-asian-man-dancing-street-dance-on-sidewalk-5368937/","instructor-1","","inherit","open","closed","","instructor-1","","","2023-07-10 15:58:25","2023-07-10 15:58:25","","0","https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg","0","attachment","image/jpeg","0"),
("183","7496","2023-07-10 15:58:43","2023-07-10 15:58:43","Source : https://www.pexels.com/photo/ballerina-doing-spin-while-training-in-studio-5149589/","instructor-2","","inherit","open","closed","","instructor-2","","","2023-07-19 17:30:47","2023-07-19 17:30:47","","0","https://dr.frex.digital/wp-content/uploads/2023/07/instructor-2.jpg","0","attachment","image/jpeg","0"),
("185","7496","2023-07-10 16:00:23","2023-07-10 16:00:23","Source : https://www.pexels.com/photo/a-woman-dancing-in-the-room-7805001/","instructor-3","","inherit","open","closed","","instructor-3","","","2023-07-10 16:02:49","2023-07-10 16:02:49","","0","https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg","0","attachment","image/jpeg","0"),
("188","7496","2023-07-10 16:26:06","2023-07-10 16:26:06","https://www.pexels.com/video/women-in-black-gowns-dancing-with-eyes-closed-8208001/","pexels-cottonbro-8208001 (720p)","","inherit","open","closed","","pexels-cottonbro-8208001-720p","","","2023-07-19 18:15:31","2023-07-19 18:15:31","","0","https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4","0","attachment","video/mp4","0"),
("194","1","2023-07-10 17:00:56","2023-07-10 17:00: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\" 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\"]\r\n[fusion_builder_row]\r\n[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\" first=\"true\" min_height=\"\" link=\"\"]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" font_size=\"45px\" 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\" margin_bottom=\"30px\"]The Best Under-Eye Treatments: Erase Dark Circles, Bags, and Hollows[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">They say the eyes are the windows to the soul, but they are also the first area of the face to reveal our age, stress levels, and lack of sleep. The skin around the eyes (the periorbital area) is up to ten times thinner than the skin on the rest of the face. This makes it incredibly vulnerable to dehydration, collagen loss, and hyperpigmentation.</p>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">At <strong>Dr. Soheila Clinic</strong>, under-eye rejuvenation is one of our core specialties. Because every patient\'s anatomy is unique, a \"one-size-fits-all\" approach does not work here. Whether you are battling genetic dark circles, deep tear troughs, or morning puffiness, understanding the root cause is the secret to finding the perfect treatment.</p>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Decoding Your Under-Eye Concerns[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">Before choosing a treatment, we must identify exactly what is happening beneath the skin. The most common under-eye issues fall into four categories:</p>\r\n\r\n<ul style=\"font-size: 16px; line-height: 1.8;\">\r\n    <li><strong>Dark Circles (Pigmentation vs. Vascular):</strong> True pigmentation looks brown and is caused by excess melanin (often genetic or sun-induced). Vascular dark circles look blue or purple and occur because the skin is so thin that the underlying blood vessels show through.</li>\r\n    <li><strong>Hollowing (Tear Troughs):</strong> As we age, the fat pads in our face begin to drop and shrink. This creates a structural shadow or \"valley\" under the eye, making you look tired regardless of how much sleep you get.</li>\r\n    <li><strong>Puffiness & Under-Eye Bags:</strong> These can be caused by fluid retention (often worse in the morning), allergies, or the natural herniation of under-eye fat pads as the supporting ligaments weaken over time.</li>\r\n    <li><strong>Fine Lines & Wrinkles:</strong> Repeated facial expressions (smiling, squinting) combined with the natural loss of elastin lead to \"crow\'s feet\" and crepey skin texture.</li>\r\n</ul>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Quick Reference: Eye Concerns & Top Solutions[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<div style=\"overflow-x:auto;\">\r\n    <table style=\"width: 100%; border-collapse: collapse; margin-bottom: 20px; text-align: left; font-size: 15px;\">\r\n        <thead>\r\n            <tr style=\"background-color: #f1f1f1;\">\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">The Concern</th>\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">The Root Cause</th>\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">Best Clinical Treatment</th>\r\n            </tr>\r\n        </thead>\r\n        <tbody>\r\n            <tr>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Hollowing / Tear Troughs</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Volume loss, fat pad descent, genetics.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Hyaluronic Acid Fillers</td>\r\n            </tr>\r\n            <tr style=\"background-color: #fafafa;\">\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Pigmented Dark Circles</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Melanin overproduction, sun damage.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Mesotherapy, Chemical Peels</td>\r\n            </tr>\r\n            <tr>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Vascular Dark Circles</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Thin skin revealing blood vessels.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">PRP Therapy, Skin Boosters</td>\r\n            </tr>\r\n            <tr style=\"background-color: #fafafa;\">\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Fine Lines & Crow\'s Feet</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Loss of collagen, repetitive muscle movement.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Botox, RF Microneedling</td>\r\n            </tr>\r\n        </tbody>\r\n    </table>\r\n</div>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Advanced Professional Treatments[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">While premium eye creams containing retinol, Vitamin C, and caffeine are great for daily maintenance, true structural correction requires professional medical treatments. At Dr. Soheila Clinic, we offer the latest, safest, and most effective protocols:</p>\r\n\r\n<h3 style=\"margin-top: 30px; font-size: 35px;\">1. Tear Trough Fillers</h3>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">If your dark circles are actually shadows caused by hollowing, creams will not help. By carefully injecting a soft, specialized Hyaluronic Acid (HA) filler into the tear trough, we instantly restore lost volume. This lifts the skin, erases the shadow, and provides a refreshed, wide-awake look immediately.</p>\r\n\r\n<h3 style=\"margin-top: 30px; font-size: 35px;\">2. PRP (Platelet-Rich Plasma) & Mesotherapy</h3>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">Also known as \"liquid gold,\" PRP uses the growth factors from your own blood to naturally thicken the delicate under-eye skin, build new collagen, and improve blood circulation. Similarly, customized Mesotherapy cocktails (packed with vitamins, amino acids, and hyaluronic acid) can be infused directly into the skin to brighten pigmentation and deeply hydrate.</p>\r\n\r\n<h3 style=\"margin-top: 30px; font-size: 35px;\">3. Botox & Energy-Based Tightening</h3>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">For dynamic wrinkles like crow\'s feet, anti-wrinkle injections (Botox) remain the gold standard, relaxing the muscles that cause the lines. For overall skin laxity and crepey texture, treatments like Radiofrequency (RF) Microneedling stimulate deep dermal collagen production to tighten and firm the eye contour over time.</p>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Reawaken Your Eyes[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">Your eyes are the focal point of your face. You don\'t have to live with dark circles or hollows that make you look more tired than you feel. The right medical treatment can take years off your appearance subtly and safely.</p>\r\n\r\n<div style=\"background-color: #fcfcfc; border-left: 5px solid #d2a65a; padding: 20px; margin-top: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.05);\">\r\n    <h4 style=\"margin-top: 0;\">Ready for a brighter, refreshed look?</h4>\r\n    <p style=\"margin-bottom: 0; font-size: 16px; line-height: 1.8;\">Book your comprehensive eye assessment at <strong>Dr. Soheila Clinic</strong> today. Our medical experts will evaluate the exact cause of your under-eye concerns and design a tailored treatment plan to restore your natural vibrance.</p>\r\n</div>\r\n[/fusion_text]\r\n\r\n[/fusion_builder_column]\r\n[/fusion_builder_row]\r\n[/fusion_builder_container]","Best Under-Eye Treatments","Vestibulum suscipit nulla quis orci. Cras id dui. Nam pretium turpis et arcu.","publish","open","open","","best-under-eye-treatments","","","2026-06-12 10:58:12","2026-06-12 10:58:12","","0","https://dr.frex.digital/?p=194","0","post","","0"),
("195","7496","2023-07-10 16:59:51","2023-07-10 16:59:51","Source : https://www.pexels.com/photo/a-ballet-dancer-wearing-white-skirt-and-pointe-shoes-5255015/ ","blog-3","","inherit","open","closed","","blog-3","","","2023-07-10 17:00:46","2023-07-10 17:00:46","","194","https://dr.frex.digital/wp-content/uploads/2023/07/blog-3.jpg","0","attachment","image/jpeg","0"),
("197","1","2023-07-10 17:14:39","2023-07-10 17:14: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\" 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\"]\r\n[fusion_builder_row]\r\n[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\" first=\"true\" min_height=\"\" link=\"\"]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" font_size=\"45px\" 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\" margin_bottom=\"30px\"]Secrets to an Elegant Neck: Your Ultimate Anti-Aging Guide[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">When we think about anti-aging, our focus instinctively goes to the face. We invest in high-quality serums, strict SPF routines, and targeted clinical treatments to keep facial skin looking youthful. Yet, the true giveaway of age is often resting just below the jawline. The neck is one of the most visible, yet most frequently neglected, areas of the body.</p>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">At <strong>Dr. Soheila Clinic</strong>, neck rejuvenation is one of our most requested aesthetic procedures. From modern phenomena like \"tech neck\" to the natural loss of skin elasticity, understanding how to care for this delicate area is crucial. Here are the closely guarded secrets to achieving and maintaining a smooth, firm, and elegant neck.</p>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Why the Neck Ages Faster[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">The skin on your neck is anatomically different from the skin on your face. It is significantly thinner and has far fewer sebaceous (oil) glands, meaning it is more prone to dryness and less capable of healing itself. Furthermore, the neck is in constant motion. Every time you turn your head, look down at a screen, or sleep, the skin is stretched and folded.</p>\r\n\r\n<h3 style=\"margin-top: 30px; font-size: 35px;\">The 3 Golden Rules of At-Home Neck Care</h3>\r\n<ul style=\"font-size: 16px; line-height: 1.8;\">\r\n    <li><strong>Rule 1: Skincare Doesn\'t Stop at the Jawline.</strong> Treat your neck and décolletage as an extension of your face. Whenever you apply cleanser, antioxidant serums (like Vitamin C), and moisturizers, sweep the product down to your collarbones using gentle, upward strokes.</li>\r\n    <li><strong>Rule 2: Mind Your Posture (\"Tech Neck\").</strong> Constantly looking down at smartphones creates deep horizontal creases over time. Keep screens at eye level as much as possible to prevent premature line formation.</li>\r\n    <li><strong>Rule 3: Sun Protection is Mandatory.</strong> The neck is highly exposed to the sun, leading to a condition called <em>poikiloderma</em> (red-brown pigmentation and textural damage). A broad-spectrum SPF 50+ must be applied daily to the front and sides of the neck.</li>\r\n</ul>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Quick Reference: Neck Concerns & Solutions[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<div style=\"overflow-x:auto;\">\r\n    <table style=\"width: 100%; border-collapse: collapse; margin-bottom: 20px; text-align: left; font-size: 15px;\">\r\n        <thead>\r\n            <tr style=\"background-color: #f1f1f1;\">\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">The Concern</th>\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">The Cause</th>\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">Best Clinical Solution</th>\r\n            </tr>\r\n        </thead>\r\n        <tbody>\r\n            <tr>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Horizontal Lines (Tech Neck)</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Poor posture, looking down at devices, repetitive folding.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Skin Boosters (Profhilo), Micro-filler Injections</td>\r\n            </tr>\r\n            <tr style=\"background-color: #fafafa;\">\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Vertical Bands (Platysmal Bands)</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Overactive neck muscles pulling down on the jawline.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Botox / The \"Nefertiti Lift\"</td>\r\n            </tr>\r\n            <tr>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Sagging Skin (Crepey Texture)</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Natural loss of collagen and elastin fibers over time.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Microneedling with RF, Biostimulators (Radiesse)</td>\r\n            </tr>\r\n            <tr style=\"background-color: #fafafa;\">\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Sun Damage & Redness</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Chronic UV exposure without adequate SPF protection.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Chemical Peels, IPL, Laser Resurfacing</td>\r\n            </tr>\r\n        </tbody>\r\n    </table>\r\n</div>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Professional Neck Rejuvenation at Dr. Soheila Clinic[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">While prevention is key, once structural damage occurs, topical creams are rarely enough. At Dr. Soheila Clinic, we combine art and science to restore the elegant contours of your neck. Our top-tier treatments include:</p>\r\n\r\n<ul style=\"font-size: 16px; line-height: 1.8;\">\r\n    <li><strong>The Nefertiti Lift:</strong> Named after the Egyptian queen known for her elegant jawline, this treatment involves strategic injections of Botox into the platysma muscles. This prevents the muscles from pulling the lower face downward, creating a smoother neck and a sharper jawline.</li>\r\n    <li><strong>Bioremodeling with Profhilo:</strong> Profhilo is a revolutionary hyaluronic acid treatment that doesn\'t just fill lines; it stimulates your skin receptors to produce fresh collagen and elastin. It is incredibly effective at curing crepey, lax skin on the neck.</li>\r\n    <li><strong>Energy-Based Skin Tightening:</strong> Treatments like Radiofrequency (RF) Microneedling deliver heat deep into the dermis. This controlled thermal energy creates micro-injuries that trigger a massive healing response, effectively tightening loose skin and smoothing out deep horizontal lines.</li>\r\n</ul>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Elevate Your Profile[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">A beautiful, firm neck frames your face and enhances your overall youthfulness. Whether you are looking to prevent the early signs of tech neck or want to reverse years of sun damage, we have the advanced medical solutions to help.</p>\r\n\r\n<div style=\"background-color: #fcfcfc; border-left: 5px solid #d2a65a; padding: 20px; margin-top: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.05);\">\r\n    <h4 style=\"margin-top: 0;\">Ready to reveal a more elegant you?</h4>\r\n    <p style=\"margin-bottom: 0; font-size: 16px; line-height: 1.8;\">Schedule a bespoke consultation at <strong>Dr. Soheila Clinic</strong>. We will deeply analyze your skin quality, muscle movement, and aesthetic goals to curate the perfect neck rejuvenation plan for you.</p>\r\n</div>\r\n[/fusion_text]\r\n\r\n[/fusion_builder_column]\r\n[/fusion_builder_row]\r\n[/fusion_builder_container]","Secrets to an Elegant Neck","Aenean vulputate eleifend tellus. Proin sapien ipsum, porta a, auctor quis, euismod ut, mi. Ut varius tincidunt libero.","publish","open","open","","secrets-to-an-elegant-neck","","","2026-06-12 10:56:41","2026-06-12 10:56:41","","0","https://dr.frex.digital/?p=197","0","post","","0"),
("198","7496","2023-07-10 17:01:39","2023-07-10 17:01:39","Source : https://www.pexels.com/photo/crop-faceless-ballerina-girl-tying-straps-of-pointe-shoes-5154027/","blog-2","","inherit","open","closed","","blog-2","","","2023-07-10 17:14:31","2023-07-10 17:14:31","","197","https://dr.frex.digital/wp-content/uploads/2023/07/blog-2.jpg","0","attachment","image/jpeg","0"),
("200","1","2023-07-10 17:15:59","2023-07-10 17:15:59","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\"]\r\n[fusion_builder_row]\r\n[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\" first=\"true\" min_height=\"\" link=\"\"]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" font_size=\"45px\" 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\" margin_bottom=\"30px\"]The Best Under-Eye Treatments: Erase Dark Circles, Bags, and Hollows[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">They say the eyes are the windows to the soul, but they are also the first area of the face to reveal our age, stress levels, and lack of sleep. The skin around the eyes (the periorbital area) is up to ten times thinner than the skin on the rest of the face. This makes it incredibly vulnerable to dehydration, collagen loss, and hyperpigmentation.</p>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">At <strong>Dr. Soheila Clinic</strong>, under-eye rejuvenation is one of our core specialties. Because every patient\'s anatomy is unique, a \"one-size-fits-all\" approach does not work here. Whether you are battling genetic dark circles, deep tear troughs, or morning puffiness, understanding the root cause is the secret to finding the perfect treatment.</p>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Decoding Your Under-Eye Concerns[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">Before choosing a treatment, we must identify exactly what is happening beneath the skin. The most common under-eye issues fall into four categories:</p>\r\n\r\n<ul style=\"font-size: 16px; line-height: 1.8;\">\r\n    <li><strong>Dark Circles (Pigmentation vs. Vascular):</strong> True pigmentation looks brown and is caused by excess melanin (often genetic or sun-induced). Vascular dark circles look blue or purple and occur because the skin is so thin that the underlying blood vessels show through.</li>\r\n    <li><strong>Hollowing (Tear Troughs):</strong> As we age, the fat pads in our face begin to drop and shrink. This creates a structural shadow or \"valley\" under the eye, making you look tired regardless of how much sleep you get.</li>\r\n    <li><strong>Puffiness & Under-Eye Bags:</strong> These can be caused by fluid retention (often worse in the morning), allergies, or the natural herniation of under-eye fat pads as the supporting ligaments weaken over time.</li>\r\n    <li><strong>Fine Lines & Wrinkles:</strong> Repeated facial expressions (smiling, squinting) combined with the natural loss of elastin lead to \"crow\'s feet\" and crepey skin texture.</li>\r\n</ul>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Quick Reference: Eye Concerns & Top Solutions[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<div style=\"overflow-x:auto;\">\r\n    <table style=\"width: 100%; border-collapse: collapse; margin-bottom: 20px; text-align: left; font-size: 15px;\">\r\n        <thead>\r\n            <tr style=\"background-color: #f1f1f1;\">\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">The Concern</th>\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">The Root Cause</th>\r\n                <th style=\"padding: 15px; border: 1px solid #e0e0e0; color: #333;\">Best Clinical Treatment</th>\r\n            </tr>\r\n        </thead>\r\n        <tbody>\r\n            <tr>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Hollowing / Tear Troughs</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Volume loss, fat pad descent, genetics.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Hyaluronic Acid Fillers</td>\r\n            </tr>\r\n            <tr style=\"background-color: #fafafa;\">\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Pigmented Dark Circles</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Melanin overproduction, sun damage.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Mesotherapy, Chemical Peels</td>\r\n            </tr>\r\n            <tr>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Vascular Dark Circles</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Thin skin revealing blood vessels.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">PRP Therapy, Skin Boosters</td>\r\n            </tr>\r\n            <tr style=\"background-color: #fafafa;\">\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\"><strong>Fine Lines & Crow\'s Feet</strong></td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Loss of collagen, repetitive muscle movement.</td>\r\n                <td style=\"padding: 15px; border: 1px solid #e0e0e0;\">Botox, RF Microneedling</td>\r\n            </tr>\r\n        </tbody>\r\n    </table>\r\n</div>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Advanced Professional Treatments[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">While premium eye creams containing retinol, Vitamin C, and caffeine are great for daily maintenance, true structural correction requires professional medical treatments. At Dr. Soheila Clinic, we offer the latest, safest, and most effective protocols:</p>\r\n\r\n<h3 style=\"margin-top: 30px; font-size: 35px;\">1. Tear Trough Fillers</h3>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">If your dark circles are actually shadows caused by hollowing, creams will not help. By carefully injecting a soft, specialized Hyaluronic Acid (HA) filler into the tear trough, we instantly restore lost volume. This lifts the skin, erases the shadow, and provides a refreshed, wide-awake look immediately.</p>\r\n\r\n<h3 style=\"margin-top: 30px; font-size: 35px;\">2. PRP (Platelet-Rich Plasma) & Mesotherapy</h3>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">Also known as \"liquid gold,\" PRP uses the growth factors from your own blood to naturally thicken the delicate under-eye skin, build new collagen, and improve blood circulation. Similarly, customized Mesotherapy cocktails (packed with vitamins, amino acids, and hyaluronic acid) can be infused directly into the skin to brighten pigmentation and deeply hydrate.</p>\r\n\r\n<h3 style=\"margin-top: 30px; font-size: 35px;\">3. Botox & Energy-Based Tightening</h3>\r\n<p style=\"font-size: 16px; line-height: 1.8;\">For dynamic wrinkles like crow\'s feet, anti-wrinkle injections (Botox) remain the gold standard, relaxing the muscles that cause the lines. For overall skin laxity and crepey texture, treatments like Radiofrequency (RF) Microneedling stimulate deep dermal collagen production to tighten and firm the eye contour over time.</p>\r\n[/fusion_text]\r\n\r\n[fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" font_size=\"40px\" 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\" margin_bottom=\"30px\"]Reawaken Your Eyes[/fusion_title]\r\n\r\n[fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p style=\"font-size: 16px; line-height: 1.8;\">Your eyes are the focal point of your face. You don\'t have to live with dark circles or hollows that make you look more tired than you feel. The right medical treatment can take years off your appearance subtly and safely.</p>\r\n\r\n<div style=\"background-color: #fcfcfc; border-left: 5px solid #d2a65a; padding: 20px; margin-top: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.05);\">\r\n    <h4 style=\"margin-top: 0;\">Ready for a brighter, refreshed look?</h4>\r\n    <p style=\"margin-bottom: 0; font-size: 16px; line-height: 1.8;\">Book your comprehensive eye assessment at <strong>Dr. Soheila Clinic</strong> today. Our medical experts will evaluate the exact cause of your under-eye concerns and design a tailored treatment plan to restore your natural vibrance.</p>\r\n</div>\r\n[/fusion_text]\r\n\r\n[/fusion_builder_column]\r\n[/fusion_builder_row]\r\n[/fusion_builder_container]","Sun & Water Damage: The Dubai Guide","Aliquam eu nunc. Maecenas vestibulum mollis diam. Sed libero.","publish","open","open","","sun-water-damage-the-dubai-guide","","","2026-06-12 10:55:27","2026-06-12 10:55:27","","0","https://dr.frex.digital/?p=200","0","post","","1"),
("201","7496","2023-07-10 17:15:14","2023-07-10 17:15:14","Source : https://unsplash.com/photos/KHipnBn7sdY","blog-1","","inherit","open","closed","","blog-1","","","2023-07-10 17:15:47","2023-07-10 17:15:47","","200","https://dr.frex.digital/wp-content/uploads/2023/07/blog-1.jpg","0","attachment","image/jpeg","0"),
("204","7496","2023-07-10 17:27:15","2023-07-10 17:27:15","[fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"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_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color7)\" gradient_start_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" 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_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwiYmFja2dyb3VuZF9pbWFnZSI6IiIsInR5cGUiOiJtYWluIiwiZmFsbGJhY2siOiIifSwibGluayI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"no\" 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\" text_color=\"var(--awb-color1)\" item_border_top=\"1px\" item_border_right=\"1px\" item_border_bottom=\"1px\" item_border_left=\"1px\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" item_border_color=\"var(--awb-color1)\" item_padding_top=\"6px\" item_padding_right=\"7px\" item_padding_bottom=\"6px\" item_padding_left=\"7px\" item_border_radius_top_left=\"7px\" item_border_radius_top_right=\"7px\" item_border_radius_bottom_right=\"7px\" item_border_radius_bottom_left=\"7px\" /][fusion_separator style_type=\"none\" flex_grow=\"1\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"15vw\" /][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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==\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][/fusion_builder_column]","Blog 1","","publish","closed","closed","","blog-1","","","2026-06-12 10:14:47","2026-06-12 10:14:47","","0","https://dr.frex.digital/fusion_element/blog-1/","0","fusion_element","","0"),
("217","7496","2023-07-10 18:07:35","2023-07-10 18:07:35","Source : https://www.pexels.com/photo/actors-artists-ballet-costumes-45258/","banner-1","","inherit","open","closed","","banner-1","","","2023-07-10 18:14:09","2023-07-10 18:14:09","","0","https://dr.frex.digital/wp-content/uploads/2023/07/banner-1.jpg","0","attachment","image/jpeg","0"),
("222","7496","2023-07-10 18:35:57","2023-07-10 18:35:57","Source : https://www.vecteezy.com/vector-art/23264083-fake-hand-drawn-autographs-set-handwritten-signature-scribble-for-business-certificate-or-letter-vector-isolated-illustration","signature-1","","inherit","open","closed","","signature-1","","","2023-07-19 18:27:16","2023-07-19 18:27:16","","0","https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png","0","attachment","image/png","0"),
("224","7496","2023-07-10 18:53:28","2023-07-10 18:53:28","[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"3%\" flex_justify_content=\"flex-start\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" layout=\"1_1\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_form_text name=\"first_name\" placeholder=\"You name\" required=\"no\" maxlength=\"0\" minlength=\"0\" /][fusion_form_email name=\"email_address\" required=\"yes\" placeholder=\"Your email adress\" /][fusion_form_notice error=\"There was an error trying to send your message. Please try again later.\" success=\"Thank you for your message. It has been sent.\" /][fusion_form_submit color=\"custom\" gradient_end_position=\"100\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" margin_top=\"30px\"]Subscribe to our newsletter[/fusion_form_submit][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Subscribe","","publish","closed","closed","","subscribe","","","2023-07-10 19:33:47","2023-07-10 19:33:47","","0","https://dr.frex.digital/fusion_form/subscribe/","0","fusion_form","","0"),
("231","7496","2023-07-10 19:57:41","2023-07-10 19:57:41","Source : https://www.pexels.com/photo/three-women-dancing-near-body-of-water-1398624/","gallery-1","","inherit","open","closed","","gallery-1","","","2023-07-10 19:59:11","2023-07-10 19:59:11","","0","https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg","0","attachment","image/jpeg","0"),
("232","7496","2023-07-10 19:57:42","2023-07-10 19:57:42","Source : https://www.pexels.com/photo/blurred-woman-dancing-in-wedding-dress-16662252/","gallery-2","","inherit","open","closed","","gallery-2","","","2023-07-10 20:00:51","2023-07-10 20:00:51","","0","https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg","0","attachment","image/jpeg","0"),
("233","7496","2023-07-10 19:57:42","2023-07-10 19:57:42","Source : https://www.pexels.com/photo/dancer-dancing-at-the-hallway-8854014/","gallery-3","","inherit","open","closed","","gallery-3","","","2023-07-10 20:03:11","2023-07-10 20:03:11","","0","https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg","0","attachment","image/jpeg","0"),
("234","7496","2023-07-10 19:57:43","2023-07-10 19:57:43","Source : https://www.pexels.com/photo/ballerina-in-white-tutu-dancing-5888625/","gallery-4","","inherit","open","closed","","gallery-4","","","2023-07-10 20:11:33","2023-07-10 20:11:33","","0","https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg","0","attachment","image/jpeg","0"),
("235","7496","2023-07-10 19:57:44","2023-07-10 19:57:44","Source : https://www.pexels.com/photo/ballerina-tying-ribbons-on-pointe-shoes-5154374/","gallery-5","","inherit","open","closed","","gallery-5","","","2023-07-10 20:19:03","2023-07-10 20:19:03","","0","https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg","0","attachment","image/jpeg","0"),
("236","7496","2023-07-10 19:57:44","2023-07-10 19:57:44","Source : https://www.pexels.com/photo/woman-art-girl-dancing-39572/","gallery-6","","inherit","open","closed","","gallery-6","","","2023-07-12 17:03:13","2023-07-12 17:03:13","","0","https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg","0","attachment","image/jpeg","0"),
("243","7496","2023-07-10 20:29:16","2023-07-10 20:29:16","Source : https://unsplash.com/photos/8adqeHcZENI","banner-2","","inherit","open","closed","","banner-2","","","2023-07-10 20:30:07","2023-07-10 20:30:07","","0","https://dr.frex.digital/wp-content/uploads/2023/07/banner-2.jpg","0","attachment","image/jpeg","0"),
("250","7496","2023-07-11 12:55:29","2023-07-11 12:55:29","[fusion_builder_container align_content=\"flex-start\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" min_height=\"100vh\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"35px\" padding_bottom=\"35px\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" padding_right=\"35px\" padding_left=\"35px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" layout=\"1_1\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"center\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"25|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/logo.svg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container align_content=\"flex-start\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" min_height=\"100vh\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"50px\" padding_right=\"40px\" padding_bottom=\"50px\" padding_left=\"40px\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" layout=\"1_1\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_menu active_border_color=\"var(--awb-color5)\" active_border_bottom=\"0px\" active_border_left=\"0px\" active_border_right=\"0px\" active_border_top=\"0px\" active_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 13%),var(--awb-color5-a))\" align_items=\"stretch\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" arrows_size_height=\"12px\" arrows_size_width=\"23px\" border_bottom=\"0px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" border_radius_bottom_left=\"0px\" border_radius_bottom_right=\"0px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" box_shadow=\"yes\" box_shadow_blur=\"10\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" box_shadow_horizontal=\"0px\" box_shadow_spread=\"0\" box_shadow_vertical=\"3px\" breakpoint=\"never\" custom_breakpoint=\"2000\" collapsed_mode=\"dropdown\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" color=\"var(--awb-color1)\" direction=\"column\" dropdown_carets=\"yes\" expand_direction=\"right\" expand_method=\"hover\" submenu_mode=\"dropdown\" submenu_flyout_direction=\"fade\" expand_transition=\"opacity\" font_size=\"var(--awb-typography3-font-size)\" fusion_font_family_mobile_typography=\"var(--awb-typography3-font-family)\" fusion_font_family_submenu_typography=\"var(--awb-typography3-font-family)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_mobile_typography=\"var(--awb-typography3)\" fusion_font_variant_submenu_typography=\"var(--awb-typography3)\" fusion_font_variant_typography=\"var(--awb-typography3)\" gap=\"30px\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icons_color=\"var(--awb-color8)\" icons_hover_color=\"var(--awb-color5)\" icons_position=\"left\" icons_size=\"16\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" items_padding_right=\"6px\" items_padding_top=\"0px\" justify_content=\"flex-end\" justify_title=\"center\" margin_bottom=\"0px\" margin_top=\"0px\" menu=\"dance-main-menu\" min_height=\"100px\" mobile_active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_active_color=\"var(--awb-color5)\" mobile_sep_color=\"var(--awb-color2)\" mobile_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_color=\"var(--awb-color8)\" mobile_font_size=\"var(--awb-typography3-font-size)\" mobile_trigger_font_size=\"25px\" mobile_indent_submenu=\"on\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_items_height=\"56\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" sticky_display=\"normal,sticky\" submenu_active_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" submenu_active_color=\"var(--awb-color1)\" submenu_bg=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" submenu_border_radius_bottom_left=\"6px\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_color=\"var(--awb-color8)\" submenu_font_size=\"var(--awb-typography3-font-size)\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_items_padding_right=\"20px\" submenu_items_padding_top=\"12px\" submenu_space=\"0px\" submenu_text_transform=\"var(--awb-typography3-text-transform)\" text_transform=\"var(--awb-typography3-text-transform)\" thumbnail_size_height=\"14px\" thumbnail_size_width=\"26px\" transition_time=\"300\" transition_type=\"center-vertical\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" trigger_padding_right=\"20px\" trigger_padding_top=\"12px\" mobile_justify_content=\"left\" main_justify_content=\"center\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" submenu_line_height=\"var(--awb-typography3-line-height)\" submenu_letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_line_height=\"var(--awb-typography3-line-height)\" mobile_letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_text_transform=\"var(--awb-typography3-text-transform)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container align_content=\"flex-start\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_column_spacing=\"4%\" flex_justify_content=\"flex-start\" min_height=\"100vh\" container_tag=\"div\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" background_parallax=\"none\" parallax_speed=\"0.3\" background_blend_mode=\"none\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"60px\" padding_right=\"60px\" padding_bottom=\"0px\" padding_left=\"60px\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" layout=\"1_1\" background_type=\"single\" filter_type=\"regular\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe align=\"none\" align_medium=\"none\" align_small=\"none\" margin_bottom=\"25px\" animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" blur=\"3\" borderradius=\"0px\" bordersize=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" hover_type=\"none\" image_id=\"233|full\" lightbox=\"no\" linktarget=\"_self\" style_type=\"none\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" caption_style=\"off\" caption_title_tag=\"2\" caption_align=\"none\" caption_align_medium=\"none\" caption_align_small=\"none\" custom_aspect_ratio=\"76\" aspect_ratio_position=\"37% 9%\" aspect_ratio=\"custom\"]https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg[/fusion_imageframe][fusion_text animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" columns=\"1\" column_min_width=\"100px\" column_spacing=\"2em\" font_size=\"var(--awb-typography5-font-size)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_text_font=\"var(--awb-typography5)\" text_color=\"var(--awb-color1)\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" rule_size=\"1\" rule_style=\"default\" content_alignment=\"center\" margin_bottom=\"40px\" margin_left=\"15px\" margin_right=\"15px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Mauris blandit aliquet elit, eget tincidunt nibh pulvinar.[/fusion_text][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\" link=\"https://dr.frex.digital/contact/\"]Contact us[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Sliding Panel","","publish","closed","closed","","sliding-panel","","","2024-02-01 15:34:34","2024-02-01 15:34:34","","0","https://dr.frex.digital/?awb_off_canvas=sliding-panel","0","awb_off_canvas","","0"),
("251","7496","2023-07-11 12:57:21","2023-07-11 12:57:21","","Product","","publish","closed","closed","","product","","","2023-07-11 12:57:21","2023-07-11 12:57:21","","0","https://dr.frex.digital/2023/07/11/product/","0","nav_menu_item","","0"),
("252","7496","2023-07-11 12:57:21","2023-07-11 12:57:21","","Solutions","","publish","closed","closed","","solutions","","","2023-07-11 12:57:21","2023-07-11 12:57:21","","0","https://dr.frex.digital/2023/07/11/solutions/","2","nav_menu_item","","0"),
("253","7496","2023-07-11 12:57:21","2023-07-11 12:57:21","","Features","","publish","closed","closed","","features","","","2023-07-11 12:57:21","2023-07-11 12:57:21","","0","https://dr.frex.digital/2023/07/11/features/","3","nav_menu_item","","0"),
("254","7496","2023-07-11 12:57:21","2023-07-11 12:57:21","","Company","","publish","closed","closed","","company-2","","","2023-07-11 12:57:21","2023-07-11 12:57:21","","0","https://dr.frex.digital/2023/07/11/company-2/","4","nav_menu_item","","0"),
("255","7496","2023-07-11 12:57:21","2023-07-11 12:57:21","","Resources","","publish","closed","closed","","resources","","","2023-07-11 12:57:21","2023-07-11 12:57:21","","0","https://dr.frex.digital/2023/07/11/resources/","5","nav_menu_item","","0"),
("267","7496","2023-07-10 14:25:13","2023-07-10 14:25:13","[fusion_builder_column type=\"1_1\" type=\"1_1\" element_content=\"\" last=\"no\" hover_type=\"none\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" fusion_font_variant_title_font=\"var(--awb-typography4)\" fusion_font_family_title_font=\"var(--awb-typography4-font-family)\" font_size=\"var(--awb-typography4-font-size)\" line_height=\"var(--awb-typography4-line-height)\" letter_spacing=\"var(--awb-typography4-letter-spacing)\" text_transform=\"var(--awb-typography4-text-transform)\" text_color=\"var(--awb-color1)\" link_color=\"var(--awb-color1)\" link_hover_color=\"var(--awb-color1)\"]Your Content Goes Here[/fusion_title][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" 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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJuZXh0X2NsYXNzX2RhdGUifX0=\" text_color=\"var(--awb-color1)\"]\n<p>Date</p>\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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJuZXh0X2NsYXNzX3RpbWVfc3RhcnQiLCJhZnRlciI6IiJ9fQ==\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]Time[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" margin_top_small=\"21px\" type_small=\"1_2\" min_height=\"\" link=\"\"][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\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment_small=\"right\" alignment=\"right\"]View class[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 1","","publish","closed","closed","","class-1","","","2023-07-12 15:07:07","2023-07-12 15:07:07","","0","https://dr.frex.digital/fusion_element/class-1/","0","fusion_element","","0"),
("283","7496","2023-07-11 15:08:59","2023-07-11 15:08:59","a:34:{s:9:\"post_type\";s:5:\"class\";s:22:\"advanced_configuration\";b:1;s:13:\"import_source\";s:0:\"\";s:11:\"import_date\";s:0:\"\";s:6:\"labels\";a:33:{s:4:\"name\";s:7:\"Classes\";s:13:\"singular_name\";s:5:\"Class\";s:9:\"menu_name\";s:7:\"Classes\";s:9:\"all_items\";s:11:\"All Classes\";s:9:\"edit_item\";s:10:\"Edit Class\";s:9:\"view_item\";s:10:\"View Class\";s:10:\"view_items\";s:12:\"View Classes\";s:12:\"add_new_item\";s:13:\"Add New Class\";s:7:\"add_new\";s:0:\"\";s:8:\"new_item\";s:9:\"New Class\";s:17:\"parent_item_colon\";s:13:\"Parent Class:\";s:12:\"search_items\";s:14:\"Search Classes\";s:9:\"not_found\";s:16:\"No classes found\";s:18:\"not_found_in_trash\";s:25:\"No classes found in Trash\";s:8:\"archives\";s:14:\"Class Archives\";s:10:\"attributes\";s:16:\"Class Attributes\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:16:\"insert_into_item\";s:17:\"Insert into class\";s:21:\"uploaded_to_this_item\";s:22:\"Uploaded to this class\";s:17:\"filter_items_list\";s:19:\"Filter classes list\";s:14:\"filter_by_date\";s:22:\"Filter classes by date\";s:21:\"items_list_navigation\";s:23:\"Classes list navigation\";s:10:\"items_list\";s:12:\"Classes list\";s:14:\"item_published\";s:16:\"Class published.\";s:24:\"item_published_privately\";s:26:\"Class published privately.\";s:22:\"item_reverted_to_draft\";s:24:\"Class reverted to draft.\";s:14:\"item_scheduled\";s:16:\"Class scheduled.\";s:12:\"item_updated\";s:14:\"Class updated.\";s:9:\"item_link\";s:10:\"Class Link\";s:21:\"item_link_description\";s:18:\"A link to a class.\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"admin_menu_parent\";s:0:\"\";s:17:\"show_in_admin_bar\";b:1;s:17:\"show_in_nav_menus\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:0:\"\";s:14:\"rest_namespace\";s:5:\"wp/v2\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Posts_Controller\";s:13:\"menu_position\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:19:\"rename_capabilities\";b:0;s:24:\"singular_capability_name\";s:4:\"post\";s:22:\"plural_capability_name\";s:5:\"posts\";s:8:\"supports\";a:4:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:7:\"excerpt\";i:3;s:9:\"thumbnail\";}s:10:\"taxonomies\";s:0:\"\";s:11:\"has_archive\";b:0;s:16:\"has_archive_slug\";s:0:\"\";s:7:\"rewrite\";a:4:{s:17:\"permalink_rewrite\";s:13:\"post_type_key\";s:10:\"with_front\";s:1:\"1\";s:5:\"feeds\";s:1:\"0\";s:5:\"pages\";s:1:\"1\";}s:9:\"query_var\";s:13:\"post_type_key\";s:14:\"query_var_name\";s:0:\"\";s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:20:\"register_meta_box_cb\";s:0:\"\";}","Classes","classes","publish","closed","closed","","post_type_64ad706c1360c","","","2023-07-11 15:08:59","2023-07-11 15:08:59","","0","https://dr.frex.digital/?post_type=acf-post-type&#038;p=283","0","acf-post-type","","0"),
("284","7496","2023-07-11 15:13:30","2023-07-11 15:13:30","a:34:{s:9:\"post_type\";s:10:\"instructor\";s:22:\"advanced_configuration\";b:1;s:13:\"import_source\";s:0:\"\";s:11:\"import_date\";s:0:\"\";s:6:\"labels\";a:33:{s:4:\"name\";s:11:\"Instructors\";s:13:\"singular_name\";s:10:\"Instructor\";s:9:\"menu_name\";s:11:\"Instructors\";s:9:\"all_items\";s:15:\"All Instructors\";s:9:\"edit_item\";s:15:\"Edit Instructor\";s:9:\"view_item\";s:15:\"View Instructor\";s:10:\"view_items\";s:16:\"View Instructors\";s:12:\"add_new_item\";s:18:\"Add New Instructor\";s:7:\"add_new\";s:0:\"\";s:8:\"new_item\";s:14:\"New Instructor\";s:17:\"parent_item_colon\";s:18:\"Parent Instructor:\";s:12:\"search_items\";s:18:\"Search Instructors\";s:9:\"not_found\";s:20:\"No instructors found\";s:18:\"not_found_in_trash\";s:29:\"No instructors found in Trash\";s:8:\"archives\";s:19:\"Instructor Archives\";s:10:\"attributes\";s:21:\"Instructor Attributes\";s:14:\"featured_image\";s:0:\"\";s:18:\"set_featured_image\";s:0:\"\";s:21:\"remove_featured_image\";s:0:\"\";s:18:\"use_featured_image\";s:0:\"\";s:16:\"insert_into_item\";s:22:\"Insert into instructor\";s:21:\"uploaded_to_this_item\";s:27:\"Uploaded to this instructor\";s:17:\"filter_items_list\";s:23:\"Filter instructors list\";s:14:\"filter_by_date\";s:26:\"Filter instructors by date\";s:21:\"items_list_navigation\";s:27:\"Instructors list navigation\";s:10:\"items_list\";s:16:\"Instructors list\";s:14:\"item_published\";s:21:\"Instructor published.\";s:24:\"item_published_privately\";s:31:\"Instructor published privately.\";s:22:\"item_reverted_to_draft\";s:29:\"Instructor reverted to draft.\";s:14:\"item_scheduled\";s:21:\"Instructor scheduled.\";s:12:\"item_updated\";s:19:\"Instructor updated.\";s:9:\"item_link\";s:15:\"Instructor Link\";s:21:\"item_link_description\";s:23:\"A link to a instructor.\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"admin_menu_parent\";s:0:\"\";s:17:\"show_in_admin_bar\";b:1;s:17:\"show_in_nav_menus\";b:1;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:0:\"\";s:14:\"rest_namespace\";s:5:\"wp/v2\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Posts_Controller\";s:13:\"menu_position\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:19:\"rename_capabilities\";b:0;s:24:\"singular_capability_name\";s:4:\"post\";s:22:\"plural_capability_name\";s:5:\"posts\";s:8:\"supports\";a:4:{i:0;s:5:\"title\";i:1;s:6:\"editor\";i:2;s:7:\"excerpt\";i:3;s:9:\"thumbnail\";}s:10:\"taxonomies\";s:0:\"\";s:11:\"has_archive\";b:0;s:16:\"has_archive_slug\";s:0:\"\";s:7:\"rewrite\";a:4:{s:17:\"permalink_rewrite\";s:13:\"post_type_key\";s:10:\"with_front\";s:1:\"1\";s:5:\"feeds\";s:1:\"0\";s:5:\"pages\";s:1:\"1\";}s:9:\"query_var\";s:13:\"post_type_key\";s:14:\"query_var_name\";s:0:\"\";s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:20:\"register_meta_box_cb\";s:0:\"\";}","Instructors","instructors","publish","closed","closed","","post_type_64ad71844bc17","","","2023-07-11 15:13:30","2023-07-11 15:13:30","","0","https://dr.frex.digital/?post_type=acf-post-type&#038;p=284","0","acf-post-type","","0"),
("286","7496","2023-07-11 15:19:03","2023-07-11 15:19: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]A Graceful and Elegant Art Form[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]Ballet is one of the most popular and classical forms of dance, with a rich history and tradition that spans centuries and continents. Ballet combines technique, expression, and musicality to create beautiful and captivating performances. Whether you are a beginner or an advanced dancer, ballet can offer you many benefits, such as improving your posture, flexibility, coordination, and confidence.</p>\r\n<p>At our dance studio, we offer ballet classes for all levels and ages, from children to adults. Our experienced and qualified instructors will guide you through the fundamentals of ballet, such as alignment, turnout, positions, and movements. You will also learn the vocabulary and etiquette of ballet, as well as the history and culture of this art form. Our classes are designed to be fun, challenging, and rewarding, with a focus on developing your individual skills and style.</p>\r\n<p>If you are interested in joining our ballet classes, please contact us today to schedule a free trial lesson. You will need to wear comfortable clothing that allows you to move freely, such as a leotard and tights or leggings. You will also need to wear ballet shoes, which you can purchase or rent from our studio. We look forward to welcoming you to our ballet community and sharing our passion for dance with you.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" image_id=\"385|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/blog-2-scaled.jpg\" image_id=\"198|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Ballet","A graceful and elegant art form","publish","closed","closed","","ballet","","","2023-07-14 15:12:54","2023-07-14 15:12:54","","0","https://dr.frex.digital/?post_type=class&#038;p=286","0","class","","0"),
("287","7496","2023-07-11 15:37:53","2023-07-11 15:37:53","a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:5:\"class\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}","Classes Details","classes-details","publish","closed","closed","","group_64ad7743e1ac8","","","2023-07-14 13:07:51","2023-07-14 13:07:51","","0","https://dr.frex.digital/?post_type=acf-field-group&#038;p=287","0","acf-field-group","","0"),
("288","7496","2023-07-11 15:37:53","2023-07-11 15:37:53","a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:12:\"button_group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:3:{s:8:\"Beginner\";s:8:\"Beginner\";s:12:\"Intermediate\";s:12:\"Intermediate\";s:8:\"Advanced\";s:8:\"Advanced\";}s:13:\"default_value\";s:0:\"\";s:13:\"return_format\";s:5:\"value\";s:10:\"allow_null\";i:0;s:6:\"layout\";s:10:\"horizontal\";}","Difficulty","difficulty","publish","closed","closed","","field_64ad774377f6d","","","2023-07-11 15:40:49","2023-07-11 15:40:49","","287","https://dr.frex.digital/?post_type=acf-field&#038;p=288","0","acf-field","","0"),
("289","7496","2023-07-11 15:50:37","2023-07-11 15:50:37","[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=\"290px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"20\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"60\" gradient_end_position=\"80\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"2\" box_shadow_horizontal=\"2\" box_shadow_color=\"rgba(0,0,0,0.53)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" gradient_end_color=\"#000000\" gradient_start_color=\"rgba(0,0,0,0)\" padding_top_small=\"190px\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"-60px\" padding_top=\"40\" hover_type=\"none\" border_style=\"solid\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color1)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"parent\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" 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\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_bottom_small=\"5px\" margin_top_small=\"0\"]\n<p>Class name</p>\n[/fusion_title][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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][fusion_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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\" margin_top_small=\"-3px\" margin_bottom_small=\"15px\"]\n<p>In ultricies tristique vestibulum.</p>\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" 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\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color3)\" button_gradient_bottom_color_hover=\"var(--awb-color3)\" accent_hover_color=\"var(--awb-color7)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","publish","closed","closed","","class-2","","","2026-06-19 14:54:46","2026-06-19 14:54:46","","0","https://dr.frex.digital/fusion_element/class-2/","0","fusion_element","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("297","7496","2023-07-11 16:10:15","2023-07-11 16:10: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]\r\n<p>A Dynamic and Expressive Dance Style</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=\"50px\"]Hip hop is a modern and diverse dance style that originated from the street culture of the 1970s and 1980s. Hip hop encompasses various elements, such as breaking, popping, locking, and freestyle, that showcase the dancer\'s creativity, rhythm, and attitude. Hip hop is not only a dance, but also a lifestyle, a music genre, and a form of social commentary.</p>\r\n<p>At our dance studio, we offer hip hop classes for all levels and ages, from children to adults. Our energetic and talented instructors will teach you the basics of hip hop, such as groove, isolation, footwork, and choreography. You will also learn the history and evolution of hip hop, as well as the different styles and influences that shape this dance. Our classes are designed to be fun, engaging, and empowering, with a focus on developing your individual expression and confidence.</p>\r\n<p>If you are interested in joining our hip hop classes, please contact us today to schedule a free trial lesson. You will need to wear comfortable clothing that allows you to move freely, such as a t-shirt and pants or shorts. You will also need to wear sneakers or trainers that have good grip and support. We look forward to welcoming you to our hip hop community and sharing our love for dance with you.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Hip Hop","A dynamic and expressive dance style","publish","closed","closed","","hip-hop","","","2023-07-14 15:13:06","2023-07-14 15:13:06","","0","https://dr.frex.digital/?post_type=class&#038;p=297","0","class","","0"),
("298","7496","2023-07-10 16:10:38","2023-07-10 16:10: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" before_text=\"\" rotation_text=\"\" highlight_text=\"\" after_text=\"\" title_link=\"off\" link_url=\"\" link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" content_align_medium=\"\" content_align_small=\"\" content_align=\"left\" size=\"3\" animated_font_size=\"\" fusion_font_family_title_font=\"\" fusion_font_variant_title_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" text_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" animated_text_color=\"\" text_shadow=\"no\" text_shadow_vertical=\"\" text_shadow_horizontal=\"\" text_shadow_blur=\"0\" text_shadow_color=\"\" text_stroke=\"no\" text_stroke_size=\"1\" text_stroke_color=\"\" text_overflow=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"30px\" margin_left=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" 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\" highlight_color=\"\" style_type=\"default\" sep_color=\"\" link_color=\"\" link_hover_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" animation_offset=\"\"]\r\n\r\nExpress Yourself Through Movement\r\n\r\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"50px\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" animation_offset=\"\" logics=\"\"]\r\n\r\nContemporary dance is a style of dance that emerged in the 20th century as a reaction to the rigid forms of classical ballet. It draws on elements from various genres, such as modern, jazz, lyrical, and ethnic dance, and allows dancers to explore their own creativity and emotions through movement.\r\n\r\nIn our contemporary dance classes, you will learn the basic techniques of this style, such as alignment, balance, coordination, flexibility, and strength. You will also develop your musicality, expression, and improvisation skills. Our classes are suitable for all levels, from beginners to advanced dancers, and are taught by experienced and passionate instructors.\r\n\r\nWhether you want to pursue contemporary dance as a hobby or a career, you will find a supportive and inspiring environment at our studio. You will have the opportunity to perform in showcases and competitions, as well as collaborate with other dancers and artists. You will also benefit from our state-of-the-art facilities, including spacious studios, mirrors, sound systems, and changing rooms.\r\n\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" image_id=\"385|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/blog-2-scaled.jpg\" image_id=\"198|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Contemporary","Express yourself through movement","publish","closed","closed","","contemporary","","","2023-07-14 16:17:24","2023-07-14 16:17:24","","0","https://dr.frex.digital/?post_type=class&#038;p=298","0","class","","0"),
("313","7496","2023-07-11 16:43:44","2023-07-11 16:43:44","[fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" 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\" margin_bottom=\"0px\" padding_top_small=\"190\" padding_top=\"200px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_end_color=\"rgba(0,0,0,0.54)\" gradient_start_position=\"46\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" 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_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfaW1hZ2UiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJiYWNrZ3JvdW5kX2ltYWdlIjoiIiwidHlwZSI6Im1haW4iLCJmYWxsYmFjayI6IiJ9fQ==\" last=\"no\" border_position=\"all\" gradient_start_color=\"rgba(0,0,0,0)\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"25px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"25px\" first=\"true\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\" margin_top_small=\"0\" margin_bottom_small=\"0\"]\n<p>Instructor name</p>\n[/fusion_title][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","publish","closed","closed","","instructor-1","","","2026-06-19 14:58:22","2026-06-19 14:58:22","","0","https://dr.frex.digital/fusion_element/instructor-1/","0","fusion_element","","0"),
("316","7496","2023-07-11 16:44:24","2023-07-11 16:44:24","a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:10:\"instructor\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}","Instructor Details","instructor-details","publish","closed","closed","","group_64ad86d9bb0c2","","","2023-07-14 14:12:49","2023-07-14 14:12:49","","0","https://dr.frex.digital/?post_type=acf-field-group&#038;p=316","0","acf-field-group","","0"),
("317","7496","2023-07-11 16:44:24","2023-07-11 16:44:24","a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:12:\"relationship\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:5:\"class\";}s:11:\"post_status\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:7:\"filters\";a:1:{i:0;s:6:\"search\";}s:13:\"return_format\";s:6:\"object\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:8:\"elements\";s:0:\"\";}","Classes","classes_teaching","publish","closed","closed","","field_64ad86d9ad160","","","2023-07-11 16:58:49","2023-07-11 16:58:49","","316","https://dr.frex.digital/?post_type=acf-field&#038;p=317","0","acf-field","","0"),
("318","7496","2023-07-11 16:44:50","2023-07-11 16:44: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]A Dynamic Instructor[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"70px\"]\r\n<p>Maecenas egestas arcu quis ligula mattis placerat. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Sed hendrerit. Donec vitae sapien ut libero venenatis faucibus. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula.</p>\r\n<p>Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. In dui magna, posuere eget, vestibulum et, tempor auctor, justo. Pellentesque commodo eros a enim. Nulla consequat massa quis enim. Fusce pharetra convallis urna.</p>\r\n<p>Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus nec sem in justo pellentesque facilisis. Phasellus accumsan cursus velit. Ut a nisl id ante tempus hendrerit. Phasellus nec sem in justo pellentesque facilisis.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Jayden Lee","","publish","closed","closed","","jayden-lee","","","2023-07-18 13:14:34","2023-07-18 13:14:34","","0","https://dr.frex.digital/?post_type=instructor&#038;p=318","0","instructor","","0"),
("328","7496","2023-07-11 17:06:25","2023-07-11 17:06:25","a:8:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}","Social Links","social_links","publish","closed","closed","","field_64ad8b65c5dd6","","","2023-07-11 17:06:25","2023-07-11 17:06:25","","316","https://dr.frex.digital/?post_type=acf-field&p=328","1","acf-field","","0"),
("329","7496","2023-07-11 17:06:25","2023-07-11 17:06:25","a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Twitter","twitter","publish","closed","closed","","field_64ad8bf8c5dd7","","","2023-07-11 17:06:25","2023-07-11 17:06:25","","328","https://dr.frex.digital/?post_type=acf-field&p=329","0","acf-field","","0"),
("330","7496","2023-07-11 17:06:25","2023-07-11 17:06:25","a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Instagram","instagram","publish","closed","closed","","field_64ad8c04c5dd8","","","2023-07-11 17:06:25","2023-07-11 17:06:25","","328","https://dr.frex.digital/?post_type=acf-field&p=330","1","acf-field","","0"),
("331","7496","2023-07-11 17:07:21","2023-07-11 17:07:21","a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Youtube","youtube","publish","closed","closed","","field_64ad8c42b15e7","","","2023-07-11 17:07:21","2023-07-11 17:07:21","","328","https://dr.frex.digital/?post_type=acf-field&p=331","2","acf-field","","0"),
("336","7496","2023-07-11 17:17:02","2023-07-11 17:17:02","a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Facebook","facebook","publish","closed","closed","","field_64ad8e86dc1fa","","","2023-07-11 17:17:02","2023-07-11 17:17:02","","328","https://dr.frex.digital/?post_type=acf-field&p=336","3","acf-field","","0"),
("339","7496","2023-07-11 17:19:27","2023-07-11 17:19: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]A Dynamic Instructor[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"70px\"]\r\n\r\nMaecenas egestas arcu quis ligula mattis placerat. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Sed hendrerit. Donec vitae sapien ut libero venenatis faucibus. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula.\r\n\r\nCurabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. In dui magna, posuere eget, vestibulum et, tempor auctor, justo. Pellentesque commodo eros a enim. Nulla consequat massa quis enim. Fusce pharetra convallis urna.\r\n\r\nAliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus nec sem in justo pellentesque facilisis. Phasellus accumsan cursus velit. Ut a nisl id ante tempus hendrerit. Phasellus nec sem in justo pellentesque facilisis.\r\n\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Lila Smith","","publish","closed","closed","","lila-smith","","","2023-07-18 13:46:07","2023-07-18 13:46:07","","0","https://dr.frex.digital/?post_type=instructor&#038;p=339","0","instructor","","0"),
("340","7496","2023-07-11 17:19:51","2023-07-11 17:19: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]A Dynamic Instructor[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"70px\"]\r\n\r\nMaecenas egestas arcu quis ligula mattis placerat. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Sed hendrerit. Donec vitae sapien ut libero venenatis faucibus. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula.\r\n\r\nCurabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. In dui magna, posuere eget, vestibulum et, tempor auctor, justo. Pellentesque commodo eros a enim. Nulla consequat massa quis enim. Fusce pharetra convallis urna.\r\n\r\nAliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus nec sem in justo pellentesque facilisis. Phasellus accumsan cursus velit. Ut a nisl id ante tempus hendrerit. Phasellus nec sem in justo pellentesque facilisis.\r\n\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Zarah Jones","","publish","closed","closed","","zarah-jones","","","2023-07-18 13:46:04","2023-07-18 13:46:04","","0","https://dr.frex.digital/?post_type=instructor&#038;p=340","0","instructor","","0"),
("347","7496","2023-07-10 17:29:48","2023-07-10 17:29: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]A Dynamic Instructor[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"70px\"]\r\n\r\nMaecenas egestas arcu quis ligula mattis placerat. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Sed hendrerit. Donec vitae sapien ut libero venenatis faucibus. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula.\r\n\r\nCurabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. In dui magna, posuere eget, vestibulum et, tempor auctor, justo. Pellentesque commodo eros a enim. Nulla consequat massa quis enim. Fusce pharetra convallis urna.\r\n\r\nAliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus nec sem in justo pellentesque facilisis. Phasellus accumsan cursus velit. Ut a nisl id ante tempus hendrerit. Phasellus nec sem in justo pellentesque facilisis.\r\n\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Julie Moore","","publish","closed","closed","","julie-moore","","","2023-07-18 13:46:14","2023-07-18 13:46:14","","0","https://dr.frex.digital/?post_type=instructor&#038;p=347","0","instructor","","0"),
("348","7496","2023-07-09 17:30:33","2023-07-09 17:30: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" before_text=\"\" rotation_text=\"\" highlight_text=\"\" after_text=\"\" title_link=\"off\" link_url=\"\" link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" content_align_medium=\"\" content_align_small=\"\" content_align=\"left\" size=\"3\" animated_font_size=\"\" fusion_font_family_title_font=\"\" fusion_font_variant_title_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" text_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" animated_text_color=\"\" text_shadow=\"no\" text_shadow_vertical=\"\" text_shadow_horizontal=\"\" text_shadow_blur=\"0\" text_shadow_color=\"\" text_stroke=\"no\" text_stroke_size=\"1\" text_stroke_color=\"\" text_overflow=\"none\" margin_top_medium=\"\" margin_right_medium=\"\" margin_bottom_medium=\"\" margin_left_medium=\"\" margin_top_small=\"\" margin_right_small=\"\" margin_bottom_small=\"\" margin_left_small=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"30px\" margin_left=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" 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\" highlight_color=\"\" style_type=\"default\" sep_color=\"\" link_color=\"\" link_hover_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" animation_offset=\"\"]\r\n\r\nGroove to the Beat\r\n\r\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"\" rule_size=\"\" rule_color=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" content_alignment_medium=\"\" content_alignment_small=\"\" content_alignment=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" margin_top=\"\" margin_right=\"\" margin_bottom=\"50px\" margin_left=\"\" fusion_font_family_text_font=\"\" fusion_font_variant_text_font=\"\" font_size=\"\" line_height=\"\" letter_spacing=\"\" text_transform=\"\" text_color=\"\" animation_type=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" animation_offset=\"\" logics=\"\"]\r\n\r\nJazz dance is a style of dance that originated in the African-American communities in the early 20th century. It is influenced by various musical genres, such as blues, swing, soul, and funk, and features energetic and dynamic movements, such as kicks, leaps, turns, and isolations.\r\n\r\nIn our jazz dance classes, you will learn the fundamental steps and rhythms of this style, such as jazz squares, triplets, syncopation, and accents. You will also improve your posture, coordination, agility, and endurance. Our classes are suitable for all levels, from beginners to advanced dancers, and are taught by qualified and enthusiastic instructors.\r\n\r\nWhether you want to have fun or challenge yourself, you will find a lively and fun atmosphere at our studio. You will have the chance to perform in showcases and competitions, as well as learn from guest teachers and choreographers. You will also enjoy our modern facilities, including hardwood floors, mirrors, sound systems, and changing rooms.\r\n\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" image_id=\"385|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/blog-2-scaled.jpg\" image_id=\"198|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Jazz","Groove to the beat","publish","closed","closed","","jazz","","","2023-07-14 16:19:52","2023-07-14 16:19:52","","0","https://dr.frex.digital/?post_type=class&#038;p=348","0","class","","0"),
("364","7496","2023-07-11 18:20:00","2023-07-11 18:20:00","a:9:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"date_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:14:\"display_format\";s:6:\"F j, Y\";s:13:\"return_format\";s:6:\"F j, Y\";s:9:\"first_day\";i:1;}","Next Class Date","next_class_date","publish","closed","closed","","field_64ad9d1e0bf9b","","","2023-07-11 18:31:13","2023-07-11 18:31:13","","287","https://dr.frex.digital/?post_type=acf-field&#038;p=364","1","acf-field","","0"),
("365","7496","2023-07-11 18:31:13","2023-07-11 18:31:13","a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Next Class Time Start","next_class_time_start","publish","closed","closed","","field_64ad9fdcd664b","","","2023-07-11 18:37:49","2023-07-11 18:37:49","","287","https://dr.frex.digital/?post_type=acf-field&#038;p=365","2","acf-field","","0"),
("385","7496","2023-07-12 13:11:11","2023-07-12 13:11:11","Source : https://www.pexels.com/photo/ballerina-girl-performing-ballet-jump-in-studio-5149607/","info-2","","inherit","open","closed","","info-2","","","2023-07-12 13:13:06","2023-07-12 13:13:06","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg","0","attachment","image/jpeg","0"),
("397","7496","2023-07-12 13:39:14","2023-07-12 13:39:14","Source : https://www.pexels.com/photo/ballet-dancer-in-dancing-pose-11483436/","banner-3","","inherit","open","closed","","banner-3","","","2023-07-12 14:01:46","2023-07-12 14:01:46","","0","https://dr.frex.digital/wp-content/uploads/2023/07/banner-3.jpg","0","attachment","image/jpeg","0"),
("401","7496","2023-07-12 13:59:57","2023-07-12 13:59:57","Source : https://www.pexels.com/photo/man-and-woman-ballet-dancing-8463032/","info-3","","inherit","open","closed","","info-3","","","2023-07-12 14:01:05","2023-07-12 14:01:05","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg","0","attachment","image/jpeg","0"),
("405","7496","2023-07-12 14:30:11","2023-07-12 14:30:11","Source : https://www.pexels.com/video/women-dancing-for-a-dance-video-7975419/","pexels-cottonbro-7975419 (540p)","","inherit","open","closed","","pexels-cottonbro-7975419-540p","","","2023-07-12 14:30:17","2023-07-12 14:30:17","","0","https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4","0","attachment","video/mp4","0"),
("440","7496","2023-07-12 16:10:54","2023-07-12 16:10:54","Source : https://www.pexels.com/photo/gracious-asian-ballerinas-bending-to-side-near-barre-5154382/","info-4","","inherit","open","closed","","info-4","","","2023-07-12 16:11:37","2023-07-12 16:11:37","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-4.jpg","0","attachment","image/jpeg","0"),
("443","7496","2023-07-12 16:21:30","2023-07-12 16:21:30","Source :https://www.pexels.com/photo/active-adult-artist-ballerina-358010/","info-5","","inherit","open","closed","","info-5","","","2023-07-12 16:21:53","2023-07-12 16:21:53","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-5.jpg","0","attachment","image/jpeg","0"),
("446","7496","2023-07-12 16:23:46","2023-07-12 16:23:46","Source : Our instructors have trained and performed in various styles and genres.","info-6","","inherit","open","closed","","info-6","","","2023-07-12 16:24:18","2023-07-12 16:24:18","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-6.jpg","0","attachment","image/jpeg","0"),
("454","7496","2023-07-12 16:41:42","2023-07-12 16:41:42","Source : https://www.pexels.com/photo/woman-in-pink-dress-jumping-3949689/","info-8","","inherit","open","closed","","info-8","","","2023-07-12 16:41:47","2023-07-12 16:41:47","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-8.jpg","0","attachment","image/jpeg","0"),
("460","7496","2023-07-12 17:08:27","2023-07-12 17:08:27","Source : https://www.pexels.com/photo/people-woman-jump-show-46158/","info-9","","inherit","open","closed","","info-9","","","2023-07-12 17:11:21","2023-07-12 17:11:21","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-9.jpg","0","attachment","image/jpeg","0"),
("479","7496","2023-07-12 18:50:43","2023-07-12 18:50:43","Source : Source : https://www.pexels.com/photo/a-woman-dancing-in-the-room-7805001/","banner-4","","inherit","open","closed","","banner-4","","","2023-07-19 18:22:37","2023-07-19 18:22:37","","0","https://dr.frex.digital/wp-content/uploads/2023/07/banner-4.jpg","0","attachment","image/jpeg","0"),
("486","7496","2023-07-12 19:31:06","2023-07-12 19:31:06","Source : https://www.vecteezy.com/vector-art/23264083-fake-hand-drawn-autographs-set-handwritten-signature-scribble-for-business-certificate-or-letter-vector-isolated-illustration","signature-2","","inherit","open","closed","","signature-2","","","2023-07-19 18:25:04","2023-07-19 18:25:04","","0","https://dr.frex.digital/wp-content/uploads/2023/07/signature-2.png","0","attachment","image/png","0"),
("488","7496","2023-07-12 19:33:11","2023-07-12 19:33:11","Source : https://www.pexels.com/photo/ballerina-dancing-inside-a-abandoned-building-3949699/","banner-5","","inherit","open","closed","","banner-5","","","2023-07-12 19:33:56","2023-07-12 19:33:56","","0","https://dr.frex.digital/wp-content/uploads/2023/07/banner-5.jpg","0","attachment","image/jpeg","0"),
("490","7496","2023-07-12 19:38:19","2023-07-12 19:38:19","Source : https://www.vecteezy.com/vector-art/23264083-fake-hand-drawn-autographs-set-handwritten-signature-scribble-for-business-certificate-or-letter-vector-isolated-illustration","signature-3","","inherit","open","closed","","signature-3","","","2023-07-19 18:26:02","2023-07-19 18:26:02","","0","https://dr.frex.digital/wp-content/uploads/2023/07/signature-3.png","0","attachment","image/png","0"),
("493","7496","2023-07-12 19:48:04","2023-07-12 19:48:04","Source : Source : https://www.pexels.com/photo/energetic-asian-man-dancing-street-dance-on-sidewalk-5368937/","banner-6","","inherit","open","closed","","banner-6","","","2023-07-12 19:48:17","2023-07-12 19:48:17","","0","https://dr.frex.digital/wp-content/uploads/2023/07/banner-6.jpg","0","attachment","image/jpeg","0"),
("495","7496","2023-07-12 19:53:40","2023-07-12 19:53:40","Source : https://www.vecteezy.com/vector-art/23264083-fake-hand-drawn-autographs-set-handwritten-signature-scribble-for-business-certificate-or-letter-vector-isolated-illustration","signature-4","","inherit","open","closed","","signature-4","","","2023-07-19 18:26:15","2023-07-19 18:26:15","","0","https://dr.frex.digital/wp-content/uploads/2023/07/signature-4.png","0","attachment","image/png","0"),
("505","7496","2023-07-13 14:20:13","2023-07-13 14:20:13","[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.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"e30=\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"47\" aspect_ratio_position=\"50% 10%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9LCJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\" /][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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" border_sizes_top=\"0\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" margin_bottom=\"0px\" padding_right=\"40px\" padding_bottom=\"40px\" padding_left=\"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=\"center\" size=\"4\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImFmdGVyIjoiIn0sImxpbmtfdXJsIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9LCJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJkaWZmaWN1bHR5In19\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]View this class[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 3","","publish","closed","closed","","class-2-2","","","2023-07-17 17:35:12","2023-07-17 17:35:12","","0","https://dr.frex.digital/fusion_element/class-2-cloned/","0","fusion_element","","0"),
("513","7496","2023-07-13 14:36:09","2023-07-13 14:36:09","[fusion_builder_column type=\"1_1\" type=\"1_1\" 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=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" padding_top=\"160px\" padding_bottom=\"160px\" padding_left=\"75px\" padding_right=\"75px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" padding_top_small=\"120px\" padding_bottom_small=\"120px\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"15px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImFmdGVyIjoiIENsYXNzIn19\"]Title[/fusion_title][fusion_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-color1)\" margin_bottom=\"40px\" margin_top=\"10px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\"]<p>Excerpt</p>[/fusion_text][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]View this class[/fusion_button][/fusion_builder_column]","Class 4","","publish","closed","closed","","class-4","","","2023-07-13 14:57:06","2023-07-13 14:57:06","","0","https://dr.frex.digital/fusion_element/class-4/","0","fusion_element","","0"),
("523","7496","2023-07-13 15:31:02","2023-07-13 15:31:02","Source : https://www.pexels.com/photo/graceful-ballerina-dancing-in-house-with-shadow-on-floor-6533949/","class-4","","inherit","open","closed","","class-4-2","","","2023-07-13 15:31:11","2023-07-13 15:31:11","","348","https://dr.frex.digital/wp-content/uploads/2023/07/class-4.jpg","0","attachment","image/jpeg","0"),
("528","7496","2023-07-13 15:49:01","2023-07-13 15:49:01","Source : https://www.pexels.com/photo/shirtless-man-dancing-alone-6221377/","info-11","","inherit","open","closed","","info-11","","","2023-07-13 15:49:45","2023-07-13 15:49:45","","0","https://dr.frex.digital/wp-content/uploads/2023/07/info-11.jpg","0","attachment","image/jpeg","0"),
("549","7496","2023-07-13 16:56:40","2023-07-13 16:56:40","{\\\"conditions\\\":{\\\"singular_class\\\":{\\\"label\\\":\\\"All Classes\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_class\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"550\\\"}}","Single Class","","publish","closed","closed","","single-class","","","2023-07-13 16:56:54","2023-07-13 16:56:54","","0","https://dr.frex.digital/fusion_tb_layout/single-class/","0","fusion_tb_layout","","0"),
("550","7496","2023-07-13 16:56:49","2023-07-13 16:56: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\" 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=\"125px\" padding_bottom=\"125px\" padding_bottom_small=\"80px\" padding_top_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Class - PTB\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImFmdGVyIjoiIENsYXNzIn19\"]\r\n<p>Title</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"50px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImFmdGVyIjoiIENsYXNzIn19\"]Dance Classes[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" 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\" text_color=\"var(--awb-color8)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZXhjZXJwdCJ9fQ==\"]In aenean metus tempus orci orci sed libero malesuada diam in.[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"min\" 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_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" gradient_end_color=\"hsla(var(--awb-color3-h),calc(var(--awb-color3-s) + 100%),calc(var(--awb-color3-l) - 55%),calc(var(--awb-color3-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center top\" 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=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" min_height=\"550px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-7-scaled.jpg\" animation_type=\"reveal\" animation_color=\"var(--awb-color3)\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJhY2ZfaW1hZ2UiLCJmaWVsZCI6ImJhbm5lcl9pbWFnZSJ9fQ==\" admin_label=\"Class - Banner\"][fusion_builder_row][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"20px\" padding_bottom=\"24px\" background_color=\"var(--awb-color3)\" animation_type=\"fade\" admin_label=\"Class - Info\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" 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\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" iconcolor=\"var(--awb-color8)\" size=\"16px\" item_padding_right=\"15px\" item_padding_left=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-graph\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJkaWZmaWN1bHR5In19\"]Your Content Goes Here[/fusion_li_item][/fusion_checklist][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" iconcolor=\"var(--awb-color8)\" size=\"16px\" item_padding_right=\"15px\" item_padding_left=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-user\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl9yZWxhdGlvbnNoaXAiLCJmaWVsZCI6Imluc3RydWN0b3JzIiwic2VwYXJhdG9yIjoiLCAiLCJsaW5rIjoieWVzIn19\"]instructor[/fusion_li_item][/fusion_checklist][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" circle=\"no\" iconcolor=\"var(--awb-color8)\" size=\"16px\" item_padding_right=\"15px\" item_padding_left=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-time\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJkdXJhdGlvbiIsImFmdGVyIjoiIG1pbnMifX0=\"]Your Content Goes Here[/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=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"105px\" padding_bottom=\"125px\" animation_type=\"fade\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" admin_label=\"Class - Content\"][fusion_builder_row][fusion_builder_column 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_tb_content excerpt=\"no\" excerpt_length=\"55\" strip_html=\"yes\" 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_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_bottom=\"0px\" last=\"no\" border_position=\"all\" padding_top=\"10px\" padding_right=\"10px\" padding_bottom=\"10px\" padding_left=\"10px\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZ3JlYXRlci10aGFuIiwiZmllbGQiOiJhY2ZfZmllbGQiLCJ2YWx1ZSI6IjAiLCJhZGRpdGlvbmFscyI6Imluc3RydWN0b3JzIn1d\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"562\" post_card_list_view=\"0\" source=\"acf_relationship\" acf_relationship_field=\"instructors\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" offset=\"0\" 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=\"1\" columns_small=\"0\" columns=\"1\" 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_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"custom\" 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=\"https://dr.frex.digital/contact/\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" dynamic_params=\"e30=\" margin_right=\"8px\" margin_left=\"8px\" margin_top=\"20px\" margin_bottom=\"60px\"]Try this class[/fusion_button][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" 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\" margin_bottom=\"40px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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)\"]Other classes[/fusion_title][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"related\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"2\" offset=\"0\" 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=\"2\" column_spacing=\"40\" 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\" terms_by=\"class_category\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"0px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"0px\" admin_label=\"Class - Newsletter\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" margin_bottom_small=\"38px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_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=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Single Class Content","","publish","closed","closed","","single-class-content","","","2024-02-01 16:19:37","2024-02-01 16:19:37","","0","https://dr.frex.digital/fusion_tb_section/single-class-content/","0","fusion_tb_section","","0"),
("557","7496","2023-07-13 17:18:43","2023-07-13 17:18:43","a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:12:\"relationship\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:10:\"instructor\";}s:11:\"post_status\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:7:\"filters\";a:1:{i:0;s:6:\"search\";}s:13:\"return_format\";s:6:\"object\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:8:\"elements\";s:0:\"\";}","Instructors","instructors","publish","closed","closed","","field_64b031e09a5a1","","","2023-07-13 17:18:53","2023-07-13 17:18:53","","287","https://dr.frex.digital/?post_type=acf-field&#038;p=557","3","acf-field","","0"),
("562","7496","2023-07-13 17:23:23","2023-07-13 17:23:23","[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=\"0px\" padding_right=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" padding_bottom=\"0px\" first=\"true\" dynamic_params=\"e30=\" padding_top_small=\"0px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" layout=\"1_1\" 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=\"center top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"0px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" spacing_right=\"0%\" padding_bottom_small=\"103px\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"8vw\" bottom_margin=\"8vw\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" layout=\"1_1\" 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=\"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=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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-color3)\" padding_top=\"30px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"30px\" first=\"true\" spacing_left=\"0%\" padding_right=\"30px\" padding_left=\"30px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"4\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9LCJsaW5rX3VybCI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl9yZWxhdGlvbnNoaXAiLCJmaWVsZCI6ImNsYXNzZXNfdGVhY2hpbmciLCJzZXBhcmF0b3IiOiIgLyAiLCJsaW5rIjoieWVzIiwiYWZ0ZXIiOiIifX0=\"]\n<p>class</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\" content_alignment=\"center\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJzaG9ydF9iaW8ifX0=\" margin_bottom=\"40px\"]Your Content Goes Here[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sInR3aXR0ZXIiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJzb2NpYWxfbGlua3NfdHdpdHRlciJ9LCJ5b3V0dWJlIjp7ImRhdGEiOiJhY2ZfdGV4dCIsImZpZWxkIjoic29jaWFsX2xpbmtzX3lvdXR1YmUifSwiaW5zdGFncmFtIjp7ImRhdGEiOiJhY2ZfdGV4dCIsImZpZWxkIjoic29jaWFsX2xpbmtzX2luc3RhZ3JhbSJ9LCJmYWNlYm9vayI6eyJkYXRhIjoiYWNmX3RleHQiLCJmaWVsZCI6InNvY2lhbF9saW5rc19mYWNlYm9vayJ9fQ==\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 2","","publish","closed","closed","","instructor-1-2","","","2023-07-14 16:30:59","2023-07-14 16:30:59","","0","https://dr.frex.digital/fusion_element/instructor-1-cloned/","0","fusion_element","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("587","7496","2023-07-13 18:49:14","2023-07-13 18:49:14","a:16:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";}","Banner Image","banner_image","publish","closed","closed","","field_64b0471060fc7","","","2023-07-13 18:49:14","2023-07-13 18:49:14","","287","https://dr.frex.digital/?post_type=acf-field&p=587","4","acf-field","","0"),
("588","7496","2023-07-13 18:57:16","2023-07-13 18:57:16","Source : https://www.pexels.com/photo/young-asian-male-performing-street-dance-5368931/","banner-8","","inherit","open","closed","","banner-8","","","2023-07-13 18:57:23","2023-07-13 18:57:23","","297","https://dr.frex.digital/wp-content/uploads/2023/07/banner-8.jpg","0","attachment","image/jpeg","0"),
("590","7496","2023-07-13 19:04:39","2023-07-13 19:04:39","Source : https://www.pexels.com/photo/actors-artists-ballet-costumes-45258/","banner-9","","inherit","open","closed","","banner-9","","","2023-07-13 19:04:48","2023-07-13 19:04:48","","286","https://dr.frex.digital/wp-content/uploads/2023/07/banner-9.jpg","0","attachment","image/jpeg","0"),
("595","7496","2023-07-13 19:50:43","2023-07-13 19:50:43","Source : https://www.pexels.com/photo/gracious-asian-ballerinas-bending-to-side-near-barre-5154382/","banner-10","","inherit","open","closed","","banner-10","","","2023-07-13 19:50:50","2023-07-13 19:50:50","","0","https://dr.frex.digital/wp-content/uploads/2023/07/banner-10.jpg","0","attachment","image/jpeg","0"),
("602","7496","2023-07-14 13:07:51","2023-07-14 13:07:51","a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:6:\"number\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:4:\"step\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Duration","duration","publish","closed","closed","","field_64b148958c965","","","2023-07-14 13:07:51","2023-07-14 13:07:51","","287","https://dr.frex.digital/?post_type=acf-field&p=602","5","acf-field","","0"),
("611","7496","2023-07-14 14:09:41","2023-07-14 14:09:41","Source : https://www.pexels.com/photo/graceful-ballerina-dancing-in-house-with-shadow-on-floor-6533949/","banner-11","","inherit","open","closed","","banner-11","","","2023-07-14 14:10:57","2023-07-14 14:10:57","","348","https://dr.frex.digital/wp-content/uploads/2023/07/banner-11.jpg","0","attachment","image/jpeg","0"),
("613","7496","2023-07-14 14:12:44","2023-07-14 14:12:44","a:11:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}","Short Bio","short_bio","publish","closed","closed","","field_64b157d10fbd9","","","2023-07-14 14:12:44","2023-07-14 14:12:44","","316","https://dr.frex.digital/?post_type=acf-field&p=613","2","acf-field","","0"),
("618","7496","2023-07-14 14:37:54","2023-07-14 14:37:54","a:29:{s:8:\"taxonomy\";s:14:\"class_category\";s:11:\"object_type\";a:1:{i:0;s:5:\"class\";}s:22:\"advanced_configuration\";i:0;s:13:\"import_source\";s:0:\"\";s:11:\"import_date\";s:0:\"\";s:6:\"labels\";a:25:{s:4:\"name\";s:16:\"Class Categories\";s:13:\"singular_name\";s:14:\"Class Category\";s:9:\"menu_name\";s:10:\"Categories\";s:9:\"all_items\";s:14:\"All Categories\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";s:18:\"Popular Categories\";s:26:\"separate_items_with_commas\";s:31:\"Separate categories with commas\";s:19:\"add_or_remove_items\";s:24:\"Add or remove categories\";s:21:\"choose_from_most_used\";s:36:\"Choose from the most used categories\";s:9:\"most_used\";s:0:\"\";s:9:\"not_found\";s:19:\"No categories found\";s:8:\"no_terms\";s:13:\"No categories\";s:22:\"name_field_description\";s:0:\"\";s:22:\"slug_field_description\";s:0:\"\";s:22:\"desc_field_description\";s:0:\"\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:13:\"back_to_items\";s:20:\"← Go to categories\";s:9:\"item_link\";s:13:\"Category Link\";s:21:\"item_link_description\";s:20:\"A link to a category\";}s:11:\"description\";s:0:\"\";s:12:\"capabilities\";a:4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:6:\"public\";i:1;s:18:\"publicly_queryable\";i:1;s:12:\"hierarchical\";i:0;s:7:\"show_ui\";i:1;s:12:\"show_in_menu\";i:1;s:17:\"show_in_nav_menus\";i:1;s:12:\"show_in_rest\";i:1;s:9:\"rest_base\";s:0:\"\";s:14:\"rest_namespace\";s:5:\"wp/v2\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:13:\"show_tagcloud\";i:1;s:18:\"show_in_quick_edit\";i:1;s:17:\"show_admin_column\";i:0;s:7:\"rewrite\";a:3:{s:17:\"permalink_rewrite\";s:12:\"taxonomy_key\";s:10:\"with_front\";s:1:\"1\";s:20:\"rewrite_hierarchical\";s:1:\"0\";}s:9:\"query_var\";s:13:\"post_type_key\";s:14:\"query_var_name\";s:0:\"\";s:12:\"default_term\";a:1:{s:20:\"default_term_enabled\";s:1:\"0\";}s:4:\"sort\";i:0;s:8:\"meta_box\";s:7:\"default\";s:11:\"meta_box_cb\";s:0:\"\";s:20:\"meta_box_sanitize_cb\";s:0:\"\";}","Class Categories","class-categories","publish","closed","closed","","taxonomy_64b15da422925","","","2023-07-14 14:39:41","2023-07-14 14:39:41","","0","https://dr.frex.digital/?post_type=acf-taxonomy&#038;p=618","0","acf-taxonomy","","0"),
("623","7496","2023-07-14 15:23:02","2023-07-14 15:23:02","Source :https://www.pexels.com/photo/six-people-in-black-matching-clothes-dancing-at-daytime-690597/","banner-12","","inherit","open","closed","","banner-12","","","2023-07-19 18:26:53","2023-07-19 18:26:53","","298","https://dr.frex.digital/wp-content/uploads/2023/07/banner-12.jpg","0","attachment","image/jpeg","0"),
("644","7496","2023-07-14 17:08:31","2023-07-14 17:08:31","[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" element_content=\"\" background_color=\"var(--awb-color7)\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifSwibGluayI6eyJkYXRhIjoicG9zdF9wZXJtYWxpbmsifX0=\" last=\"true\" hover_type=\"none\" border_position=\"all\" padding_top=\"60px\" padding_right=\"60px\" padding_bottom=\"60px\" padding_left=\"60px\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 80%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 80%))\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" background_position=\"center center\" first=\"true\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"no\" 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\" text_color=\"var(--awb-color1)\" item_border_top=\"1px\" item_border_right=\"1px\" item_border_bottom=\"1px\" item_border_left=\"1px\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" item_border_color=\"var(--awb-color1)\" item_padding_top=\"6px\" item_padding_right=\"7px\" item_padding_bottom=\"6px\" item_padding_left=\"7px\" /][fusion_separator style_type=\"none\" flex_grow=\"1\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"12vw\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" 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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][/fusion_builder_column]","Blog 2","","publish","closed","closed","","blog-1-2","","","2023-07-17 13:35:46","2023-07-17 13:35:46","","0","https://dr.frex.digital/fusion_element/blog-1-cloned/","0","fusion_element","","0"),
("655","7496","2023-07-14 17:48:21","2023-07-14 17:48:21","{\\\"conditions\\\":{\\\"singular_post\\\":{\\\"label\\\":\\\"All Posts\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_post\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"656\\\"}}","Single Post","","publish","closed","closed","","single-post","","","2023-07-14 17:57:10","2023-07-14 17:57:10","","0","https://dr.frex.digital/fusion_tb_layout/single-post/","0","fusion_tb_layout","","0"),
("656","7496","2023-07-14 17:51:37","2023-07-14 17:51: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\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 85%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 8%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"155px\" padding_top=\"155px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"119px\" padding_bottom_small=\"103px\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" admin_label=\"Single Post - PTB\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"15px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"no\" 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\" text_color=\"var(--awb-color1)\" border_top=\"0\" border_bottom=\"0\" font_size=\"18px\" padding_bottom=\"30px\" /][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\r\n<p>Title</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"105px\" padding_bottom=\"44px\" animation_type=\"fade\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" padding_top_small=\"80px\" padding_bottom_small=\"45px\" admin_label=\"Single Post - Content\"][fusion_builder_row][fusion_builder_column type=\"auto\" type=\"auto\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_tb_content excerpt=\"no\" excerpt_length=\"55\" strip_html=\"yes\" 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\" 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=\"draft\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color3)\" padding_top=\"55px\" padding_bottom=\"78px\" admin_label=\"Single Post - Comments\"][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\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_tb_comments avatar=\"square\" 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\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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=\"90px\" padding_bottom=\"90px\" admin_label=\"Single Post - Related\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"no\" border_position=\"all\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" 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\" margin_bottom=\"40px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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_small=\"30px\"]Other Articles[/fusion_title][fusion_post_cards post_card=\"204\" post_card_list_view=\"0\" source=\"related\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"2\" offset=\"0\" 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=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"2\" column_spacing=\"40\" row_spacing=\"41\" 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\" terms_by=\"category\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1436\"]","Single Post Content","","publish","closed","closed","","single-post-content","","","2026-06-12 10:40:24","2026-06-12 10:40:24","","0","https://dr.frex.digital/fusion_tb_section/single-post-content/","0","fusion_tb_section","","0"),
("702","7496","2023-07-17 15:18:45","2023-07-17 15:18:45","Source : https://www.pexels.com/video/man-showing-the-footsteps-in-dancing-2795731/","pexels_videos_2795731 (540p)","","inherit","open","closed","","pexels_videos_2795731-540p","","","2023-07-17 15:18:51","2023-07-17 15:18:51","","0","https://dr.frex.digital/wp-content/uploads/2023/07/pexels_videos_2795731-540p.mp4","0","attachment","video/mp4","0"),
("707","7496","2023-07-17 16:14:25","2023-07-17 16:14: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\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"false\" border_position=\"all\" first=\"true\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" min_height=\"\" link=\"\"][fusion_form_text label=\"First name\" name=\"first_name\" required=\"yes\" minlength=\"0\" maxlength=\"0\" /][fusion_form_email label=\"Email address\" name=\"email_address\" required=\"yes\" input_field_icon=\"fusion-prefix-retail-envelope\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"false\" spacing_left_small=\"0%\" spacing_right_small=\"0.6%\" min_height=\"\" link=\"\"][fusion_form_text label=\"Last name\" name=\"last_name\" required=\"no\" minlength=\"0\" maxlength=\"0\" /][fusion_form_phone_number label=\"Phone number\" name=\"phone_number\" required=\"no\" input_field_icon=\"fusion-prefix-retail-phone\" /][/fusion_builder_column][fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" render_logics=\"W10=\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" min_height=\"\" link=\"\"][fusion_form_text label=\"Subject\" name=\"subject\" required=\"no\" minlength=\"0\" maxlength=\"0\" /][fusion_form_select label=\"Reason of inquiry (conditional logic demo)\" name=\"reason_of_inquiry\" required=\"yes\" options=\"W1swLCJJIHdhbnQgdG8gdHJ5IGEgZnJlZSBjbGFzcyIsIiJdLFswLCJJIGhhdmUgZ2VuZXJhbCBxdWVzdGlvbnMiLCIiXV0=\" /][fusion_form_select label=\"Which class do you wish to try?\" name=\"which_class\" required=\"yes\" options=\"W1swLCJIaXAgSG9wIiwiIl0sWzAsIkJhbGxldCIsIiJdLFswLCJTYWxzYSIsIiJdLFswLCJDb250ZW1wb3JhcnkiLCIiXV0=\" logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6InJlYXNvbl9vZl9pbnF1aXJ5IiwidmFsdWUiOiJJIHdhbnQgdG8gdHJ5IGEgZnJlZSBjbGFzcyJ9XQ==\" /][fusion_form_textarea label=\"Message\" name=\"message\" required=\"yes\" rows=\"4\" /][fusion_form_notice success=\"Thank you for your message. It has been sent.\" error=\"There was an error trying to send your message. Please try again later.\" /][fusion_form_submit color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" accent_hover_color=\"var(--awb-color1)\"]Submit your message[/fusion_form_submit][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Contact","","publish","closed","closed","","contact","","","2023-07-17 18:47:33","2023-07-17 18:47:33","","0","https://dr.frex.digital/fusion_form/contact/","0","fusion_form","","0"),
("728","7496","2023-07-18 12:26:45","2023-07-18 12:26:45","{\\\"conditions\\\":{\\\"singular_instructor\\\":{\\\"label\\\":\\\"All Instructors\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_instructor\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"729\\\"}}","Single Instructor","","publish","closed","closed","","single-instructor","","","2023-07-18 12:27:09","2023-07-18 12:27:09","","0","https://dr.frex.digital/fusion_tb_layout/single-instructor/","0","fusion_tb_layout","","0"),
("729","7496","2023-07-18 12:27:02","2023-07-18 12:27:02","[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"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\" padding_top=\"0px\" padding_bottom=\"0px\" padding_bottom_small=\"0px\" padding_top_small=\"0px\" padding_top_medium=\"0px\" padding_bottom_medium=\"0px\" dynamic_params=\"e30=\" padding_left=\"0px\" padding_right=\"0px\" flex_column_spacing=\"0\" admin_label=\"Instructor - PTB\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"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=\"center top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" top_margin=\"20vh\" bottom_margin=\"20vh\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" padding_top=\"223px\" padding_bottom=\"218px\" padding_right=\"60px\" padding_left=\"60px\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" padding_left_small=\"20px\" padding_right_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=\"1\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImFmdGVyIjoiIn19\"]\r\n<p>Title</p>\r\n[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"1\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"50px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImFmdGVyIjoiIENsYXNzIn19\" margin_top_small=\"0\"]Dance Classes[/fusion_title][fusion_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_right=\"40px\" margin_left=\"40px\" 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=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl9yZWxhdGlvbnNoaXAiLCJmaWVsZCI6ImNsYXNzZXNfdGVhY2hpbmciLCJzZXBhcmF0b3IiOiIgLyAiLCJsaW5rIjoieWVzIiwiYWZ0ZXIiOiIifX0=\"]\r\n<p>class</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"static\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"30px\" padding_bottom=\"30px\" background_color=\"var(--awb-color3)\" animation_type=\"fade\" admin_label=\"Instructor - Info\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" 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\" margin_bottom=\"0px\" 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\" margin_bottom=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImJlZm9yZSI6IkZvbGxvdyAiLCJhZnRlciI6IiBvbiBzb2NpYWwgbWVkaWEgOiAifX0=\" margin_right=\"20px\"][/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn0sInR3aXR0ZXIiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJzb2NpYWxfbGlua3NfdHdpdHRlciJ9LCJ5b3V0dWJlIjp7ImRhdGEiOiJhY2ZfdGV4dCIsImZpZWxkIjoic29jaWFsX2xpbmtzX3lvdXR1YmUifSwiaW5zdGFncmFtIjp7ImRhdGEiOiJhY2ZfdGV4dCIsImZpZWxkIjoic29jaWFsX2xpbmtzX2luc3RhZ3JhbSJ9LCJmYWNlYm9vayI6eyJkYXRhIjoiYWNmX3RleHQiLCJmaWVsZCI6InNvY2lhbF9saW5rc19mYWNlYm9vayJ9fQ==\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" margin_left=\"20\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"105px\" padding_bottom=\"125px\" animation_type=\"fade\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" admin_label=\"Instructor - Content\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" 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_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\" border_size=\"2\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" bottom_margin=\"50px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"4\" 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\" margin_bottom=\"40px\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyIsImFmdGVyIjoiJ3MgY2xhc3NlcyJ9fQ==\" margin_bottom_small=\"30px\"]Other classes[/fusion_title][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"acf_relationship\" post_type=\"class\" 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=\"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=\"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\" terms_by=\"class_category\" acf_relationship_field=\"classes_teaching\" /][fusion_tb_pagination layout=\"preview\" preview_position=\"bottom\" height=\"36\" same_term=\"no\" taxonomy=\"category\" inverse_post_order=\"no\" border_size=\"1\" preview_height=\"90\" preview_wrapper_width=\"500\" preview_width=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"60px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"0px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"0px\" admin_label=\"Instructor - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Single Instructor Content","","publish","closed","closed","","single-instructor-content","","","2024-02-01 16:21:04","2024-02-01 16:21:04","","0","https://dr.frex.digital/fusion_tb_section/single-instructor-content/","0","fusion_tb_section","","0"),
("771","7496","2023-07-18 16:48:15","2023-07-18 16:48:15","{\\\"conditions\\\":{\\\"all_archives\\\":{\\\"label\\\":\\\"All Archives Pages\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"all_archives\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"772\\\"}}","Archives","","publish","closed","closed","","archives","","","2023-07-18 16:51:22","2023-07-18 16:51:22","","0","https://dr.frex.digital/fusion_tb_layout/archives/","0","fusion_tb_layout","","0"),
("772","7496","2023-07-18 16:51:18","2023-07-18 16:51:18","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"150px\" padding_bottom=\"150px\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" gradient_start_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 10%))\" gradient_end_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 10%))\" padding_bottom_small=\"100px\" padding_top_small=\"100px\" animation_color=\"var(--awb-color3)\" admin_label=\"Archive - ¨PTB\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" animation_type=\"fade\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\r\n<p>title</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"10px\" font_size=\"50px\"]\r\n<p>Who we are</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Archive - Articles\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"204\" post_card_list_view=\"0\" source=\"posts\" number_posts=\"0\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"2\" column_spacing=\"50\" row_spacing=\"50\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\"]Nothing Found[/fusion_tb_post_card_archives][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1436\"]","Archives Content","","publish","closed","closed","","archives-content","","","2026-06-12 10:22:00","2026-06-12 10:22:00","","0","https://dr.frex.digital/fusion_tb_section/archives-content/","0","fusion_tb_section","","0"),
("781","7496","2023-07-18 17:35:00","2023-07-18 17:35:00","{\\\"conditions\\\":{\\\"search_results\\\":{\\\"label\\\":\\\"Search Results\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"search_results\\\"}},\\\"template_terms\\\":{\\\"content\\\":\\\"782\\\"}}","Search Results","","publish","closed","closed","","search-results","","","2023-07-18 17:36:37","2023-07-18 17:36:37","","0","https://dr.frex.digital/fusion_tb_layout/search-results/","0","fusion_tb_layout","","0"),
("782","7496","2023-07-18 17:35:15","2023-07-18 17:35:15","[fusion_builder_container align_content=\"stretch\" is_nested=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" type=\"flex\" flex_align_items=\"flex-start\" flex_justify_content=\"center\" container_tag=\"div\" background_color=\"var(--awb-color8)\" gradient_start_position=\"0\" gradient_end_position=\"70\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"152\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_parallax=\"fixed\" parallax_speed=\"0.3\" background_blend_mode=\"overlay\" opacity=\"100\" break_parents=\"0\" fade=\"no\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" hundred_percent_height_center_content=\"yes\" padding_top=\"125px\" padding_bottom=\"125px\" border_color=\"var(--awb-color1)\" border_style=\"solid\" equal_height_columns=\"no\" enable_mobile=\"no\" link_color=\"var(--awb-color5)\" link_hover_color=\"var(--awb-color5)\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" video_loop=\"yes\" video_mute=\"yes\" video_aspect_ratio=\"16:9\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom_medium=\"0px\" min_height=\"calc(100vh - 100px)\" admin_label=\"Search - PTB\" admin_toggled=\"yes\" mask_bg=\"none\" mask_bg_style=\"inverted\" mask_bg_transform=\"flip-vertical,flip-Horizontal\" mask_bg_color=\"var(--awb-color7)\" pattern_bg=\"none\" pattern_bg_color=\"var(--awb-color1)\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_size=\"3%\" background_image=\"https://dr.frex.digital/corporation/wp-content/uploads/sites/170/2022/07/banner.jpg\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" gradient_start_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 10%))\" gradient_end_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 10%))\" padding_top_small=\"80px\" padding_bottom_small=\"80px\"][fusion_builder_row][fusion_builder_column type=\"4_5\" type=\"4_5\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"3_5\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left_medium=\"20px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" content_align=\"center\" margin_bottom_small=\"10px\" margin_top_small=\"10px\" margin_right_small=\"0px\" margin_left_small=\"0px\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color8)\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"var(--awb-color3)\" fusion_font_variant_title_font=\"400\" margin_bottom=\"40px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InJlcXVlc3RfcGFyYW1ldGVyIiwidHlwZSI6ImdldCIsIm5hbWUiOiJzIiwiYmVmb3JlIjoiU2VhcmNoIHJlc3VsdHMgZm9yIDogIn19\" margin_right=\"0\" margin_left=\"0\"]\r\n<p>Page Title</p>\r\n[/fusion_title][fusion_title animation_direction=\"left\" animation_offset=\"top-into-view\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,sticky\" title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" link_color=\"var(--awb-color6)\" link_hover_color=\"var(--awb-color4)\" content_align=\"center\" size=\"1\" style_type=\"default\" text_color=\"var(--awb-color8)\" text_shadow=\"no\" text_shadow_blur=\"0\" responsive_typography=\"false\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" sep_color=\"var(--awb-color3)\" fusion_font_variant_title_font=\"400\" margin_bottom=\"40px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InJlcXVlc3RfcGFyYW1ldGVyIiwidHlwZSI6ImdldCIsIm5hbWUiOiJzIiwiYmVmb3JlIjoiU2VhcmNoIHJlc3VsdHMgZm9yIDogIn19\" margin_right=\"0\" margin_left=\"0\" font_size=\"50px\" margin_bottom_small=\"40px\"]\r\n<p>Page Title</p>\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"45.00\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" border_position=\"all\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" type_medium=\"3_5\" type_small=\"1_1\" margin_top=\"0px\" margin_bottom=\"0px\" spacing=\"4%\" padding_bottom_medium=\"0px\" animation_direction=\"up\" animation_speed=\"1.3\" animation_offset=\"top-into-view\" target=\"_self\" hover_type=\"none\" center_content=\"no\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" align_self=\"auto\" order_medium=\"0\" order_small=\"0\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" content_layout=\"column\" last=\"true\" background_type=\"single\" filter_type=\"regular\" first=\"true\" spacing_left_medium=\"20px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_search animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color1)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Search - Articles\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"204\" post_card_list_view=\"0\" source=\"posts\" number_posts=\"0\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"stretch\" columns_medium=\"0\" columns_small=\"0\" columns=\"2\" column_spacing=\"50\" row_spacing=\"50\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\"]Nothing Found[/fusion_tb_post_card_archives][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Search Content","","publish","closed","closed","","search-content","","","2023-07-19 16:51:26","2023-07-19 16:51:26","","0","https://dr.frex.digital/fusion_tb_section/search-content/","0","fusion_tb_section","","0"),
("791","7496","2023-07-18 18:23:09","2023-07-18 18:23:09","{\\\"conditions\\\":{\\\"not_found\\\":{\\\"label\\\":\\\"404 Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"not_found\\\"}},\\\"template_terms\\\":{\\\"content\\\":793}}","404","","publish","closed","closed","","404","","","2023-07-18 18:25:53","2023-07-18 18:25:53","","0","https://dr.frex.digital/fusion_tb_layout/404/","0","fusion_tb_layout","","0"),
("793","7496","2023-07-18 18:25:52","2023-07-18 18:25:52","[fusion_builder_container hundred_percent=\"no\" equal_height_columns=\"yes\" hide_on_mobile=\"no\" background_position=\"left top\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" border_style=\"solid\" border_sizes_top=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_sizes_right=\"0px\" flex_align_items=\"stretch\" type=\"flex\" margin_bottom_medium=\"0px\" flex_justify_content=\"center\" animation_direction=\"static\" animation_speed=\"0.8\" admin_toggled=\"yes\" background_color=\"var(--awb-color1)\" padding_top=\"130px\" padding_bottom=\"130px\" pattern_bg=\"none\" pattern_bg_color=\"var(--awb-color5)\" pattern_bg_opacity=\"14\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" flex_column_spacing=\"100px\" padding_top_small=\"80px\" animation_type=\"fade\" padding_bottom_small=\"80px\" gradient_end_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 10%))\" gradient_start_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 10%))\" linear_angle=\"144\" admin_label=\"404 - Content\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-10637173-720p.mp4\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_right=\"120px\" padding_left=\"120px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"0.8\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_left_small=\"0px\" padding_right_small=\"0px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" font_size=\"160px\"]404[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" content_align=\"center\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" font_size=\"90px\" margin_top_small=\"0\"]404[/fusion_title][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\" margin_bottom=\"40px\"]\r\n<p>Page Not Found</p>\r\n[/fusion_title][fusion_text rule_style=\"default\" content_alignment=\"center\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at quam eu diam volutpat vehicula gravida in velit. Suspendisse</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_1\" align_self=\"auto\" content_layout=\"row\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_right=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_left_small=\"0px\" padding_right_small=\"0px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button link=\"#\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"no\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImNvbG9yIjoiIn19\" margin_right=\"15px\" size=\"xlarge\"]Back To Homepage[/fusion_button][fusion_search animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_left=\"15px\" input_height=\"55px\" border_color=\"var(--awb-color1)\" focus_border_color=\"var(--awb-color5)\" /][/fusion_builder_column][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"1_1\" align_self=\"auto\" content_layout=\"block\" align_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"0px\" padding_right=\"0px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"up\" animation_speed=\"1.0\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" padding_left_small=\"0px\" padding_right_small=\"0px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button link=\"#\" target=\"_self\" alignment=\"center\" color=\"default\" button_gradient_top_color=\"var(--awb-color4)\" button_gradient_bottom_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_color=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImNvbG9yIjoiIn19\" size=\"xlarge\" margin_bottom=\"20px\"]Back To Homepage[/fusion_button][fusion_search animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" input_height=\"55px\" border_color=\"var(--awb-color1)\" focus_border_color=\"var(--awb-color5)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","404 Content","","publish","closed","closed","","404-content","","","2023-07-18 18:37:58","2023-07-18 18:37:58","","0","https://dr.frex.digital/fusion_tb_section/404-content/","0","fusion_tb_section","","0"),
("845","7496","2024-02-01 15:21:17","2024-02-01 15:21:17","","Dance-v1.4","","inherit","open","closed","","dance-v1-4","","","2024-02-01 15:21:17","2024-02-01 15:21:17","","19","https://dr.frex.digital/wp-content/uploads/2023/07/Dance-v1.4.zip","0","attachment","application/zip","0"),
("856","7496","2024-02-01 16:09:02","2024-02-01 16:09:02","Source : https://www.pexels.com/photo/professional-ballerina-practicing-in-studio-5149650/","mobile-bg","","inherit","open","closed","","mobile-bg","","","2024-02-01 16:09:47","2024-02-01 16:09:47","","0","https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg","0","attachment","image/jpeg","0"),
("880","303","2024-02-06 05:47:31","2024-02-06 05:47:31","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color5)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2hvdmVyX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfaG92ZXJfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),var(--awb-color7-l),calc(var(--awb-color7-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color7)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color7)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Sat : 9am to 6pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),var(--awb-color7-l),calc(var(--awb-color7-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color7)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color7)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),var(--awb-color7-l),calc(var(--awb-color7-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color7)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color7)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"https://www.facebook.com/soheila.eskandari.94\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color7)\" tooltip_placement=\"bottom\" alignment=\"right\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"15px\" padding_right=\"30px\" padding_bottom=\"15px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"99999\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color3)\" sticky_background_color=\"var(--awb-color3)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"1\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"1_4\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"right\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifSwiZWxlbWVudF9jb250ZW50Ijp7ImRhdGEiOiJzaXRlX2xvZ28iLCJ0eXBlIjoiYWxsIn19\" max_width=\"120px\" sticky_max_width=\"90px\" /][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"right\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifSwiZWxlbWVudF9jb250ZW50Ijp7ImRhdGEiOiJzaXRlX2xvZ28iLCJ0eXBlIjoiYWxsIn19\" max_width=\"95px\" margin_left_small=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" 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\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"mobile-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"flex-start\" main_justify_content=\"left\" transition_type=\"fade\" 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=\"fa-bars fas\" collapsed_nav_icon_close=\"fa-times fas\" mobile_nav_button_align_hor=\"flex-start\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_items_height=\"65\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" mobile_trigger_background_color=\"rgba(255,255,255,0)\" mobile_trigger_color=\"var(--awb-color7)\" mobile_trigger_font_size=\"23px\" trigger_padding_left=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"2\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"-20px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_2\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"main-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"15px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color7)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color7)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color7)\" icons_hover_color=\"var(--awb-color7)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"small\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJzdWJtZW51X3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X3NlcF9jb2xvciI6InJnYmEoMCwwLDAsMCkiLCJzb3VyY2UiOiJtZW51X3N1Yl9zZXBfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJzdWJtZW51X2JnIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibWVudV9zdWJfYmdfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJzdWJtZW51X2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfY29sb3IiOiIjMjEyOTM0Iiwic291cmNlIjoibWVudV9zdWJfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJzdWJtZW51X2FjdGl2ZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtZW51X2JnX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoibWVudV9zdWJfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJtb2JpbGVfdHJpZ2dlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfdHJpZ2dlcl9jb2xvciI6IiMwMDAwMDAiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV90b2dnbGVfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9LCJtb2JpbGVfc2VwX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsIm1vYmlsZV9zZXBfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYm9yZGVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2JnIjp7ImRhdGEiOiJjb2xvciIsIm1vYmlsZV9iZyI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9iYWNrZ3JvdW5kX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsIm1vYmlsZV9jb2xvciI6IiM0YTRlNTciLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9tb2JpbGVfbWVudV90eXBvZ3JhcGh5IiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2FjdGl2ZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYWN0aXZlX2JnIjoiIzY1YmM3YiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX2FjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2ZvbnRfaG92ZXJfY29sb3IiLCJhbHBoYSI6IjEiLCJicmlnaHRuZXNzIjoiMCIsInJlYWRhYmxlIjoibm8iLCJyZWFkYWJsZV90aHJlc2hvbGQiOiIuNTQ3IiwicmVhZGFibGVfZGFyayI6IiNmZmYiLCJyZWFkYWJsZV9saWdodCI6IiMwMDAiLCJmYWxsYmFjayI6IiJ9fQ==\" active_color=\"var(--awb-color7)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"3\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"1_4\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color7)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color7)\" button_gradient_bottom_color_hover=\"var(--awb-color7)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color7)\" alignment=\"right\" margin_top=\"10px\" margin_bottom=\"10px\" link=\"https://dr.frex.digital/appointments/\"]Book an Appointment[/fusion_button][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=\"medium-visibility,large-visibility\" sticky_display=\"sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"400\" font_size=\"12px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" border_color=\"var(--awb-color7)\" padding_top=\"8px\" padding_bottom=\"8px\" padding_right=\"13px\" padding_left=\"13px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color7)\" alignment=\"right\" link=\"https://dr.frex.digital/appointments/\"]Book an Appointment[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","publish","closed","closed","","homepage-header","","","2026-06-23 18:07:44","2026-06-23 18:07:44","","0","https://dr.frex.digital/fusion_tb_section/homepage-header/","0","fusion_tb_section","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("890","0","2026-06-01 14:58:45","2026-06-01 14:58:45","<!-- wp:navigation-link {\"className\":\"a1i0s0 menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"Product\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\"a1i0s0 menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"Solutions\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\"a1i0s0 menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"Features\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\"a1i0s0 menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"Company\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\"a1i0s0 menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"Resources\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /-->","Footer Pages Menu 01 - Main","","publish","closed","closed","","footer-pages-menu-01-main","","","2026-06-01 14:58:45","2026-06-01 14:58:45","","0","https://dr.frex.digital/2026/06/01/footer-pages-menu-01-main/","0","wp_navigation","","0"),
("892","1","2026-06-02 07:23:54","2026-06-02 07:23:54","","favicon-32x32","","inherit","open","closed","","favicon-32x32","","","2026-06-02 07:23:54","2026-06-02 07:23:54","","0","https://dr.frex.digital/wp-content/uploads/2026/06/favicon-32x32-1.png","0","attachment","image/png","0"),
("893","1","2026-06-02 07:24:10","2026-06-02 07:24:10","","apple-icon-180x180","","inherit","open","closed","","apple-icon-180x180","","","2026-06-02 07:24:10","2026-06-02 07:24:10","","0","https://dr.frex.digital/wp-content/uploads/2026/06/apple-icon-180x180-1.png","0","attachment","image/png","0"),
("894","1","2026-06-02 07:24:22","2026-06-02 07:24:22","","android-icon-192x192","","inherit","open","closed","","android-icon-192x192","","","2026-06-02 07:24:22","2026-06-02 07:24:22","","0","https://dr.frex.digital/wp-content/uploads/2026/06/android-icon-192x192-1.png","0","attachment","image/png","0"),
("895","1","2026-06-02 07:24:39","2026-06-02 07:24:39","","ms-icon-310x310","","inherit","open","closed","","ms-icon-310x310","","","2026-06-02 07:24:39","2026-06-02 07:24:39","","0","https://dr.frex.digital/wp-content/uploads/2026/06/ms-icon-310x310-1.png","0","attachment","image/png","0"),
("896","1","2026-06-02 07:33:23","2026-06-02 07:33:23","","logo-drsohiela-white-X","","inherit","open","closed","","logo-drsohiela-white-x","","","2026-06-02 07:33:23","2026-06-02 07:33:23","","0","https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.png","0","attachment","image/png","0"),
("897","1","2026-06-02 07:33:24","2026-06-02 07:33:24","","logo-drsohiela-black-2X","","inherit","open","closed","","logo-drsohiela-black-2x","","","2026-06-02 07:33:24","2026-06-02 07:33:24","","0","https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-2X.png","0","attachment","image/png","0"),
("898","1","2026-06-02 07:33:25","2026-06-02 07:33:25","","logo-drsohiela-black-X","","inherit","open","closed","","logo-drsohiela-black-x","","","2026-06-02 07:33:25","2026-06-02 07:33:25","","0","https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-black-X.png","0","attachment","image/png","0"),
("899","1","2026-06-02 07:33:26","2026-06-02 07:33:26","","logo-drsohiela-white-2X","","inherit","open","closed","","logo-drsohiela-white-2x","","","2026-06-02 07:33:26","2026-06-02 07:33:26","","0","https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-2X.png","0","attachment","image/png","0"),
("903","1","2026-06-02 08:10:40","2026-06-02 08:10:40","[fusion_fontawesome icon=\"fusion-prefix-icon-dance-menu\" spin=\"no\" linktarget=\"_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\" size=\"18\" link=\"#\" id=\"menu-offcanvas\" /]","side menu","","publish","closed","closed","","side-menu","","","2026-06-02 08:10:40","2026-06-02 08:10:40","","0","https://dr.frex.digital/fusion_element/side-menu/","0","fusion_element","","0"),
("904","1","2026-06-02 08:15:27","2026-06-02 08:15:27","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"670px\" type=\"670px\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\"]1.800.123.4567[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]123, 4th Street, Avada Town[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"200px\" type=\"200px\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"#\" twitter=\"#\" youtube=\"#\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" type=\"flex\" hundred_percent=\"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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" link=\"https://dr.frex.digital/classes/\" alignment=\"right\"]Try free class[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-02 08:15:27","2026-06-02 08:15:27","","880","https://dr.frex.digital/?p=904","0","revision","","0"),
("905","1","2026-06-02 08:18:41","2026-06-02 08:18:41","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"670px\" type=\"670px\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\"]1.800.123.4567[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]123, 4th Street, Avada Town[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"200px\" type=\"200px\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"#\" twitter=\"#\" youtube=\"#\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" type=\"flex\" hundred_percent=\"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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-02 08:18:41","2026-06-02 08:18:41","","880","https://dr.frex.digital/?p=905","0","revision","","0"),
("906","1","2026-06-02 08:32:01","2026-06-02 08:32:01","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"#\" twitter=\"#\" youtube=\"#\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" type=\"flex\" hundred_percent=\"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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-02 08:32:01","2026-06-02 08:32:01","","880","https://dr.frex.digital/?p=906","0","revision","","0"),
("913","1","2026-06-02 08:42:52","2026-06-02 08:42:52","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"#\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"#\" email=\"#\" phone=\"#\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-02 08:42:52","2026-06-02 08:42:52","","880","https://dr.frex.digital/?p=913","0","revision","","0"),
("914","1","2026-06-02 08:49:01","2026-06-02 08:49: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]<p>Naturally You, Beautifully Refined</p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]<p>Premium injectables &amp; skin treatments by Dr. Soheila — DHA &amp; MOH licensed, Umm Suqeim, Dubai.</p>[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"var(--awb-color3)\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-color6)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Dance Your Way: The Inspiring Journey of Our Studio and Our Students[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Avada Dance is a studio where you can learn different styles of dance, from hip hop to ballet, in a fun and supportive environment. Our instructors are experienced and friendly, and our studio is spacious and well-equipped.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]Try a free class[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Meet your instructors[/fusion_title][fusion_text animation_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_right=\"15%\"]\r\n<p>Fusce porttitor tortor donec bibendum diam nisl nunc.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all instructors[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"instructor\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 08:49:01","2026-06-02 08:49:01","","5","https://dr.frex.digital/?p=914","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("915","1","2026-06-02 08:57:12","2026-06-02 08:57: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Premium injectables &amp; skin treatments by Dr. Soheila — DHA &amp; MOH licensed, Umm Suqeim, Dubai.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"var(--awb-color3)\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Dance Your Way: The Inspiring Journey of Our Studio and Our Students[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Avada Dance is a studio where you can learn different styles of dance, from hip hop to ballet, in a fun and supportive environment. Our instructors are experienced and friendly, and our studio is spacious and well-equipped.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]Try a free class[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Meet your instructors[/fusion_title][fusion_text animation_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_right=\"15%\"]\r\n<p>Fusce porttitor tortor donec bibendum diam nisl nunc.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all instructors[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"instructor\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 08:57:12","2026-06-02 08:57:12","","5","https://dr.frex.digital/?p=915","0","revision","","0"),
("916","1","2026-06-02 09:39:24","2026-06-02 09:39: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Premium injectables &amp; skin treatments by Dr. Soheila — DHA &amp; MOH licensed, Umm Suqeim, Dubai.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Dance Your Way: The Inspiring Journey of Our Studio and Our Students[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Avada Dance is a studio where you can learn different styles of dance, from hip hop to ballet, in a fun and supportive environment. Our instructors are experienced and friendly, and our studio is spacious and well-equipped.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]Try a free class[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Meet your instructors[/fusion_title][fusion_text animation_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_right=\"15%\"]\r\n<p>Fusce porttitor tortor donec bibendum diam nisl nunc.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all instructors[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"instructor\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 09:39:24","2026-06-02 09:39:24","","5","https://dr.frex.digital/?p=916","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("917","1","2026-06-02 10:11:12","2026-06-02 10:11: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Premium injectables &amp; skin treatments by Dr. Soheila — DHA &amp; MOH licensed, Umm Suqeim, Dubai.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]<p>Meet Dr. Soheila</p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"35px\"]<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Meet your instructors[/fusion_title][fusion_text animation_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_right=\"15%\"]\r\n<p>Fusce porttitor tortor donec bibendum diam nisl nunc.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all instructors[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"instructor\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 10:11:12","2026-06-02 10:11:12","","5","https://dr.frex.digital/?p=917","0","revision","","0"),
("918","1","2026-06-02 10:30:44","2026-06-02 10:30: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Premium injectables &amp; skin treatments by Dr. Soheila — DHA &amp; MOH licensed, Umm Suqeim, Dubai.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]<blockquote><p>My goal is results that look like you refreshed, balanced and never overdone.</p></blockquote>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Meet your instructors[/fusion_title][fusion_text animation_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_right=\"15%\"]\r\n<p>Fusce porttitor tortor donec bibendum diam nisl nunc.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all instructors[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"instructor\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 10:30:44","2026-06-02 10:30:44","","5","https://dr.frex.digital/?p=918","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("919","1","2026-06-02 10:38:21","2026-06-02 10:38: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]<p>Our Signature Treatments</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]<blockquote><p>My goal is results that look like you refreshed, balanced and never overdone.</p></blockquote>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Meet your instructors[/fusion_title][fusion_text animation_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_right=\"15%\"]\r\n<p>Fusce porttitor tortor donec bibendum diam nisl nunc.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all instructors[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"instructor\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 10:38:21","2026-06-02 10:38:21","","5","https://dr.frex.digital/?p=919","0","revision","","0"),
("920","1","2026-06-02 10:45:14","2026-06-02 10:45: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" padding_bottom_small=\"90px\" padding_top_small=\"90px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG08.jpg\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"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)\" font_size=\"52px\"]Premium Dermal Fillers in Dubai[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"48px\"]Premium Dermal Fillers in Dubai[/fusion_title][fusion_text 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)\" font_size=\"22px\"]\r\n\r\nRestore youthful volume, refine your structural contours, and enhance facial symmetry with bespoke, natural-looking Hyaluronic Acid treatments.\r\n\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"18px\"]\r\n\r\nRestore youthful volume, refine your structural contours, and enhance facial symmetry with bespoke, natural-looking Hyaluronic Acid treatments.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nDermal Fillers\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"15px\" min_height=\"\" link=\"\"][fusion_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\nWith time, structural bone resorption, and the demanding environmental factors of Dubai, the face naturally loses its youthful volume, leading to hollow regions and pronounced shadowing. Premium Dermal Fillers offer an instant, sophisticated solution to replenish this lost volume, smooth out deep structural folds, and artistically redefine your features. At Dr. Soheila Eskandari’s clinic, filler injections are treated as an absolute art form. Every placement is meticulously mapped to enhance your unique facial anatomy, delivering a refreshed, elegant, and perfectly balanced profile without a single day of surgical recovery.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1378|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Lip-Filler-Natural-Russian-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSculpts and volumizes lips using advanced techniques for perfect harmony.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/lip-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1379|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Face-Lift-with-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRestores lost volume and lifts facial contours without any surgery.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/face-lift-with-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1380|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Cheek-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nEnhances cheekbone definition and restores youthful volume to the mid-face.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/cheek-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1381|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Temple-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSmooths temporal hollows to create a more balanced and youthful facial structure.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/temple-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1384|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Chin-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nElongates and defines the chin profile for enhanced facial symmetry.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/chin-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1382|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Jawline-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSculpts a sharp, defined jawline for a stronger and more attractive profile.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/jawline-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1383|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Face-Contouring-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nArtistically balances facial features to achieve a beautifully harmonized appearance.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/face-contouring/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1377|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Smile-Lines-Nasolabial-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSoftens deep creases around the mouth for a smoother, younger look.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/smile-lines-nasolabial/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1385|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Under-Eye-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nBrightens tired eyes and restores volume to hollow lower eyelids.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/under-eye-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1386|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Tear-Trough-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSmooths the transition under the eyes to eliminate dark shadows.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/tear-trough/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Filler Dissolving</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSafely breaks down unwanted dermal fillers to restore your natural look\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/filler-dissolving/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzVjNWM1YzsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMyk7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDsKICAgICAgICBtYXJnaW46IDMwcHggMDsKICAgICAgICBmb250LWZhbWlseTogJ1NlZ29lIFVJJywgUm9ib3RvLCBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmOwogICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOwogICAgICAgIHRleHQtYWxpZ246IGxlZnQ7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMHB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMS41cHg7CiAgICAgICAgcGFkZGluZy1ib3R0b206IDIwcHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlZmU1ZGM7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ciB7CiAgICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjNzIGVhc2U7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA3KTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICBwYWRkaW5nOiAyMHB4IDE1cHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgICAgICBmb250LXNpemU6IDE1cHg7CiAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgdGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICB3aWR0aDogMjUlOwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDAuNXB4OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgY29sb3I6ICNmZmY7CiAgICAgICAgZm9udC13ZWlnaHQ6IDQwMDsKICAgIH0KICAgIAogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICAgICAgcGFkZGluZzogMTVweCAxMHB4OwogICAgICAgICAgICBmb250LXNpemU6IDE0cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgICAgICB3aWR0aDogNDAlOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPkRlcm1hbCBGaWxsZXJzIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjE14oCTNDUgTWludXRlcyAoRGVwZW5kaW5nIG9uIHRoZSBjb21wbGV4aXR5IG9mIHRhcmdldGVkIGFyZWFzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+VGVjaG5pcXVlIFVzZWQ8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5QcmVjaXNpb24gTWljcm8tSW5qZWN0aW9ucyB2aWEgVWx0cmEtRmluZSBQcmVtaXVtIE5lZWRsZXMgb3IgTWljcm8tQ2FubnVsYXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkltbWVkaWF0ZSB2b2x1bWV0cmljIGxpZnQ7IEZpbmFsIG9wdGltYWwgc2V0dGxpbmcgYW5kIHJlZmluZW1lbnQgd2l0aGluIDfigJMxNCBkYXlzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj42IHRvIDE4IE1vbnRocyAoVmFyaWVzIGJ5IHByb2R1Y3QgZGVuc2l0eSwgdHJlYXRlZCBhcmVhLCBhbmQgaW5kaXZpZHVhbCBtZXRhYm9saXNtKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+RG93bnRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5NaW5pbWFsIChNaWxkIGxvY2FsaXplZCBzd2VsbGluZyBvciBzdWJ0bGUgdGVtcG9yYXJ5IGJydWlzaW5nIHRoYXQgZmFkZXMgcXVpY2tseSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGJvZHk+CiAgICA8L3RhYmxlPgo8L2Rpdj4=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"Key Benefits of Our Dermal Fillers Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Instant Volumetric Restoration\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nImmediately replenishes hollow areas, smoothing deep creases like the nasolabial smile lines.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Bespoke Facial Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nArtistically sculpts and shapes key structural points, including custom jawline definition, chin elongation, and cheekbone enhancement.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Lip Refinement\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDelivers beautifully proportioned, tailored lips utilizing both soft natural hydration and structured Russian lip techniques.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Tear Trough Rejuvenation\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nBrightens tired eyes by seamlessly filling under-eye hollows and eliminating dark structural shadows.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Durable Structural Support\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nProvides a high-density matrix that lifts sagging tissues and holds its shape precisely, ensuring a stable, long-lasting contour that integrates seamlessly with your natural facial movements.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color7)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Will dermal fillers make my face look overfilled or unnatural?\" open=\"no\"]\r\n\r\nNever. Dr. Soheila strictly operates on a customized \"less is more\" philosophy. The objective is to gently restore lost skeletal support and shadows rather than over-inflating tissues, guaranteeing an elegantly undetectable enhancement.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Is the dermal filler treatment painful?\" open=\"no\"]\r\n\r\nYour absolute comfort is our luxury standard. We apply a premium topical anesthetic cream prior to the procedure, and we exclusively utilize premium global filler brands that contain built-in lidocaine to make the treatment virtually painless.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"What is the difference between a dermal filler and a wrinkle-relaxing injection?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"16,2,1,0,1,0\"><span class=\"citation-62\">Dermal fillers use Hyaluronic Acid to add volume, fill deep folds, and sculpt areas like cheeks or lips</span></span><span data-path-to-node=\"16,2,1,0,1,2\">. </span><span data-path-to-node=\"16,2,1,0,1,4\"><span class=\"citation-61\">Wrinkle-relaxers (Botox) work by temporarily relaxing the dynamic muscles that cause expression lines on the upper face</span></span><span data-path-to-node=\"16,2,1,0,1,6\">.</span>\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dermal Fillers","","publish","closed","closed","","dermal-fillers","","","2026-06-23 22:16:01","2026-06-23 22:16:01","","922","https://dr.frex.digital/?page_id=920","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("921","1","2026-06-02 10:45:14","2026-06-02 10:45:14","","Lip Filler","","inherit","closed","closed","","920-revision-v1","","","2026-06-02 10:45:14","2026-06-02 10:45:14","","920","https://dr.frex.digital/?p=921","0","revision","","0"),
("922","1","2026-06-02 10:58:29","2026-06-02 10:58:29","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10-Our-Treatment-Services-copy.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" background_position_small=\"center center\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG12-Our-Treatment-Services-copy-copy.jpg\" padding_top_small=\"90px\" padding_bottom_small=\"90px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"8\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color7)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.63)\"]\r\n<p>Our Treatment Services</p>\r\n[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"8\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"45px\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.7)\" content_align_small=\"center\"]\r\n<p>Our Treatment Services</p>\r\n[/fusion_title][fusion_text 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-color7)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"18px\" content_alignment_small=\"center\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1370|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" link=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/forehead-and-crows-feet/\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1371|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Nefertiti-Neck-Lift-Lower-Face-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/nefertiti-neck-lift-and-lower-face/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1372|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Lip-Flip-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/lip-flip/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1374|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Underarm-Hyperhidrosis-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/underarm-hyperhidrosis/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1373|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hands-Feet-Hyperhidrosis-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/hands-and-feet-hyperhidrosis/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1375|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Botox-for-Muscle-Spasm-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/botox-for-muscle-spasm/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1376|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Trap-Barbie-Botox-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/trap-barbie-botox/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"fillers\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/dermal-fillers/\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"fillers\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/dermal-fillers/\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"var(--awb-color4)\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1378|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Lip-Filler-Natural-Russian-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/lip-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1379|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Face-Lift-with-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/face-lift-with-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1380|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Cheek-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/cheek-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1381|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Temple-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/temple-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1384|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Chin-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/chin-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1382|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Jawline-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/jawline-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1383|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Face-Contouring-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/face-contouring/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1377|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Smile-Lines-Nasolabial-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/smile-lines-nasolabial/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1385|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Under-Eye-Filler-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/under-eye-filler/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1386|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Tear-Trough-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/tear-trough/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1829|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Filler-Dissolving-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Filler Dissolving</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Safely breaks down unwanted dermal fillers to restore your natural look</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/dermal-fillers/filler-dissolving/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/skin-boosters/\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/skin-boosters/\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1387|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Profhilo-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/profhilo/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1388|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Jalupro-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/jalupro/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1389|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Sunekos-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/sunekos/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1390|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/NCTF-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/nctf/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"pdrn\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/pdrn-and-salmon-dna/\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"pdrn\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/pdrn-and-salmon-dna/\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"var(--awb-color4)\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1392|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Rejuran-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/pdrn-and-salmon-dna/rejuran/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1391|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Plinest-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/pdrn-and-salmon-dna/plinest/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1393|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/TWAC-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/pdrn-and-salmon-dna/twac/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/biostimulators/\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/biostimulators/\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1394|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Sculptra-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/biostimulators/sculptra/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1395|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Radiesse-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/biostimulators/radiesse/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_2\" 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=\"2804|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Aesthefill-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Aesthefill</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually restores volume and stimulates natural collagen production for long-lasting rejuvenation.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/treatments/biostimulators/aesthefill/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_2\" 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=\"2805|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Lanluma-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lanluma</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores body volume and stimulates long-term collagen production for natural-looking results.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/treatments/biostimulators/lanluma/\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"microneedling\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/microneedling/\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"microneedling\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/microneedling/\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"var(--awb-color4)\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1397|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Derma_Pen_Skin_Rejuvenation_·_Scars_·_Acne_Scars_200x200_copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/microneedling/derma-pen/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1396|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Exosome-Microneedling-Face-·-Hair-Loss-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/microneedling/exosome-microneedling/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1398|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Growth-Factor-Microneedling-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/microneedling/growth-factor-microneedling/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"prp\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/prp/\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"prp\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/prp/\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1400|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hair-Loss-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/prp/hair-loss/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1399|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Face-Rejuvenation-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/prp/face-rejuvenation/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1839|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Acne-Scar-Treatment-200x200-Copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Acne Scar Treatment</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted clinical therapies that dramatically smooth and repair deep acne scars.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/prp/acne-scar-treatment/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"iv\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"var(--awb-color4)\" menu_anchor=\"iv\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"var(--awb-color4)\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1401|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/High-Dose-Vitamin-C-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/iv-therapy-and-wellness/high-dose-vitamin-c/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1402|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Glutathione-IV-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/iv-therapy-and-wellness/glutathione-iv/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1403|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/NAD-IV-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/iv-therapy-and-wellness/nad-iv/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1404|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Vitamin-Injections-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/iv-therapy-and-wellness/vitamin-injections/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1405|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Brightening-IV-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/iv-therapy-and-wellness/brightening-iv/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" type_small=\"1_2\" 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=\"1838|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Stem-Cell-IV-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Stem Cell IV</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced cellular therapy that deeply rejuvenates and repairs your entire body.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/iv-therapy-and-wellness/stem-cell-iv/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/mesotherapy/\"]Mesotherapy[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/mesotherapy/\"]Mesotherapy[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_2\" 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=\"1834|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hair-Loss2-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Delivers vital nutrients to hair follicles to stimulate growth and density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/mesotherapy/hair-loss/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"false\" type_small=\"1_2\" 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=\"1835|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/skin-Rejuvenation-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Skin Rejuvenation</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Infuses essential vitamins and amino acids to deeply renew skin vitality.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/mesotherapy/skin-rejuvenation/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"false\" type_small=\"1_2\" 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=\"1836|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Glowing-Skin-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glowing Skin</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Boosts deep cellular hydration and radiance for a luminous, healthy complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/mesotherapy/glowing-skin/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" first=\"false\" type_small=\"1_2\" 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=\"1837|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Pigmentation-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Pigmentation</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targets dark spots and uneven tone to reveal brighter, clearer skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/mesotherapy/pigmentation/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1832|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Body-fat-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Fat Dissolving</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Safely breaks down localized fat deposits to sculpt a defined silhouette.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/mesotherapy/fat-dissolving/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\" background_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/fat-dissolving/\"]Fat Dissolving[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\" background_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/fat-dissolving/\"]Fat Dissolving[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\" background_color=\"var(--awb-color4)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"true\" type_small=\"1_2\" 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=\"1831|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Cellulite-Treatment-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cellulite Treatment</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targets stubborn cellulite to noticeably smooth and firm the skin surface.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/fat-dissolving/cellulite-treatment/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"false\" type_small=\"1_2\" 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=\"1832|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Body-fat-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Body fat</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Eliminates resistant fat pockets to sculpt a more toned silhouette</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/fat-dissolving/body-fat/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1833|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Double-Chin-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Double Chin</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Reduces submental fat to sculpt a sharp and beautifully defined jawline</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/fat-dissolving/double-chin/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/subcision/\"]Subcision[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/subcision/\"]Subcision[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1839|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Acne-Scar-Treatment-200x200-Copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Acne Scar Treatment</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Releases fibrous bands beneath depressed scars to restore smooth skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/subcision/acne-scar-treatment/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\" background_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/skin-lesion-removal/\"]Skin Lesion Removal[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"center\" 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\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" padding_top_small=\"40px\" padding_bottom_small=\"30px\" background_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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"30px\" sep_color=\"var(--awb-color5)\" link_url=\"https://dr.frex.digital/treatments/skin-lesion-removal/\"]Skin Lesion Removal[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\" padding_bottom_small=\"0px\" background_color=\"var(--awb-color4)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1830|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Skin-Tag-Mole-Removal-200x200-1.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Skin Tag &amp; Mole Removal</strong></p>\r\n[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Safely removes unwanted skin tags and moles for a flawless finish.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-lesion-removal/skin-tag-and-mole-removal/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1436\"]","Treatments","","publish","closed","closed","","treatments","","","2026-07-02 15:31:00","2026-07-02 15:31:00","","0","https://dr.frex.digital/?page_id=922","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("923","1","2026-06-02 10:58:29","2026-06-02 10:58:29","","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-02 10:58:29","2026-06-02 10:58:29","","922","https://dr.frex.digital/?p=923","0","revision","","0"),
("924","1","2026-06-02 11:02:21","2026-06-02 11:02:21","a:11:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:11:\"page_parent\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"922\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;s:13:\"display_title\";s:0:\"\";s:15:\"allow_ai_access\";b:0;s:14:\"ai_description\";s:0:\"\";}","Treatments","treatments","publish","closed","closed","","group_6a1eb7c53f5da","","","2026-06-02 11:22:22","2026-06-02 11:22:22","","0","https://dr.frex.digital/?post_type=acf-field-group&#038;p=924","0","acf-field-group","","0"),
("926","1","2026-06-02 11:02:51","2026-06-02 11:02:51","","Lip Filler","","inherit","closed","closed","","920-revision-v1","","","2026-06-02 11:02:51","2026-06-02 11:02:51","","920","https://dr.frex.digital/?p=926","0","revision","","0"),
("927","1","2026-06-02 11:16:03","2026-06-02 11:16:03","a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:4:\"show\";s:4:\"show\";s:4:\"hide\";s:4:\"hide\";}s:13:\"default_value\";s:0:\"\";s:13:\"return_format\";s:5:\"value\";s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:17:\"allow_in_bindings\";i:0;s:6:\"layout\";s:8:\"vertical\";s:17:\"save_other_choice\";i:0;}","Post Cart","post_cart","publish","closed","closed","","field_6a1eb9ec09978","","","2026-06-02 11:21:35","2026-06-02 11:21:35","","924","https://dr.frex.digital/?post_type=acf-field&#038;p=927","0","acf-field","","0"),
("929","1","2026-06-02 11:21:35","2026-06-02 11:21:35","a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Excerpt","excerpt","publish","closed","closed","","field_6a1ebcb11e905","","","2026-06-02 11:21:35","2026-06-02 11:21:35","","924","https://dr.frex.digital/?post_type=acf-field&p=929","1","acf-field","","0"),
("930","1","2026-06-02 11:22:22","2026-06-02 11:22:22","a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Age appropriate","age_appropriate","publish","closed","closed","","field_6a1ebcd74eee9","","","2026-06-02 11:22:22","2026-06-02 11:22:22","","924","https://dr.frex.digital/?post_type=acf-field&p=930","2","acf-field","","0"),
("932","1","2026-06-02 11:27:02","2026-06-02 11:27:02","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-user\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-02 11:27:02","2026-06-02 11:27:02","","289","https://dr.frex.digital/?p=932","0","revision","","0"),
("933","1","2026-06-02 11:27:13","2026-06-02 11:27: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Meet your instructors[/fusion_title][fusion_text animation_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_right=\"15%\"]\r\n<p>Fusce porttitor tortor donec bibendum diam nisl nunc.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all instructors[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"instructor\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 11:27:13","2026-06-02 11:27:13","","5","https://dr.frex.digital/?p=933","0","revision","","0"),
("934","1","2026-06-02 11:28:54","2026-06-02 11:28:54","","Lip Filler","","inherit","closed","closed","","920-revision-v1","","","2026-06-02 11:28:54","2026-06-02 11:28:54","","920","https://dr.frex.digital/?p=934","0","revision","","0"),
("935","1","2026-06-02 11:29:13","2026-06-02 11:29:13","","Dermal Fillers","","inherit","closed","closed","","920-revision-v1","","","2026-06-02 11:29:13","2026-06-02 11:29:13","","920","https://dr.frex.digital/?p=935","0","revision","","0"),
("936","1","2026-06-02 11:30:42","2026-06-02 11:30:42","","Dermal Fillers","","inherit","open","closed","","dermal-fillers-2","","","2026-06-02 11:30:42","2026-06-02 11:30:42","","920","https://dr.frex.digital/wp-content/uploads/2026/06/Dermal-Fillers.jpg","0","attachment","image/jpeg","0"),
("937","1","2026-06-02 11:31:33","2026-06-02 11:31:33","","Dermal Fillers","","inherit","closed","closed","","920-revision-v1","","","2026-06-02 11:31:33","2026-06-02 11:31:33","","920","https://dr.frex.digital/?p=937","0","revision","","0"),
("938","1","2026-06-02 11:37:19","2026-06-02 11:37:19","","Dermal Fillers","","inherit","open","closed","","dermal-fillers02","","","2026-06-02 11:37:23","2026-06-02 11:37:23","","920","https://dr.frex.digital/wp-content/uploads/2026/06/Dermal-Fillers02.jpg","0","attachment","image/jpeg","0"),
("939","1","2026-06-02 11:42:18","2026-06-02 11:42:18","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" padding_top_small=\"90px\" padding_bottom_small=\"90px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG08.jpg\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"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)\" font_size=\"52px\"]\r\n\r\nPremium Botox &amp; Anti-Wrinkle Treatments in Dubai\r\n\r\n[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"48px\"]\r\n\r\nPremium Botox &amp; Anti-Wrinkle Treatments in Dubai\r\n\r\n[/fusion_title][fusion_text 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)\" font_size=\"22px\"]\r\n\r\nSoften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.\r\n\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"18px\"]\r\n\r\nSoften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nBotox &amp; Anti-Wrinkle\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" margin_bottom_small=\"15px\" min_height=\"\" link=\"\" first=\"true\"][fusion_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\n<span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila Eskandari’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span>\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1370|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSmooths expression lines to create a refreshed and youthful upper face.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/forehead-and-crows-feet/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1371|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Nefertiti-Neck-Lift-Lower-Face-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nDefines the jawline and slims the neck for an elegant profile.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/nefertiti-neck-lift-and-lower-face/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1372|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Lip-Flip-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSubtly enhances the upper lip border for a fuller, natural smile.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/lip-flip/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1374|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Underarm-Hyperhidrosis-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nEffectively reduces excessive sweating to ensure long-lasting freshness and comfort.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/underarm-hyperhidrosis/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1373|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hands-Feet-Hyperhidrosis-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nTargeted treatment to control excessive sweating and restore daily confidence.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/hands-and-feet-hyperhidrosis/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1375|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Botox-for-Muscle-Spasm-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRelieves painful muscle tension and spasms for improved comfort and mobility.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/botox-for-muscle-spasm/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1376|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Trap-Barbie-Botox-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSlims the shoulder contour to create a beautifully elongated neck line.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/botox-anti-wrinkle/trap-barbie-botox/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzVjNWM1YzsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMyk7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDsKICAgICAgICBtYXJnaW46IDMwcHggMDsKICAgICAgICBmb250LWZhbWlseTogJ1NlZ29lIFVJJywgUm9ib3RvLCBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmOwogICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOwogICAgICAgIHRleHQtYWxpZ246IGxlZnQ7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMHB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMS41cHg7CiAgICAgICAgcGFkZGluZy1ib3R0b206IDIwcHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlZmU1ZGM7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ciB7CiAgICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjNzIGVhc2U7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA3KTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICBwYWRkaW5nOiAyMHB4IDE1cHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgICAgICBmb250LXNpemU6IDE1cHg7CiAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgdGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICB3aWR0aDogMjUlOwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDAuNXB4OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgY29sb3I6ICNmZmY7CiAgICAgICAgZm9udC13ZWlnaHQ6IDQwMDsKICAgIH0KICAgIAogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICAgICAgcGFkZGluZzogMTVweCAxMHB4OwogICAgICAgICAgICBmb250LXNpemU6IDE0cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgICAgICB3aWR0aDogNDAlOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPlRyZWF0bWVudCBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4xMOKAkzIwIE1pbnV0ZXMgKERlcGVuZGluZyBvbiB0YXJnZXRlZCBhcmVhcyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlRlY2huaXF1ZSBVc2VkPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TWljcm8tSW5qZWN0aW9ucyB3aXRoIFVsdHJhLUZpbmUgUHJlbWl1bSBOZWVkbGVzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5SZXN1bHRzIFZpc2libGU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5Jbml0aWFsIHNtb290aGluZyBpbiAz4oCTNyBkYXlzOyBGdWxsIG9wdGltYWwgZWZmZWN0cyBhdCAxNCBkYXlzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4zIHRvIDYgTW9udGhzIChWYXJpZXMgYnkgaW5kaXZpZHVhbCBtZXRhYm9saXNtICYgbGlmZXN0eWxlKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+RG93bnRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5Ob25lIChNaW5pbWFsIGxvY2FsaXplZCByZWRuZXNzIHRoYXQgZmFkZXMgd2l0aGluIGFuIGhvdXIpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3Rib2R5PgogICAgPC90YWJsZT4KPC9kaXY+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\" padding_bottom_small=\"0px\" padding_top_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nGently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDelivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nProvides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nActs as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]\r\n\r\nNot at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]\r\n\r\nOn average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]\r\n\r\nWe advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","publish","closed","closed","","botox-anti-wrinkle","","","2026-06-23 22:15:59","2026-06-23 22:15:59","","922","https://dr.frex.digital/?page_id=939","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("940","1","2026-06-02 11:42:11","2026-06-02 11:42:11","","Botox & Anti-Wrinkle","","inherit","open","closed","","botox-anti-wrinkle-2","","","2026-06-02 11:42:11","2026-06-02 11:42:11","","939","https://dr.frex.digital/wp-content/uploads/2026/06/Botox-Anti-Wrinkle.jpg","0","attachment","image/jpeg","0"),
("941","1","2026-06-02 11:42:18","2026-06-02 11:42:18","","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-02 11:42:18","2026-06-02 11:42:18","","939","https://dr.frex.digital/?p=941","0","revision","","0"),
("942","1","2026-06-02 11:43:12","2026-06-02 11:43:12","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-user\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-02 11:43:12","2026-06-02 11:43:12","","289","https://dr.frex.digital/?p=942","0","revision","","0"),
("943","1","2026-06-02 11:47:13","2026-06-02 11:47: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" padding_top_small=\"90px\" padding_bottom_small=\"90px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG08.jpg\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"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)\" font_size=\"52px\"]Premium Biostimulator Treatments in Dubai[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"48px\"]Premium Biostimulator Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"18px\"]\r\n<p>Rebuild your skin’s structural foundation from within. Activate progressive collagen synthesis to gradually restore youthful volume, improve firmness, and achieve long-lasting, elegant rejuvenation.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"15px\" min_height=\"\" link=\"\"][fusion_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>Traditional treatments often provide temporary cosmetic camouflage, but advanced Biostimulators work by fundamentally changing how your skin ages. Utilizing premium biostimulatory components like Poly-L-Lactic Acid (PLLA) and Calcium Hydroxylapatite (CaHA), these treatments enter the deep dermal layers to act as a scaffold, triggering your body\'s fibroblasts to produce a flood of new, natural collagen and elastin. At Dr. Soheila Eskandari’s clinic, we do not simply inject volume; we masterfully guide your tissues to regenerate themselves. Over the weeks following your session, your skin undergoes a profound structural remodeling, restoring its youthful thickness, architectural bounce, and natural contours from the inside out.</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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1394|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Sculptra-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/biostimulators/sculptra/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1395|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Radiesse-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/biostimulators/radiesse/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2804|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Aesthefill-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Aesthefill</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually restores volume and stimulates natural collagen production for long-lasting rejuvenation.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/treatments/biostimulators/aesthefill/\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2805|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Lanluma-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lanluma</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores body volume and stimulates long-term collagen production for natural-looking results.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/treatments/biostimulators/lanluma/\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzVjNWM1YzsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMyk7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDsKICAgICAgICBtYXJnaW46IDMwcHggMDsKICAgICAgICBmb250LWZhbWlseTogJ1NlZ29lIFVJJywgUm9ib3RvLCBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmOwogICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOwogICAgICAgIHRleHQtYWxpZ246IGxlZnQ7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMHB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMS41cHg7CiAgICAgICAgcGFkZGluZy1ib3R0b206IDIwcHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlZmU1ZGM7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ciB7CiAgICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjNzIGVhc2U7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA3KTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICBwYWRkaW5nOiAyMHB4IDE1cHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgICAgICBmb250LXNpemU6IDE1cHg7CiAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgdGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICB3aWR0aDogMjUlOwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDAuNXB4OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgY29sb3I6ICNmZmY7CiAgICAgICAgZm9udC13ZWlnaHQ6IDQwMDsKICAgIH0KICAgIAogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICAgICAgcGFkZGluZzogMTVweCAxMHB4OwogICAgICAgICAgICBmb250LXNpemU6IDE0cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgICAgICB3aWR0aDogNDAlOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPkJpb3N0aW11bGF0b3JzIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjMw4oCTNDUgTWludXRlcyAoSW5jbHVkZXMgcHJlY2lzZSBkZXJtYWwgbWFya2luZyBhbmQgbWFwcGluZyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByaW1hcnkgTWVjaGFuaXNtPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TmVvY29sbGFnZW5lc2lzIGluZHVjdGlvbiB2aWEgc3RydWN0dXJhbCBQTExBIG9yIENhSEEgbWljcm8tcGFydGljbGVzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5SZXN1bHRzIFZpc2libGU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5HcmFkdWFsIGltcHJvdmVtZW50cyBiZWdpbiBhdCA0IHdlZWtzOyBQZWFrIHN0cnVjdHVyYWwgcmVmaW5lbWVudCBzdGFiaWxpemVzIGF0IDMgbW9udGhzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5VcCB0byAyNCBNb250aHMgb3IgbG9uZ2VyIChWYXJpZXMgYmFzZWQgb24gY2VsbHVsYXIgcmVzcG9uc2UgYW5kIGluaXRpYWwgc2tpbiBsYXhpdHkpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pbmltYWwgKE1pbGQgdGVtcG9yYXJ5IHN3ZWxsaW5nIG9yIHN1YnRsZSB0ZW5kZXJuZXNzIHRoYXQgcmVzb2x2ZXMgd2l0aGluIDQ4IGhvdXJzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"Key Benefits of Our Biostimulators Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Endogenous Collagen Synthesis\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Directly stimulates the body\'s natural cellular mechanisms to produce structural Type I and Type III collagen.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Gradual, Totally Discrete Volumization\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Volume develops progressively over 4 to 8 weeks, ensuring an elegant, organic transformation without sudden structural changes.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Dermal Thickening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Rebuilds the depleted extracellular matrix, restoring thickness, elasticity, and bounce to thin, aging skin.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Long-Term Structural Lifting\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Tightens and firms areas prone to laxity, such as hollow cheeks, the jawline silhouette, and the lower face.</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color7)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"How do biostimulators differ from traditional dermal fillers?\" open=\"no\"]\r\n<p>Dermal fillers are composed of Hyaluronic Acid gel that provides immediate, mechanical volume to fill a specific crease or line. Biostimulators do not rely on an artificial gel; instead, they deposit micro-particles that act as a biological trigger, forcing your own living cells to grow fresh collagen over time to naturally thicken and lift the skin.</p>\r\n[/fusion_toggle][fusion_toggle title=\"When will I see the actual results of my biostimulator treatment?\" open=\"no\"]\r\n<p>Because this therapy relies on your body’s natural cellular growth cycles, results are not instantaneous. You will notice a progressive improvement in skin firmness, health, and subtle volume starting around week 4, with the most profound, natural structural reveal peaking at 3 months.</p>\r\n[/fusion_toggle][fusion_toggle title=\"How many treatment sessions are typically recommended?\" open=\"no\"]\r\n<p>While individual skin laxity varies, most clients achieve an optimal, high-density collagen foundation through a tailored series of 2 to 3 sessions, spaced approximately 4 to 6 weeks apart.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Biostimulators","","publish","closed","closed","","biostimulators","","","2026-07-02 15:31:24","2026-07-02 15:31:24","","922","https://dr.frex.digital/?page_id=943","0","page","","0"),
("944","1","2026-06-02 11:44:58","2026-06-02 11:44:58","","Dermal Fillers","","inherit","closed","closed","","920-revision-v1","","","2026-06-02 11:44:58","2026-06-02 11:44:58","","920","https://dr.frex.digital/?p=944","0","revision","","0"),
("945","1","2026-06-02 11:47:07","2026-06-02 11:47:07","","Biostimulators (Sculptra)","","inherit","open","closed","","biostimulators-sculptra-2","","","2026-06-02 11:47:07","2026-06-02 11:47:07","","943","https://dr.frex.digital/wp-content/uploads/2026/06/Biostimulators-Sculptra.jpg","0","attachment","image/jpeg","0"),
("946","1","2026-06-02 11:47:13","2026-06-02 11:47:13","","Biostimulators (Sculptra)","","inherit","closed","closed","","943-revision-v1","","","2026-06-02 11:47:13","2026-06-02 11:47:13","","943","https://dr.frex.digital/?p=946","0","revision","","0"),
("947","1","2026-06-02 12:07:21","2026-06-02 12:07:21","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-02 12:07:21","2026-06-02 12:07:21","","289","https://dr.frex.digital/?p=947","0","revision","","0"),
("948","1","2026-06-02 12:09:58","2026-06-02 12:09: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=\"270\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_color=\"#ffffff\" 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\" padding_top=\"80px\" padding_bottom=\"80px\" admin_label=\"Hero Section\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG11-Our-Treatment-Services-copy-2.jpg\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG17.jpg\"][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\" margin_bottom=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" iconcolor=\"var(--awb-custom_color_1)\" circle=\"no\" textcolor=\"var(--awb-color7)\" icon=\"fusion-prefix-hosting-template-check-box\" margin_bottom=\"10px\"][fusion_li_item]\r\n<p data-fusion-font=\"true\" style=\"font-size: 13px; line-height: 27px; letter-spacing: -0.015em;\">TARGETED SOLUTIONS</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"10\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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-color7)\" fusion_font_variant_title_font=\"600\" text_transform=\"capitalize\" margin_top=\"0px\" margin_bottom=\"30px\" font_size=\"48px\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.7)\"]\r\n<p>Discover Your Path to Radiance: Find Treatments by Your Concern</p>\r\n[/fusion_title][fusion_text 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-color7)\" fusion_font_variant_text_font=\"400\" font_size=\"20px\" text_transform=\"var(--awb-typography2-text-transform)\"]\r\n<p>Every skin tells a unique story. Select your primary aesthetic concern below to explore bespoke clinical treatments designed by Dr. Soheila Eskandari to restore, rejuvenate, and refine your natural beauty.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_top=\"0px\" admin_label=\"Hosting Features\" background_color=\"#ffffff\" padding_bottom=\"30px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" 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=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiZG93biIsInRyYW5zaXRpb25fc3BlZWQiOiIiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IjQiLCJtYXhfc2NhbGUiOiIyIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiNjAiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6ImJvdHRvbSIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9LHsidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoidHJhbnNpdGlvbiIsInNjcm9sbF9kaXJlY3Rpb24iOiJyaWdodCIsInRyYW5zaXRpb25fc3BlZWQiOiIyLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IjQuMCIsIm1heF9zY2FsZSI6IjIuMCIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IjQwIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiYm90dG9tIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6ImNlbnRlciIsImVuZF92aWV3cG9ydCI6ImNlbnRlciIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" 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\" first=\"false\" margin_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_text_font=\"300\" font_size=\"13px\" text_transform=\"var(--awb-typography4-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"10px\" letter_spacing=\"-0.015em\"]\r\n<p>YOUR UNIQUE JOURNEY</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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=\"600\" fusion_font_family_title_font=\"IBM Plex Sans\" font_size=\"36px\" line_height=\"1.4\" letter_spacing=\"-0.015em\" text_transform=\"capitalize\" text_color=\"#100033\" margin_top=\"0px\"]<p>By Concerns</p>[/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=\"-80\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"-80\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" 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=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiZG93biIsInRyYW5zaXRpb25fc3BlZWQiOiIiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiZG93biIsImluaXRpYWxfc2NhbGUiOiIyIiwibWF4X3NjYWxlIjoiMiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IjYwIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiYm90dG9tIiwic3RhcnRfdmlld3BvcnQiOiJib3R0b20iLCJlbmRfZWxlbWVudCI6ImNlbnRlciIsImVuZF92aWV3cG9ydCI6ImNlbnRlciIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifSx7InR5cGUiOiJzY3JvbGwiLCJzY3JvbGxfdHlwZSI6InJvdGF0ZSIsInNjcm9sbF9kaXJlY3Rpb24iOiJkb3duIiwidHJhbnNpdGlvbl9zcGVlZCI6IjIuMCIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMi4wIiwibWF4X3NjYWxlIjoiMi4wIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiNDAiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJ0b3AiLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" margin_bottom=\"20px\" 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\" size=\"180\" circle=\"no\" iconcolor=\"rgba(238,237,233,0.69)\" iconcolor_hover=\"#f2f2f2\" /][/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_flip_boxes columns=\"3\" front_title_size=\"2\" back_title_size=\"3\" circle=\"yes\" icon_spin=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" equal_heights=\"yes\" back_title_line_height=\"1.5\" front_title_font_size=\"30px\" back_title_font_size=\"35px\"][fusion_flip_box title_front=\"Hair Loss\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Hair Loss\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Hair_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(PRP, Mesotherapy)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/hair-loss/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button][/fusion_flip_box][fusion_flip_box title_front=\"Forehead Wrinkles\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Forehead Wrinkles\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Forehead_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Botox)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/forehead-wrinkles/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Crow\'s Feet\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Crow\'s Feet\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/CrowsFeet_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Botox)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/crows-feet/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Hyperpigmentation &amp; Melasma\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Hyperpigmentation &amp; Melasma\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Pigmentation_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Mesotherapy)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/hyperpigmentation-and-melasma/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Skin Tags &amp; Moles\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Skin Tags &amp; Moles\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/SkinTag_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Skin Lesion Removal)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/skin-tags-and-moles/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Double Chin\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Double Chin\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Doublechin_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Fat Dissolving)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/double-chin/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Bruxism &amp; Jawline Slimming\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Bruxism &amp; Jawline Slimming\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Jawline_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Masseter Botox)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/bruxism-and-jawline-slimming/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Sad mouth\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Sad mouth\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Sad_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Botox)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/sad-mouth/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Neck Lines &amp; Wrinkles\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Neck Lines &amp; Wrinkles\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Neck_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Botox, Skin Boosters)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/neck-lines-and-wrinkles/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][fusion_flip_box title_front=\"Hyperhidrosis / Excessive Sweating\" animation_direction=\"left\" animation_speed=\"0.1\" title_back=\"Hyperhidrosis / Excessive Sweating\" background_image_front=\"https://dr.frex.digital/wp-content/uploads/2026/06/Sweat_image-copy.jpg\" title_back_color=\"var(--awb-color7)\" text_back_color=\"var(--awb-color7)\" border_radius=\"12px\" title_front_color=\"var(--awb-color1)\"]\r\n<p style=\"text-align: center;\">(Botox)</p>\r\n<p style=\"text-align: center;\">[fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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\" button_gradient_top_color=\"var(--awb-color7)\" button_gradient_bottom_color=\"var(--awb-color7)\" accent_color=\"var(--awb-color1)\" size=\"large\" border_color=\"var(--awb-color7)\" link=\"https://dr.frex.digital/by-concerns/hyperhidrosis-excessive-sweating/\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color7)\" border_hover_color=\"var(--awb-color1)\"]More Information[/fusion_button]\r\n[/fusion_flip_box][/fusion_flip_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1436\"]","By Concerns","","publish","closed","closed","","by-concerns","","","2026-06-23 23:06:21","2026-06-23 23:06:21","","0","https://dr.frex.digital/?page_id=948","0","page","","0"),
("949","1","2026-06-02 12:09:58","2026-06-02 12:09:58","","By Concerns","","inherit","closed","closed","","948-revision-v1","","","2026-06-02 12:09:58","2026-06-02 12:09:58","","948","https://dr.frex.digital/?p=949","0","revision","","0"),
("952","1","2026-06-02 12:30:48","2026-06-02 12:30: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_bg_style=\"default\" pattern_bg_opacity=\"23\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"inverted\" mask_bg_opacity=\"100\" mask_bg_transform=\"flip-Horizontal\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" background_color=\"var(--awb-color4)\" mask_bg_color=\"var(--awb-color3)\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2026/06/pattern-3.svg\" pattern_bg_size=\"10%\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"bounce\" first=\"true\" margin_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"8\" 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\" font_size=\"40px\" margin_bottom=\"20px\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.62)\"]Reawaken Your Follicles: Advanced Hair Loss 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\" font_size=\"18px\" margin_bottom=\"30px\" margin_bottom_small=\"20px\"]\r\n<p>Combat hair thinning, block hair-loss hormones, and restore your natural hair density from the roots with bespoke autologous PRP and targeted Mesotherapy protocols.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#form\" alignment=\"left\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\"]Schedule Your Hair Assessment[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"73\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" borderradius=\"16px\" image_id=\"2409|full\" aspect_ratio_position=\"44% 33%\"]https://dr.frex.digital/wp-content/uploads/2026/06/Prp-Platelet-rich-plasmanatural-growth-factors-found-in-our-blood-cells-to-help-regrowing-hair-.jpg[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"20%\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.0\" animation_delay=\"0\" border_sizes_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" background_color=\"rgba(224,211,192,0.18)\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"30px\" margin_bottom=\"20px\"]\r\n<p>The Science of Follicular Restoration</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 id=\"p-rc_0da22d863ef6fcef-25\" data-path-to-node=\"9\"><span data-path-to-node=\"9,0\">Hair loss and thinning are often accelerated by Dubai\'s harsh environmental factors, hard water, and daily stress. </span><span data-path-to-node=\"9,2\"><span class=\"citation-20\">To combat this, traditional topical serums simply cannot reach the deep dermal roots where structural issues begin</span></span><span data-path-to-node=\"9,4\">.</span></p>\r\n<p id=\"p-rc_0da22d863ef6fcef-26\" data-path-to-node=\"10\"><span data-path-to-node=\"10,0\">Our clinical hair restoration protocols utilize the ultimate biological triggers. </span><span data-path-to-node=\"10,2\"><span class=\"citation-19\">Premium Platelet-Rich Plasma (PRP) harnesses the concentrated growth factors isolated directly from your own blood to naturally jumpstart cellular repair and reverse hair thinning</span></span><span data-path-to-node=\"10,4\">. </span><span data-path-to-node=\"10,6\"><span class=\"citation-18\">Concurrently, Advanced Mesotherapy delivers highly precise, pharmaceutical-grade cocktails—rich in essential vitamins and hormone-blockers—directly into the mesoderm</span></span><span data-path-to-node=\"10,8\">. </span><span data-path-to-node=\"10,10\"><span class=\"citation-17\">By masterfully combining these therapies, Dr. Soheila revitalizes weak hair roots, rapidly prolongs the active growth phase, and restores your hair’s strength and density from within</span></span><span data-path-to-node=\"10,12\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" 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\" padding_bottom=\"80px\" animation_type=\"zoom\" padding_bottom_small=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"20\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" box_shadow_horizontal=\"2\" box_shadow_color=\"rgba(49,44,41,0.28)\" box_shadow_vertical=\"2\" last=\"false\" border_position=\"all\" first=\"true\" margin_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"138\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1767|full\" borderradius=\"16px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hair-Loss02.jpg[/fusion_imageframe][fusion_imageframe aspect_ratio=\"custom\" 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\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1767|full\" borderradius=\"16px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hair-Loss02.jpg[/fusion_imageframe][/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\" padding_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"static\" animation_speed=\"1.0\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDEzNWRlZywgIzVjNWM1YyAwJSwgIzNhM2EzYSAxMDAlKTsgLyog2q/Ysdin2K/bjNin2YbYqiDZhNmI2qnYsyDZiCDZhdmE2KfbjNmFINiy2LrYp9mE24wgKi8KICAgICAgICBwYWRkaW5nOiA0MHB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDIwcHg7IC8qINqv2LHYr9uMINqv2YjYtNmH4oCM2YfYpyDZhdi32KfYqNmCINiv2LHYrtmI2KfYs9iqINi02YXYpyAqLwogICAgICAgIGJveC1zaGFkb3c6IDAgMjBweCA0MHB4IHJnYmEoMCwgMCwgMCwgMC40KSwgMCAwIDMwcHggcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjE1KTsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogNDBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjMpOwogICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTsKICAgICAgICBvdmVyZmxvdzogaGlkZGVuOwogICAgfQogICAgCiAgICAvKiDYp9mB2qnYqiDZhtmI2LHbjCDYuNix24zZgSDYr9ixINmE2KjZhyDYqNin2YTYp9uM24wg2KjYsdin24wg2K3YsyDZvtix24zZhduM2YjZhSAqLwogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlcjo6YmVmb3JlIHsKICAgICAgICBjb250ZW50OiAnJzsKICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7CiAgICAgICAgdG9wOiAwOwogICAgICAgIGxlZnQ6IDA7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgaGVpZ2h0OiA0cHg7CiAgICAgICAgYmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDkwZGVnLCB0cmFuc3BhcmVudCwgI2VmZTVkYywgdHJhbnNwYXJlbnQpOwogICAgICAgIG9wYWNpdHk6IDAuNjsKICAgIH0KCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMnB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA3MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMnB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCByZ2JhKDIzOSwgMjI5LCAyMjAsIDAuNCk7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBhbGwgMC4zcyBlYXNlOyAvKiDYp9mG24zZhduM2LTZhiDZhtix2YUg2KjYsdin24wg2YfYp9mI2LEgKi8KICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyMzksIDIyOSwgMjIwLCAwLjEpOwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA4KTsKICAgICAgICB0cmFuc2Zvcm06IHNjYWxlKDEuMDEpOyAvKiDYqNiy2LHar+KAjNmG2YXYp9uM24wg2KjYs9uM2KfYsSDZhtin2YXYrdiz2YjYsyAqLwogICAgICAgIGJveC1zaGFkb3c6IGluc2V0IDRweCAwIDAgI2VmZTVkYzsgLyog2K7YtyDaqdix2YUg2LHZhtqvINis2LDYp9ioINiv2LEg2LPZhdiqINqG2b4g2YfZhtqv2KfZhSDZh9in2YjYsSAqLwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjJweCAyMHB4OwogICAgICAgIGZvbnQtc2l6ZTogMTUuNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAzMCU7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2VmZTVkYzsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmRmZGZkOwogICAgICAgIGZvbnQtd2VpZ2h0OiAzMDA7CiAgICB9CiAgICAKICAgIC8qINin2LPYqtin24zZhCDYp9iu2KrYtdin2LXbjCDYqNix2KfbjCDZhdmI2KjYp9uM2YQgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyNXB4IDIwcHg7CiAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMjBweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgICAgICBkaXNwbGF5OiBibG9jazsgLyog2YbZhdin24zYtCDYstuM2LEg2YfZhSDYr9ixINmF2YjYqNin24zZhCAqLwogICAgICAgICAgICB3aWR0aDogMTAwJSAhaW1wb3J0YW50OwogICAgICAgICAgICBwYWRkaW5nOiAxMnB4IDE1cHg7CiAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAycHg7CiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICAgICAgICAgIGNvbG9yOiByZ2JhKDIzOSwgMjI5LCAyMjAsIDAuOCk7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMTNweDsKICAgICAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgICAgIHBhZGRpbmctdG9wOiAwOwogICAgICAgICAgICBmb250LXNpemU6IDE2cHg7CiAgICAgICAgICAgIGZvbnQtd2VpZ2h0OiA1MDA7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICAgICAgdHJhbnNmb3JtOiBub25lOyAvKiDYutuM2LHZgdi52KfZhCDaqdix2K/ZhiDYstmI2YUg2K/YsSDZhdmI2KjYp9uM2YQgKi8KICAgICAgICAgICAgYm94LXNoYWRvdzogaW5zZXQgM3B4IDAgMCAjZWZlNWRjOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPkhhaXIgUmVzdG9yYXRpb24gUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MzAg4oCTIDQ1IE1pbnV0ZXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlY29tbWVuZGVkIFByb3RvY29sPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IFNlc3Npb25zIChTcGFjZWQgMi00IHdlZWtzIGFwYXJ0KTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+VGVjaG5pcXVlIFVzZWQ8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5BZHZhbmNlZCBDZW50cmlmdWdlICYgTWljcm8tRHJvcGxldCBJbmplY3Rpb248L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPlJlZHVjZWQgc2hlZGRpbmcgaW4gNCB3ZWVrczsgTmV3IGdyb3d0aCBpbiAyLTMgbW9udGhzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk5vbmUgKFNsaWdodCBzY2FscCBzZW5zaXRpdml0eSBmYWRlcyB3aXRoaW4gaG91cnMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3Rib2R5PgogICAgPC90YWJsZT4KPC9kaXY+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" background_color=\"var(--awb-color2)\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>Real Results: Follicular Density Restored</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\"]\r\n<p>Witness the authentic return of hair volume and scalp health achieved through our clinical hair restoration protocols.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"no\" border_position=\"all\" 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=\"2407|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/PRP-before.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"no\" border_position=\"all\" spacing_left=\"0%\" spacing_right=\"4%\" 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=\"2408|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/PRP-after.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"no\" border_position=\"all\" spacing_right=\"0%\" spacing_left=\"4%\" 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=\"2607|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hair-Loss-before-02.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>Before</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"no\" border_position=\"all\" 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=\"2606|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hair-Loss-after-02.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n<p>After</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" padding_top=\"80px\" padding_bottom_small=\"0px\" padding_top_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"The Luxury Aftercare Protocol\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-check-circle fas\"][fusion_content_box title=\"The 24-Hour Wash Ban\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Avoid washing your hair or applying any topical hair styling products for at least 24 hours to allow the active nutrients and platelets to fully absorb into the follicles.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Thermal Protection\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Refrain from saunas, steam rooms, and intense cardiovascular workouts that cause heavy scalp sweating for the first 48 hours.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Sun Shielding\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Protect your scalp from direct, prolonged exposure to the intense Dubai sun for a few days to prevent any micro-inflammation at the injection sites.</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" background_color=\"rgba(223,222,224,0.2)\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Which treatment is better for my hair loss: PRP or Mesotherapy?\" open=\"no\"]\r\n<p><span data-path-to-node=\"26,0,1,0,0,0\">It often depends on the biological cause of your thinning. </span><span data-path-to-node=\"26,0,1,0,0,2\"><span class=\"citation-15\">PRP utilizes your own blood\'s autologous growth factors for profound natural tissue regeneration </span></span><span data-path-to-node=\"26,0,1,0,0,5\"><span class=\"citation-14\">, while Mesotherapy infuses specific medicinal cocktails to directly nourish roots and block hair-thinning hormones</span></span><span data-path-to-node=\"26,0,1,0,0,7\">. Dr. Soheila will map your scalp to prescribe the exact protocol, or a synergistic combination of both.</span></p>\r\n[/fusion_toggle][fusion_toggle title=\"Is the scalp injection process painful?\" open=\"no\"]\r\n<p><span data-path-to-node=\"26,1,1,0,0,0\">Your absolute comfort is our luxury clinical standard. </span><span data-path-to-node=\"26,1,1,0,0,2\"><span class=\"citation-13\">We apply a premium topical anesthetic prior to the procedure</span></span><span data-path-to-node=\"26,1,1,0,0,4\">. </span><span data-path-to-node=\"26,1,1,0,0,6\"><span class=\"citation-12\">Because the micro-injections are extremely superficial, the treatment is highly comfortable and feels like a fast, mild tapping pressure</span></span><span data-path-to-node=\"26,1,1,0,0,8\">.</span></p>\r\n[/fusion_toggle][fusion_toggle title=\"How many sessions do I need to see real hair growth?\" open=\"no\"]\r\n<p><span data-path-to-node=\"26,2,1,0,1,0\"><span class=\"citation-11\">Because hair growth operates in biological cycles, an initial intensive curative path of 3 to 6 sessions is standard</span></span><span data-path-to-node=\"26,2,1,0,1,2\">. You will first notice a significant reduction in hair shedding, followed by the appearance of new, thicker hair density around the second or third month.</span></p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1436\"]","Hair Loss","","publish","closed","closed","","hair-loss","","","2026-06-29 19:04:58","2026-06-29 19:04:58","","948","https://dr.frex.digital/?page_id=952","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("953","1","2026-06-02 12:28:12","2026-06-02 12:28:12","a:11:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:11:\"page_parent\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"948\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;s:13:\"display_title\";s:0:\"\";s:15:\"allow_ai_access\";b:0;s:14:\"ai_description\";s:0:\"\";}","By Concerns","by-concerns","publish","closed","closed","","group_6a1ecc5c3b0d6","","","2026-06-02 12:30:30","2026-06-02 12:30:30","","0","https://dr.frex.digital/?post_type=acf-field-group&#038;p=953","0","acf-field-group","","0"),
("954","1","2026-06-02 12:28:12","2026-06-02 12:28:12","a:14:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:4:\"show\";s:4:\"show\";s:4:\"hide\";s:4:\"hide\";}s:13:\"default_value\";s:0:\"\";s:13:\"return_format\";s:5:\"value\";s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:17:\"allow_in_bindings\";i:0;s:6:\"layout\";s:8:\"vertical\";s:17:\"save_other_choice\";i:0;}","Post Cart","postcart","publish","closed","closed","","field_6a1ecc5c3bda3","","","2026-06-02 12:30:30","2026-06-02 12:30:30","","953","https://dr.frex.digital/?post_type=acf-field&#038;p=954","0","acf-field","","0"),
("955","1","2026-06-02 12:28:12","2026-06-02 12:28:12","a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}","Treatment","treatment","publish","closed","closed","","field_6a1ecc5c3bddb","","","2026-06-02 12:30:30","2026-06-02 12:30:30","","953","https://dr.frex.digital/?post_type=acf-field&#038;p=955","1","acf-field","","0"),
("958","1","2026-06-02 12:30:48","2026-06-02 12:30:48","","Dark Circles","","inherit","closed","closed","","952-revision-v1","","","2026-06-02 12:30:48","2026-06-02 12:30:48","","952","https://dr.frex.digital/?p=958","0","revision","","0"),
("959","1","2026-06-02 12:32:21","2026-06-02 12:32:21","","Dark Circles","","inherit","closed","closed","","952-revision-v1","","","2026-06-02 12:32:21","2026-06-02 12:32:21","","952","https://dr.frex.digital/?p=959","0","revision","","0"),
("960","1","2026-06-02 12:40:48","2026-06-02 12:40:48","","Dark Circles","","inherit","open","closed","","dark-circles-2","","","2026-06-02 12:40:48","2026-06-02 12:40:48","","952","https://dr.frex.digital/wp-content/uploads/2026/06/Dark-Circles.jpg","0","attachment","image/jpeg","0"),
("961","1","2026-06-02 12:51:28","2026-06-02 12:51:28","[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=\"15vw\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"30px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 12:51:28","2026-06-02 12:51:28","","313","https://dr.frex.digital/?p=961","0","revision","","0"),
("962","1","2026-06-02 12:53:25","2026-06-02 12:53: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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]<p>Solutions by Concern</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=\"40px\" margin_right=\"15%\"]<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/about/\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 12:53:25","2026-06-02 12:53:25","","5","https://dr.frex.digital/?p=962","0","revision","","0"),
("963","1","2026-06-02 12:53:35","2026-06-02 12:53: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_right=\"140px\" padding_left=\"140px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]<p>Solutions by Concern</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=\"40px\" margin_right=\"15%\"]<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"75\" type=\"75\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 12:53:35","2026-06-02 12:53:35","","5","https://dr.frex.digital/?p=963","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("964","1","2026-06-02 12:55:08","2026-06-02 12:55:08","[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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_bg_style=\"default\" pattern_bg_opacity=\"23\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"inverted\" mask_bg_opacity=\"100\" mask_bg_transform=\"flip-Horizontal\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" background_color=\"var(--awb-color4)\" mask_bg_color=\"var(--awb-color3)\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2026/06/pattern-3.svg\" pattern_bg_size=\"10%\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"bounce\" first=\"true\" margin_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"8\" 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\" font_size=\"40px\" margin_bottom=\"20px\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.62)\"]Smooth, Refreshed Skin: Advanced Forehead Wrinkle 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\" font_size=\"18px\" margin_bottom=\"30px\" margin_bottom_small=\"20px\"]\r\n\r\nSoften horizontal forehead lines and frown lines with precise, natural-looking anti-wrinkle treatment tailored to your expressions.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#form\" alignment=\"left\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\"]Schedule Your Consultation[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"73\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" borderradius=\"16px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"20%\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.0\" animation_delay=\"0\" border_sizes_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" background_color=\"rgba(224,211,192,0.18)\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"30px\" margin_bottom=\"20px\"]\r\n\r\nThe Science of Smoothing Forehead Lines\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\nHorizontal forehead lines and the vertical frown lines between the brows are dynamic wrinkles — etched over time by the constant movement of the muscles that raise the brows and frown, and deepened by Dubai\'s intense sun. Once they settle into the skin, creams cannot reach the muscle that causes them. The most effective solution is a precise anti-wrinkle treatment: by gently relaxing the overactive muscles with micro-doses of neuromodulator, Dr. Soheila smooths the lines at their source while preserving your natural expressions. Our targeted <a href=\"/treatments/botox-anti-wrinkle/forehead-and-crows-feet/\">Forehead &amp; Crow\'s Feet</a> protocol refreshes the upper face, leaving you looking rested and natural — never frozen.\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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" 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\" padding_bottom=\"80px\" animation_type=\"zoom\" padding_bottom_small=\"30px\"][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=\"yes\" box_shadow_blur=\"20\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" box_shadow_horizontal=\"2\" box_shadow_color=\"rgba(49,44,41,0.28)\" box_shadow_vertical=\"2\" last=\"false\" border_position=\"all\" first=\"true\" margin_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"138\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2181|full\" borderradius=\"16px\"]https://dr.frex.digital/wp-content/uploads/2026/06/hero-face-beauty.jpg[/fusion_imageframe][fusion_imageframe aspect_ratio=\"custom\" 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\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2181|full\" borderradius=\"16px\"]https://dr.frex.digital/wp-content/uploads/2026/06/hero-face-beauty.jpg[/fusion_imageframe][/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\" padding_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"static\" animation_speed=\"1.0\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDEzNWRlZywgIzVjNWM1YyAwJSwgIzNhM2EzYSAxMDAlKTsgLyog2q/Ysdin2K/bjNin2YbYqiDZhNmI2qnYsyDZiCDZhdmE2KfbjNmFINiy2LrYp9mE24wgKi8KICAgICAgICBwYWRkaW5nOiA0MHB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDIwcHg7IC8qINqv2LHYr9uMINqv2YjYtNmH4oCM2YfYpyDZhdi32KfYqNmCINiv2LHYrtmI2KfYs9iqINi02YXYpyAqLwogICAgICAgIGJveC1zaGFkb3c6IDAgMjBweCA0MHB4IHJnYmEoMCwgMCwgMCwgMC40KSwgMCAwIDMwcHggcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjE1KTsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogNDBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjMpOwogICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTsKICAgICAgICBvdmVyZmxvdzogaGlkZGVuOwogICAgfQogICAgCiAgICAvKiDYp9mB2qnYqiDZhtmI2LHbjCDYuNix24zZgSDYr9ixINmE2KjZhyDYqNin2YTYp9uM24wg2KjYsdin24wg2K3YsyDZvtix24zZhduM2YjZhSAqLwogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlcjo6YmVmb3JlIHsKICAgICAgICBjb250ZW50OiAnJzsKICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7CiAgICAgICAgdG9wOiAwOwogICAgICAgIGxlZnQ6IDA7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgaGVpZ2h0OiA0cHg7CiAgICAgICAgYmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDkwZGVnLCB0cmFuc3BhcmVudCwgI2VmZTVkYywgdHJhbnNwYXJlbnQpOwogICAgICAgIG9wYWNpdHk6IDAuNjsKICAgIH0KCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMnB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA3MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMnB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCByZ2JhKDIzOSwgMjI5LCAyMjAsIDAuNCk7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBhbGwgMC4zcyBlYXNlOyAvKiDYp9mG24zZhduM2LTZhiDZhtix2YUg2KjYsdin24wg2YfYp9mI2LEgKi8KICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyMzksIDIyOSwgMjIwLCAwLjEpOwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA4KTsKICAgICAgICB0cmFuc2Zvcm06IHNjYWxlKDEuMDEpOyAvKiDYqNiy2LHar+KAjNmG2YXYp9uM24wg2KjYs9uM2KfYsSDZhtin2YXYrdiz2YjYsyAqLwogICAgICAgIGJveC1zaGFkb3c6IGluc2V0IDRweCAwIDAgI2VmZTVkYzsgLyog2K7YtyDaqdix2YUg2LHZhtqvINis2LDYp9ioINiv2LEg2LPZhdiqINqG2b4g2YfZhtqv2KfZhSDZh9in2YjYsSAqLwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjJweCAyMHB4OwogICAgICAgIGZvbnQtc2l6ZTogMTUuNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAzMCU7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2VmZTVkYzsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmRmZGZkOwogICAgICAgIGZvbnQtd2VpZ2h0OiAzMDA7CiAgICB9CiAgICAKICAgIC8qINin2LPYqtin24zZhCDYp9iu2KrYtdin2LXbjCDYqNix2KfbjCDZhdmI2KjYp9uM2YQgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyNXB4IDIwcHg7CiAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMjBweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgICAgICBkaXNwbGF5OiBibG9jazsgLyog2YbZhdin24zYtCDYstuM2LEg2YfZhSDYr9ixINmF2YjYqNin24zZhCAqLwogICAgICAgICAgICB3aWR0aDogMTAwJSAhaW1wb3J0YW50OwogICAgICAgICAgICBwYWRkaW5nOiAxMnB4IDE1cHg7CiAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAycHg7CiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICAgICAgICAgIGNvbG9yOiByZ2JhKDIzOSwgMjI5LCAyMjAsIDAuOCk7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMTNweDsKICAgICAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgICAgIHBhZGRpbmctdG9wOiAwOwogICAgICAgICAgICBmb250LXNpemU6IDE2cHg7CiAgICAgICAgICAgIGZvbnQtd2VpZ2h0OiA1MDA7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICAgICAgdHJhbnNmb3JtOiBub25lOyAvKiDYutuM2LHZgdi52KfZhCDaqdix2K/ZhiDYstmI2YUg2K/YsSDZhdmI2KjYp9uM2YQgKi8KICAgICAgICAgICAgYm94LXNoYWRvdzogaW5zZXQgM3B4IDAgMCAjZWZlNWRjOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPkZvcmVoZWFkIFdyaW5rbGUgVHJlYXRtZW50OiBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4xMCDigJMgMTUgTWludXRlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVjb21tZW5kZWQgUHJvdG9jb2w8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4xIFNlc3Npb24gZXZlcnkgMyB0byA0IG1vbnRoczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+VGVjaG5pcXVlIFVzZWQ8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5QcmVjaXNpb24gQW50aS1Xcmlua2xlIE1pY3JvLUluamVjdGlvbnM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPlNtb290aGVyIGxpbmVzIHdpdGhpbiAz4oCTNyBkYXlzOyBmdWxsIGVmZmVjdCBhdCAyIHdlZWtzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk5vbmUgKFRpbnkgaW5qZWN0aW9uIHBvaW50cyBmYWRlIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" background_color=\"var(--awb-color2)\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nReal Results: A Smoother, Refreshed Brow\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\" content_alignment=\"center\"]\r\n\r\nWitness the natural softening of forehead lines achieved through our precise anti-wrinkle protocols.\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"false\" border_position=\"all\" type_small=\"1_2\" 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=\"2517|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-Refinement-before-02.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nBefore\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"false\" border_position=\"all\" type_small=\"1_2\" spacing_left=\"0%\" spacing_right=\"4%\" 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=\"2518|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-Refinement-after-02.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nAfter\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"false\" border_position=\"all\" type_small=\"1_2\" spacing_left=\"4%\" spacing_right=\"0%\" 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=\"2694|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Forehead-Crows-Feet-Refinement-before-03.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nBefore\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"2695|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Forehead-Crows-Feet-Refinement-after-03.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nAfter\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"false\" border_position=\"all\" type_small=\"1_2\" 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=\"2696|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Forehead-Crows-Feet-Refinement-before-04.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nBefore\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"false\" border_position=\"all\" type_small=\"1_2\" spacing_left=\"0%\" spacing_right=\"4%\" 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=\"2693|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Forehead-Crows-Feet-Refinement-after-04.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nAfter\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"false\" border_position=\"all\" spacing_right=\"0%\" spacing_left=\"4%\" type_small=\"1_2\" 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=\"2732|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Forehead-Crows-Feet-Refinement-before-05-1.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nBefore\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"2731|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/07/Forehead-Crows-Feet-Refinement-after-05-1.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nAfter\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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" padding_top=\"80px\" padding_bottom_small=\"0px\" padding_top_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"The Luxury Aftercare Protocol\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-check-circle fas\"][fusion_content_box title=\"The 24-Hour Wash Ban\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nKeep your head upright and avoid rubbing or massaging the forehead for at least 4 hours, so the micro-doses settle precisely where they were placed.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Thermal Protection\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nRefrain from saunas, steam rooms, and intense cardiovascular workouts for the first 24 hours to keep the treatment perfectly positioned.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Sun Shielding\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nProtect your forehead from direct, prolonged exposure to the intense Dubai sun for a few days to support smooth, even results.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" background_color=\"rgba(223,222,224,0.2)\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Will my forehead look frozen or unnatural?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"26,0,1,0,0,0\">Not when treated with restraint. Dr. Soheila uses precisely mapped micro-doses to relax only the muscles that create the lines, preserving your ability to express yourself. The result is a smoother, rested forehead that still moves naturally.</span>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How long until I see results, and how long do they last?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"26,1,1,0,0,0\">Your absolute comfort is our luxury clinical standard. </span><span data-path-to-node=\"26,1,1,0,0,2\"><span class=\"citation-13\">We apply a premium topical anesthetic prior to the procedure</span></span><span data-path-to-node=\"26,1,1,0,0,4\">. </span><span data-path-to-node=\"26,1,1,0,0,6\"><span class=\"citation-12\">Because the micro-injections are extremely superficial, the treatment is highly comfortable and feels like a fast, mild tapping pressure</span></span><span data-path-to-node=\"26,1,1,0,0,8\">.</span>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Can deep, static forehead lines still be improved?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"26,2,1,0,1,0\"><span class=\"citation-11\">Lines that remain visible at rest are best softened with a combination approach over time, sometimes adding a skin booster. Dr. Soheila will assess your lines and give you an honest, tailored plan.</span></span>\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1436\"]","Forehead Wrinkles","","publish","closed","closed","","forehead-wrinkles","","","2026-07-02 13:41:52","2026-07-02 13:41:52","","948","https://dr.frex.digital/?page_id=964","0","page","","0"),
("965","1","2026-06-02 12:55:08","2026-06-02 12:55:08","","Under-Eye Wrinkles","","inherit","closed","closed","","964-revision-v1","","","2026-06-02 12:55:08","2026-06-02 12:55:08","","964","https://dr.frex.digital/?p=965","0","revision","","0"),
("966","1","2026-06-02 13:00:08","2026-06-02 13:00:08","","Under-Eye Wrinkles","","inherit","open","closed","","under-eye-wrinkles-2","","","2026-06-02 13:00:08","2026-06-02 13:00:08","","964","https://dr.frex.digital/wp-content/uploads/2026/06/Under-Eye-Wrinkles.jpg","0","attachment","image/jpeg","0"),
("967","1","2026-06-02 13:00:12","2026-06-02 13:00:12","","Under-Eye Wrinkles","","inherit","open","closed","","under-eye-wrinkles-3","","","2026-06-02 13:00:12","2026-06-02 13:00:12","","964","https://dr.frex.digital/wp-content/uploads/2026/06/Under-Eye-Wrinkles-1.jpg","0","attachment","image/jpeg","0"),
("968","1","2026-06-02 13:04:57","2026-06-02 13:04: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_bg_style=\"default\" pattern_bg_opacity=\"23\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"inverted\" mask_bg_opacity=\"100\" mask_bg_transform=\"flip-Horizontal\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" background_color=\"var(--awb-color4)\" mask_bg_color=\"var(--awb-color3)\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2026/06/pattern-3.svg\" pattern_bg_size=\"10%\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"bounce\" first=\"true\" margin_bottom_small=\"30px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"yes\" text_shadow_blur=\"8\" 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\" font_size=\"40px\" margin_bottom=\"20px\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(92,92,92,0.62)\"]Brighter, Smoother Eyes: Crow\'s Feet 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\" font_size=\"18px\" margin_bottom=\"30px\" margin_bottom_small=\"20px\"]\r\n\r\nSoften the fine lines that fan out from the corners of your eyes with delicate, natural-looking anti-wrinkle treatment.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#form\" alignment=\"left\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\"]Schedule Your Consultation[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"73\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" borderradius=\"16px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_size=\"20%\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.0\" animation_delay=\"0\" border_sizes_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" background_color=\"rgba(224,211,192,0.18)\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"30px\" margin_bottom=\"20px\"]\r\n\r\nThe Science of Smoothing Crow\'s Feet\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\nThe fine lines that fan out from the outer corners of the eyes — crow\'s feet — are formed by the muscle that closes the eye every time you smile or squint, and they deepen under Dubai\'s bright sun. Because they are caused by movement, the most effective treatment relaxes that muscle: with delicate micro-doses of neuromodulator, Dr. Soheila softens the lines while keeping your smile warm and natural. Our <a href=\"/treatments/botox-anti-wrinkle/forehead-and-crows-feet/\">Forehead &amp; Crow\'s Feet</a> protocol brightens and refreshes the eye area, smoothing the lines without ever freezing your expression.\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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" 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\" padding_bottom=\"80px\" animation_type=\"zoom\" padding_bottom_small=\"30px\"][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=\"yes\" box_shadow_blur=\"20\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" box_shadow_horizontal=\"2\" box_shadow_color=\"rgba(49,44,41,0.28)\" box_shadow_vertical=\"2\" last=\"false\" border_position=\"all\" first=\"true\" margin_top_small=\"0px\" margin_bottom_small=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe aspect_ratio=\"custom\" custom_aspect_ratio=\"138\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2183|full\" borderradius=\"16px\"]https://dr.frex.digital/wp-content/uploads/2026/06/hero-eyes.jpg[/fusion_imageframe][fusion_imageframe aspect_ratio=\"custom\" 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\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"2183|full\" borderradius=\"16px\"]https://dr.frex.digital/wp-content/uploads/2026/06/hero-eyes.jpg[/fusion_imageframe][/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\" padding_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"static\" animation_speed=\"1.0\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDEzNWRlZywgIzVjNWM1YyAwJSwgIzNhM2EzYSAxMDAlKTsgLyog2q/Ysdin2K/bjNin2YbYqiDZhNmI2qnYsyDZiCDZhdmE2KfbjNmFINiy2LrYp9mE24wgKi8KICAgICAgICBwYWRkaW5nOiA0MHB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDIwcHg7IC8qINqv2LHYr9uMINqv2YjYtNmH4oCM2YfYpyDZhdi32KfYqNmCINiv2LHYrtmI2KfYs9iqINi02YXYpyAqLwogICAgICAgIGJveC1zaGFkb3c6IDAgMjBweCA0MHB4IHJnYmEoMCwgMCwgMCwgMC40KSwgMCAwIDMwcHggcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjE1KTsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogNDBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjMpOwogICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTsKICAgICAgICBvdmVyZmxvdzogaGlkZGVuOwogICAgfQogICAgCiAgICAvKiDYp9mB2qnYqiDZhtmI2LHbjCDYuNix24zZgSDYr9ixINmE2KjZhyDYqNin2YTYp9uM24wg2KjYsdin24wg2K3YsyDZvtix24zZhduM2YjZhSAqLwogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlcjo6YmVmb3JlIHsKICAgICAgICBjb250ZW50OiAnJzsKICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7CiAgICAgICAgdG9wOiAwOwogICAgICAgIGxlZnQ6IDA7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgaGVpZ2h0OiA0cHg7CiAgICAgICAgYmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDkwZGVnLCB0cmFuc3BhcmVudCwgI2VmZTVkYywgdHJhbnNwYXJlbnQpOwogICAgICAgIG9wYWNpdHk6IDAuNjsKICAgIH0KCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMnB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA3MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMnB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCByZ2JhKDIzOSwgMjI5LCAyMjAsIDAuNCk7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBhbGwgMC4zcyBlYXNlOyAvKiDYp9mG24zZhduM2LTZhiDZhtix2YUg2KjYsdin24wg2YfYp9mI2LEgKi8KICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyMzksIDIyOSwgMjIwLCAwLjEpOwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA4KTsKICAgICAgICB0cmFuc2Zvcm06IHNjYWxlKDEuMDEpOyAvKiDYqNiy2LHar+KAjNmG2YXYp9uM24wg2KjYs9uM2KfYsSDZhtin2YXYrdiz2YjYsyAqLwogICAgICAgIGJveC1zaGFkb3c6IGluc2V0IDRweCAwIDAgI2VmZTVkYzsgLyog2K7YtyDaqdix2YUg2LHZhtqvINis2LDYp9ioINiv2LEg2LPZhdiqINqG2b4g2YfZhtqv2KfZhSDZh9in2YjYsSAqLwogICAgfQogICAgCiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjJweCAyMHB4OwogICAgICAgIGZvbnQtc2l6ZTogMTUuNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAzMCU7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2VmZTVkYzsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAKICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmRmZGZkOwogICAgICAgIGZvbnQtd2VpZ2h0OiAzMDA7CiAgICB9CiAgICAKICAgIC8qINin2LPYqtin24zZhCDYp9iu2KrYtdin2LXbjCDYqNix2KfbjCDZhdmI2KjYp9uM2YQgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyNXB4IDIwcHg7CiAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMjBweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgICAgICBkaXNwbGF5OiBibG9jazsgLyog2YbZhdin24zYtCDYstuM2LEg2YfZhSDYr9ixINmF2YjYqNin24zZhCAqLwogICAgICAgICAgICB3aWR0aDogMTAwJSAhaW1wb3J0YW50OwogICAgICAgICAgICBwYWRkaW5nOiAxMnB4IDE1cHg7CiAgICAgICAgICAgIHRleHQtYWxpZ246IGNlbnRlcjsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAycHg7CiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICAgICAgICAgIGNvbG9yOiByZ2JhKDIzOSwgMjI5LCAyMjAsIDAuOCk7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMTNweDsKICAgICAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgICAgIHBhZGRpbmctdG9wOiAwOwogICAgICAgICAgICBmb250LXNpemU6IDE2cHg7CiAgICAgICAgICAgIGZvbnQtd2VpZ2h0OiA1MDA7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICAgICAgdHJhbnNmb3JtOiBub25lOyAvKiDYutuM2LHZgdi52KfZhCDaqdix2K/ZhiDYstmI2YUg2K/YsSDZhdmI2KjYp9uM2YQgKi8KICAgICAgICAgICAgYm94LXNoYWRvdzogaW5zZXQgM3B4IDAgMCAjZWZlNWRjOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPkNyb3cncyBGZWV0IFRyZWF0bWVudDogUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTAg4oCTIDE1IE1pbnV0ZXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlY29tbWVuZGVkIFByb3RvY29sPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MSBTZXNzaW9uIGV2ZXJ5IDMgdG8gNCBtb250aHM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlRlY2huaXF1ZSBVc2VkPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+RGVsaWNhdGUgQW50aS1Xcmlua2xlIE1pY3JvLUluamVjdGlvbnM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPlNtb290aGVyIGxpbmVzIHdpdGhpbiAz4oCTNyBkYXlzOyBmdWxsIGVmZmVjdCBhdCAyIHdlZWtzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk5vbmUgKFRpbnkgaW5qZWN0aW9uIHBvaW50cyBmYWRlIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" background_color=\"var(--awb-color2)\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nReal Results: A Brighter, Smoother Eye Area\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\" content_alignment=\"center\"]\r\n\r\nWitness the natural softening of crow\'s feet achieved through our precise anti-wrinkle protocols.\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"false\" border_position=\"all\" type_small=\"1_2\" 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=\"2514|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-Refinement-before-01.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nBefore\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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"right\" animation_speed=\"1.0\" animation_delay=\"0\" animation_type=\"bounce\" last=\"true\" border_position=\"all\" spacing_left=\"0%\" spacing_right=\"4%\" type_small=\"1_2\" 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=\"2515|full\" borderradius=\"12px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Forehead-Crows-Feet-Refinement-after-01.jpg[/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\" content_alignment=\"center\" font_size=\"18px\" margin_top=\"15px\"]\r\n\r\nAfter\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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" padding_top=\"80px\" padding_bottom_small=\"0px\" padding_top_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"The Luxury Aftercare Protocol\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-check-circle fas\"][fusion_content_box title=\"The 24-Hour Wash Ban\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nKeep your head upright and avoid rubbing the eye area for at least 4 hours so the delicate micro-doses settle exactly where placed.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Thermal Protection\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nRefrain from saunas, steam rooms, and intense workouts for the first 24 hours to keep the treatment perfectly positioned.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Sun Shielding\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nProtect the eye area from direct, prolonged sun exposure for a few days, and wear sunglasses to support smooth, even results.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\" background_color=\"rgba(223,222,224,0.2)\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Will treating crow\'s feet change my smile?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"26,0,1,0,0,0\">No — Dr. Soheila relaxes only the fine muscle fibres that crease the skin at the corner of the eye, so your smile stays completely natural, simply framed by smoother skin.</span>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Is the area around the eyes safe to treat?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"26,1,1,0,0,0\">Your absolute comfort is our luxury clinical standard. </span><span data-path-to-node=\"26,1,1,0,0,2\"><span class=\"citation-13\">We apply a premium topical anesthetic prior to the procedure</span></span><span data-path-to-node=\"26,1,1,0,0,4\">. </span><span data-path-to-node=\"26,1,1,0,0,6\"><span class=\"citation-12\">Because the micro-injections are extremely superficial, the treatment is highly comfortable and feels like a fast, mild tapping pressure</span></span><span data-path-to-node=\"26,1,1,0,0,8\">.</span>\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How long do the results last?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"26,2,1,0,1,0\"><span class=\"citation-11\">Smoothing appears within 3 to 7 days and lasts around 3 to 4 months. Regular maintenance keeps the eye area looking bright and refreshed.</span></span>\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1436\"]","Crow\'s Feet","","publish","closed","closed","","crows-feet","","","2026-07-02 13:40:26","2026-07-02 13:40:26","","948","https://dr.frex.digital/?page_id=968","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("969","1","2026-06-02 13:04:42","2026-06-02 13:04:42","","Underarm & Bikini Brightening","","inherit","open","closed","","underarm-bikini-brightening","","","2026-06-02 13:04:42","2026-06-02 13:04:42","","968","https://dr.frex.digital/wp-content/uploads/2026/06/Underarm-Bikini-Brightening.jpg","0","attachment","image/jpeg","0"),
("970","1","2026-06-02 13:04:57","2026-06-02 13:04:57","","Underarm & Bikini Brightening","","inherit","closed","closed","","968-revision-v1","","","2026-06-02 13:04:57","2026-06-02 13:04:57","","968","https://dr.frex.digital/?p=970","0","revision","","0"),
("971","1","2026-06-02 13:07:28","2026-06-02 13:07:28","[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=\"15vw\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"30px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 13:07:28","2026-06-02 13:07:28","","313","https://dr.frex.digital/?p=971","0","revision","","0"),
("972","1","2026-06-02 13:07:56","2026-06-02 13:07:56","[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" 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\" padding_top=\"15vw\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"30px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 13:07:56","2026-06-02 13:07:56","","313","https://dr.frex.digital/?p=972","0","revision","","0"),
("973","1","2026-06-02 13:11:41","2026-06-02 13:11:41","[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=\"15vw\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"30px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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=\"20px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 13:11:41","2026-06-02 13:11:41","","313","https://dr.frex.digital/?p=973","0","revision","","0"),
("974","1","2026-06-02 13:14:04","2026-06-02 13:14: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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Our Studio In Images</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 13:14:04","2026-06-02 13:14:04","","5","https://dr.frex.digital/?p=974","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("975","1","2026-06-02 13:18:32","2026-06-02 13:18:32","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" phone=\"tel:+971505145129\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImJhY2tncm91bmRfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoiaGVhZGVyX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"287px\" type=\"287px\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"25|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/logo.svg[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"290px\" type=\"290px\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" spacing_right=\"45px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_right=\"30px\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" link=\"https://dr.frex.digital/classes/\"]Try free class[/fusion_button][fusion_fontawesome icon=\"fusion-prefix-icon-dance-menu\" spin=\"no\" linktarget=\"_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\" size=\"18\" link=\"#\" id=\"menu-offcanvas\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Header","","inherit","closed","closed","","7-revision-v1","","","2026-06-02 13:18:32","2026-06-02 13:18:32","","7","https://dr.frex.digital/?p=975","0","revision","","0"),
("976","1","2026-06-02 13:18:50","2026-06-02 13:18:50","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-02 13:18:50","2026-06-02 13:18:50","","880","https://dr.frex.digital/?p=976","0","revision","","0"),
("977","1","2026-06-02 13:19:41","2026-06-02 13:19:41","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" phone=\"tel:+971505145129\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImJhY2tncm91bmRfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoiaGVhZGVyX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"0\" submenu_border_radius_top_right=\"0\" submenu_border_radius_bottom_right=\"6px\" submenu_border_radius_bottom_left=\"6px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Header","","inherit","closed","closed","","7-revision-v1","","","2026-06-02 13:19:41","2026-06-02 13:19:41","","7","https://dr.frex.digital/?p=977","0","revision","","0"),
("978","1","2026-06-02 13:26:38","2026-06-02 13:26: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 13:26:38","2026-06-02 13:26:38","","5","https://dr.frex.digital/?p=978","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("979","1","2026-06-02 13:31:11","2026-06-02 13:31: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 13:31:11","2026-06-02 13:31:11","","5","https://dr.frex.digital/?p=979","0","revision","","0"),
("980","1","2026-06-02 13:34:05","2026-06-02 13:34: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]Spotlight Dance: Our Studio and Students\' Journey[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"35px\"]Dance is a journey of self-growth. Our students have shone in the spotlight. Join us to celebrate their achievements and start your own journey.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"https://dr.frex.digital/student-stories/\"]View student stories[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 13:34:05","2026-06-02 13:34:05","","5","https://dr.frex.digital/?p=980","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("981","1","2026-06-02 13:40:53","2026-06-02 13:40: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-1.jpg\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-2.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/info-3.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 13:40:53","2026-06-02 13:40:53","","5","https://dr.frex.digital/?p=981","0","revision","","0"),
("982","1","2026-06-02 13:52:14","2026-06-02 13:52:14","","A Natural Approach to Beauty","","inherit","open","closed","","a-natural-approach-to-beauty","","","2026-06-02 13:52:14","2026-06-02 13:52:14","","0","https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg","0","attachment","image/jpeg","0"),
("983","1","2026-06-02 13:52:25","2026-06-02 13:52:25","","Your Journey Starts with a Consultation","","inherit","open","closed","","your-journey-starts-with-a-consultation","","","2026-06-02 13:52:25","2026-06-02 13:52:25","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg","0","attachment","image/jpeg","0"),
("984","1","2026-06-02 13:52:33","2026-06-02 13:52:33","","doctor","","inherit","open","closed","","doctor","","","2026-06-02 13:52:33","2026-06-02 13:52:33","","0","https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg","0","attachment","image/jpeg","0"),
("985","1","2026-06-02 13:53:49","2026-06-02 13:53: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]Next Classes[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]Fusce porttitor tortor donec bibendum diam nisl nunc libero.[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"https://dr.frex.digital/classes/\"]View all classes[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 13:53:49","2026-06-02 13:53:49","","5","https://dr.frex.digital/?p=985","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("986","1","2026-06-02 14:03:45","2026-06-02 14:03: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"267\" post_card_list_view=\"0\" source=\"posts\" post_type=\"class\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"meta_value\" orderby_custom_field_type=\"DATE\" 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=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"79\" separator_style_type=\"single solid\" separator_alignment=\"center\" separator_border_size=\"2\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" separator_sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" orderby_custom_field_name=\"next_class_date\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 14:03:45","2026-06-02 14:03:45","","5","https://dr.frex.digital/?p=986","0","revision","","0"),
("987","1","2026-06-02 14:40:06","2026-06-02 14:40: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"20px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"20px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"20px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 14:40:06","2026-06-02 14:40:06","","5","https://dr.frex.digital/?p=987","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("988","1","2026-06-02 14:43:08","2026-06-02 14:43:08","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"20px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>IV Treatment - Glutathione</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Sarah Roberts</strong></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\" font_size=\"20px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Hair Loss Treatment with Exosome</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Mahsa T.</strong></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\" font_size=\"20px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Barbie Botox &amp; Nefertiti Neck Lift</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Noor Al Obaidi</strong></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\" font_size=\"20px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 14:43:08","2026-06-02 14:43:08","","5","https://dr.frex.digital/?p=988","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("989","1","2026-06-02 14:45:15","2026-06-02 14:45: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-8208001-720p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color8)\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 25%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-2-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>IV Treatment - Glutathione</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Hair Loss Treatment with Exosome</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Barbie Botox &amp; Nefertiti Neck Lift</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 14:45:15","2026-06-02 14:45:15","","5","https://dr.frex.digital/?p=989","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("990","1","2026-06-02 14:47:41","2026-06-02 14:47:41","","BG01","","inherit","open","closed","","bg01","","","2026-06-02 14:47:41","2026-06-02 14:47:41","","0","https://dr.frex.digital/wp-content/uploads/2026/06/BG01.jpg","0","attachment","image/jpeg","0"),
("991","1","2026-06-02 14:49:35","2026-06-02 14:49:35","","0_Beauty_Facial_1920x1080","","inherit","open","closed","","0_beauty_facial_1920x1080","","","2026-06-02 14:49:35","2026-06-02 14:49:35","","0","https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4","0","attachment","video/mp4","0"),
("992","1","2026-06-02 14:50:52","2026-06-02 14:50: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>IV Treatment - Glutathione</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Hair Loss Treatment with Exosome</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Barbie Botox &amp; Nefertiti Neck Lift</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 14:50:52","2026-06-02 14:50:52","","5","https://dr.frex.digital/?p=992","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("993","1","2026-06-02 14:54:35","2026-06-02 14: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=\"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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]<p>Discover The Art Of Natural Beauty</p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>IV Treatment - Glutathione</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Hair Loss Treatment with Exosome</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Barbie Botox &amp; Nefertiti Neck Lift</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2023/07/pexels-cottonbro-7975419-540p.mp4\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"0px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" animation_type=\"reveal\" admin_label=\"Home - Banner\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 14:54:35","2026-06-02 14:54:35","","5","https://dr.frex.digital/?p=993","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("994","1","2026-06-02 14:55:39","2026-06-02 14:55:39","[fusion_builder_column type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" column_tag=\"div\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" 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\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color_hover=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_color=\"\" border_style=\"solid\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_right=\"\" border_radius_bottom_left=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index_hover=\"\" z_index=\"\" overflow=\"\" background_type=\"single\" background_color_medium=\"\" background_color_small=\"\" background_color_medium_hover=\"\" background_color_small_hover=\"\" background_color_hover=\"\" background_color=\"var(--awb-color7)\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_image_medium=\"\" background_image_small=\"\" background_image=\"\" background_image_id_medium=\"\" background_image_id_small=\"\" background_image_id=\"\" lazy_load=\"avada\" skip_lazy_load=\"\" background_position_medium=\"\" background_position_small=\"\" background_position=\"center center\" background_repeat_medium=\"\" background_repeat_small=\"\" background_repeat=\"no-repeat\" background_size_medium=\"\" background_size_small=\"\" background_size=\"\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode_medium=\"\" background_blend_mode_small=\"\" background_blend_mode=\"none\" background_slider_images=\"\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" background_slider_blend_mode=\"\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"\" absolute=\"off\" absolute_top=\"\" absolute_right=\"\" absolute_bottom=\"\" absolute_left=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" 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_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" motion_effects=\"W10=\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_type=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" animation_offset=\"\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwiYmFja2dyb3VuZF9pbWFnZSI6IiIsInR5cGUiOiJtYWluIiwiZmFsbGJhY2siOiIifX0=\" last=\"no\" border_position=\"all\"][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"no\" 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\" text_color=\"var(--awb-color1)\" item_border_top=\"1px\" item_border_right=\"1px\" item_border_bottom=\"1px\" item_border_left=\"1px\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" item_border_color=\"var(--awb-color1)\" item_padding_top=\"6px\" item_padding_right=\"7px\" item_padding_bottom=\"6px\" item_padding_left=\"7px\" /][fusion_separator style_type=\"none\" flex_grow=\"1\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"15vw\" /][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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==\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][/fusion_builder_column]","Blog 1","","inherit","closed","closed","","204-revision-v1","","","2026-06-02 14:55:39","2026-06-02 14:55:39","","204","https://dr.frex.digital/?p=994","0","revision","","0"),
("996","1","2026-06-02 14:57:05","2026-06-02 14:57: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]<p>Discover The Art Of Natural Beauty</p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>IV Treatment - Glutathione</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Hair Loss Treatment with Exosome</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Barbie Botox &amp; Nefertiti Neck Lift</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]News, Tips and Stories from Our Studio[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]Ut ullamcorper dictumst tempor egestas risus sed consequat. Iaculis donec et adipiscing vulputate porttitor dictum adipiscing massa dictumst urna.[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 14:57:05","2026-06-02 14:57:05","","5","https://dr.frex.digital/?p=996","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("997","1","2026-06-02 15:04:25","2026-06-02 15:04: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\"][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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]Aliquam lobortis cras risus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]Etiam imperdiet imperdiet orci. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Nullam quis ante. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci. Ut a nisl id ante tempus hendrerit.\r\n\r\nSed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Praesent congue erat at massa. Phasellus tempus. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Integer tincidunt.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n\r\nEtiam imperdiet imperdiet orci. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Nullam quis ante. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci. Ut a nisl id ante tempus hendrerit.\r\n\r\nSed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Praesent congue erat at massa. Phasellus tempus. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Integer tincidunt.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Sun & Water Damage: The Dubai Guide","Aliquam eu nunc. Maecenas vestibulum mollis diam. Sed libero.","inherit","closed","closed","","200-revision-v1","","","2026-06-02 15:04:25","2026-06-02 15:04:25","","200","https://dr.frex.digital/?p=997","0","revision","","0"),
("998","1","2026-06-02 15:04:27","2026-06-02 15:04:27","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]Aliquam lobortis cras risus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]Etiam imperdiet imperdiet orci. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Nullam quis ante. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci. Ut a nisl id ante tempus hendrerit.\r\n\r\nSed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Praesent congue erat at massa. Phasellus tempus. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Integer tincidunt.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n\r\nEtiam imperdiet imperdiet orci. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Nullam quis ante. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci. Ut a nisl id ante tempus hendrerit.\r\n\r\nSed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Praesent congue erat at massa. Phasellus tempus. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Integer tincidunt.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Secrets to an Elegant Neck","Aenean vulputate eleifend tellus. Proin sapien ipsum, porta a, auctor quis, euismod ut, mi. Ut varius tincidunt libero.","inherit","closed","closed","","197-revision-v1","","","2026-06-02 15:04:27","2026-06-02 15:04:27","","197","https://dr.frex.digital/?p=998","0","revision","","0"),
("999","1","2026-06-02 15:04:44","2026-06-02 15:04: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\" 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\" layout=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"30px\"]Aliquam lobortis cras risus[/fusion_title][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]Etiam imperdiet imperdiet orci. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Nullam quis ante. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci. Ut a nisl id ante tempus hendrerit.\r\n\r\nSed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Praesent congue erat at massa. Phasellus tempus. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Integer tincidunt.[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"3\" columns_small=\"0\" columns=\"3\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"33\" margin_bottom=\"60px\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][/fusion_gallery][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"50px\"]\r\n\r\nEtiam imperdiet imperdiet orci. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Nullam quis ante. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci. Ut a nisl id ante tempus hendrerit.\r\n\r\nSed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Praesent congue erat at massa. Phasellus tempus. Sed magna purus, fermentum eu, tincidunt eu, varius ut, felis. Integer tincidunt.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Best Under-Eye Treatments","Vestibulum suscipit nulla quis orci. Cras id dui. Nam pretium turpis et arcu.","inherit","closed","closed","","194-revision-v1","","","2026-06-02 15:04:44","2026-06-02 15:04:44","","194","https://dr.frex.digital/?p=999","0","revision","","0"),
("1000","1","2026-06-02 15:14:36","2026-06-02 15:14:36","","Sun and Water Damage The Dubai Guide","","inherit","open","closed","","sun-and-water-damage-the-dubai-guide","","","2026-06-02 15:14:36","2026-06-02 15:14:36","","200","https://dr.frex.digital/wp-content/uploads/2023/07/Sun-and-Water-Damage-The-Dubai-Guide.jpg","0","attachment","image/jpeg","0"),
("1001","1","2026-06-02 15:16:19","2026-06-02 15:16:19","","Secrets to an Elegant Neck","","inherit","open","closed","","secrets-to-an-elegant-neck-2","","","2026-06-02 15:16:19","2026-06-02 15:16:19","","197","https://dr.frex.digital/wp-content/uploads/2023/07/Secrets-to-an-Elegant-Neck.jpg","0","attachment","image/jpeg","0"),
("1002","1","2026-06-02 15:17:14","2026-06-02 15:17:14","","Best Under-Eye Treatments","","inherit","open","closed","","best-under-eye-treatments-2","","","2026-06-02 15:17:14","2026-06-02 15:17:14","","194","https://dr.frex.digital/wp-content/uploads/2023/07/Best-Under-Eye-Treatments.jpg","0","attachment","image/jpeg","0"),
("1003","1","2026-06-02 15:19:19","2026-06-02 15:19: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]<p>Discover The Art Of Natural Beauty</p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]<p><strong>Real Patients, Natural Results</strong></p>[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Before &amp; After</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>Lips Filler &amp; Face Contour</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Fatima Al Marzooqi</strong></p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"0\"]<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>IV Treatment - Glutathione</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Hair Loss Treatment with Exosome</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>Barbie Botox &amp; Nefertiti Neck Lift</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type=\"50\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"25px\" margin_bottom=\"0\"]<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]<p>⭐️⭐️⭐️⭐️⭐️</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" font_size=\"14px\"]<p>✔ Verified Patient</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"25\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][fusion_builder_column_inner 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\" type=\"55\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" 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=\"20\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>A Natural Approach to Beauty</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=\"35px\"]<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]<p>Your Journey Starts with a Consultation</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=\"35px\"]<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</p>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]<p>Aesthetic Insights &amp; Expert Tips</p>[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 15:19:19","2026-06-02 15:19:19","","5","https://dr.frex.digital/?p=1003","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1004","1","2026-06-02 15:19:49","2026-06-02 15:19:49","[fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"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_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color7)\" gradient_start_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" 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_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwiYmFja2dyb3VuZF9pbWFnZSI6IiIsInR5cGUiOiJtYWluIiwiZmFsbGJhY2siOiIifX0=\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"no\" 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\" text_color=\"var(--awb-color1)\" item_border_top=\"1px\" item_border_right=\"1px\" item_border_bottom=\"1px\" item_border_left=\"1px\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" item_border_color=\"var(--awb-color1)\" item_padding_top=\"6px\" item_padding_right=\"7px\" item_padding_bottom=\"6px\" item_padding_left=\"7px\" /][fusion_separator style_type=\"none\" flex_grow=\"1\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"15vw\" /][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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==\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][/fusion_builder_column]","Blog 1","","inherit","closed","closed","","204-revision-v1","","","2026-06-02 15:19:49","2026-06-02 15:19:49","","204","https://dr.frex.digital/?p=1004","0","revision","","0"),
("1005","1","2026-06-02 16:12:03","2026-06-02 16:12: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"125px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.png[/fusion_imageframe][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"20px\" margin_top=\"20px\"]<p>COSMETIC CLINIC DUBAI</p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\"]<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]<p>Quick access</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\" text_color=\"var(--awb-color1)\"]<p><u>Treatments</u></p>\n<p><u>Consultation</u></p>\n<p><u>Book a Consultation</u></p>\n<p><u>About Us</u></p>[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]<p>Contact</p>[/fusion_title][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAEYour Content Goes Here</p>[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]<p>+971 50 514 5129</p>[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDQ2MjU2MC42ODI4MTk5Mzk1ITJkNTQuODk3ODIzMzEzNTIwOTchM2QyNS4wNzYyODA0NDg0MjIwNDMhMm0zITFmMCEyZjAhM2YwITNtMiExaTEwMjQhMmk3NjghNGYxMy4xITNtMyExbTIhMXMweDNlNWY0MzQ5NmFkOWM2NDUlM0EweGJkZTY2ZTUwODQyOTUxNjIhMnNEdWJhaSUyMC0lMjBVbml0ZWQlMjBBcmFiJTIwRW1pcmF0ZXMhNWUwITNtMiExc2VuITJzdHIhNHYxNzgwNDE2NjU2Njc5ITVtMiExc2VuITJzdHIiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjIwMCIgc3R5bGU9ImJvcmRlcjowOyIgYWxsb3dmdWxsc2NyZWVuPSIiIGxvYWRpbmc9ImxhenkiIHJlZmVycmVycG9saWN5PSJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSI+PC9pZnJhbWU+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-02 16:12:03","2026-06-02 16:12:03","","160","https://dr.frex.digital/?p=1005","0","revision","","0"),
("1006","1","2026-06-02 16:15:20","2026-06-02 16:15: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"125px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.png[/fusion_imageframe][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" margin_bottom=\"20px\" margin_top=\"20px\"]<p>COSMETIC CLINIC DUBAI</p>[/fusion_text][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\"]<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]<p>Quick access</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\" text_color=\"var(--awb-color1)\"]<p><u>Treatments</u></p>\n<p><u>Consultation</u></p>\n<p><u>Book a Consultation</u></p>\n<p><u>About Us</u></p>[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]<p>Contact</p>[/fusion_title][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]<p>+971 50 514 5129</p>[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDQ2MjU2MC42ODI4MTk5Mzk1ITJkNTQuODk3ODIzMzEzNTIwOTchM2QyNS4wNzYyODA0NDg0MjIwNDMhMm0zITFmMCEyZjAhM2YwITNtMiExaTEwMjQhMmk3NjghNGYxMy4xITNtMyExbTIhMXMweDNlNWY0MzQ5NmFkOWM2NDUlM0EweGJkZTY2ZTUwODQyOTUxNjIhMnNEdWJhaSUyMC0lMjBVbml0ZWQlMjBBcmFiJTIwRW1pcmF0ZXMhNWUwITNtMiExc2VuITJzdHIhNHYxNzgwNDE2NjU2Njc5ITVtMiExc2VuITJzdHIiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjIwMCIgc3R5bGU9ImJvcmRlcjowOyIgYWxsb3dmdWxsc2NyZWVuPSIiIGxvYWRpbmc9ImxhenkiIHJlZmVycmVycG9saWN5PSJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSI+PC9pZnJhbWU+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-02 16:15:20","2026-06-02 16:15:20","","160","https://dr.frex.digital/?p=1006","0","revision","","0"),
("1007","1","2026-06-02 16:23:12","2026-06-02 16:23:12","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/doctor.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"984|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-1.jpg\" image_id=\"182|full\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-4.jpg\" image_id=\"234\" linktarget=\"_self\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-5.jpg\" image_id=\"235|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-6.jpg\" image_id=\"236|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-1.jpg\" image_id=\"231|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/instructor-3.jpg\" image_id=\"185|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-2.jpg\" image_id=\"232|full\" /][fusion_gallery_image linktarget=\"_self\" image=\"https://dr.frex.digital/wp-content/uploads/2023/07/gallery-3.jpg\" image_id=\"233|full\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 16:23:12","2026-06-02 16:23:12","","5","https://dr.frex.digital/?p=1007","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1008","1","2026-06-02 16:25:02","2026-06-02 16:25:02","","Before After - Lip Filler","","inherit","open","closed","","before-after-lip-filler-5-copy","","","2026-06-02 17:59:45","2026-06-02 17:59:45","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg","0","attachment","image/jpeg","0"),
("1009","1","2026-06-02 16:25:05","2026-06-02 16:25:05","","Before After - Lip Filler 6 copy","","inherit","open","closed","","before-after-lip-filler-6-copy","","","2026-06-02 16:25:05","2026-06-02 16:25:05","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-6-copy.jpg","0","attachment","image/jpeg","0"),
("1010","1","2026-06-02 16:25:08","2026-06-02 16:25:08","","Before After - Full Face Filler","","inherit","open","closed","","before-after-full-face-filler-1-copy","","","2026-06-02 18:02:22","2026-06-02 18:02:22","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg","0","attachment","image/jpeg","0"),
("1011","1","2026-06-02 16:25:10","2026-06-02 16:25:10","","Before After - calcium injection","","inherit","open","closed","","before-after-calcium-injection-1-copy","","","2026-06-02 18:02:09","2026-06-02 18:02:09","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg","0","attachment","image/jpeg","0"),
("1012","1","2026-06-02 16:25:13","2026-06-02 16:25:13","","Before After - calcium injection","","inherit","open","closed","","before-after-calcium-injection-2-copy","","","2026-06-02 18:01:57","2026-06-02 18:01:57","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg","0","attachment","image/jpeg","0"),
("1013","1","2026-06-02 16:25:15","2026-06-02 16:25:15","","Before After - Lip Filler","","inherit","open","closed","","before-after-lip-filler-1-copy","","","2026-06-02 18:01:45","2026-06-02 18:01:45","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg","0","attachment","image/jpeg","0"),
("1014","1","2026-06-02 16:25:19","2026-06-02 16:25:19","","Before After - calcium injection 3 copy","","inherit","open","closed","","before-after-calcium-injection-3-copy","","","2026-06-02 16:25:19","2026-06-02 16:25:19","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-3-copy.jpg","0","attachment","image/jpeg","0"),
("1015","1","2026-06-02 16:25:21","2026-06-02 16:25:21","","Before After - Lip Filler","","inherit","open","closed","","before-after-lip-filler-3-copy","","","2026-06-02 18:01:31","2026-06-02 18:01:31","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg","0","attachment","image/jpeg","0"),
("1016","1","2026-06-02 16:25:23","2026-06-02 16:25:23","","Before After - Underarm whitening","","inherit","open","closed","","before-after-underarm-whitening-1-copy","","","2026-06-02 18:01:17","2026-06-02 18:01:17","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg","0","attachment","image/jpeg","0"),
("1017","1","2026-06-02 16:25:26","2026-06-02 16:25:26","","Before After - Lip Filler","","inherit","open","closed","","before-after-lip-filler-4-copy","","","2026-06-02 18:00:16","2026-06-02 18:00:16","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg","0","attachment","image/jpeg","0"),
("1018","1","2026-06-02 16:27:02","2026-06-02 16:27:02","","DrSoheila - Picture copy","","inherit","open","closed","","drsoheila-picture-copy","","","2026-06-02 16:27:02","2026-06-02 16:27:02","","0","https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy.jpg","0","attachment","image/jpeg","0"),
("1019","1","2026-06-02 16:27:29","2026-06-02 16:27:29","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1018|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"982|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"983|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 16:27:29","2026-06-02 16:27:29","","5","https://dr.frex.digital/?p=1019","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1020","1","2026-06-02 16:28:28","2026-06-02 16:28:28","","Under Eye Dark Cirlcle Pic copy","","inherit","open","closed","","under-eye-dark-cirlcle-pic-copy","","","2026-06-02 16:28:28","2026-06-02 16:28:28","","952","https://dr.frex.digital/wp-content/uploads/2026/06/Under-Eye-Dark-Cirlcle-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1021","1","2026-06-02 16:28:34","2026-06-02 16:28:34","","Underarm Brightening Pic copy","","inherit","open","closed","","underarm-brightening-pic-copy","","","2026-06-02 16:28:34","2026-06-02 16:28:34","","952","https://dr.frex.digital/wp-content/uploads/2026/06/Underarm-Brightening-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1022","1","2026-06-02 16:28:35","2026-06-02 16:28:35","","Under Eye Wrinkles Pic copy","","inherit","open","closed","","under-eye-wrinkles-pic-copy","","","2026-06-02 16:28:35","2026-06-02 16:28:35","","952","https://dr.frex.digital/wp-content/uploads/2026/06/Under-Eye-Wrinkles-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1023","1","2026-06-02 16:30:33","2026-06-02 16:30:33","[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=\"200px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"25px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"25px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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=\"20px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 16:30:33","2026-06-02 16:30:33","","313","https://dr.frex.digital/?p=1023","0","revision","","0"),
("1024","1","2026-06-02 16:31:46","2026-06-02 16:31:46","[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=\"220px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"25px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"25px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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=\"20px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 16:31:46","2026-06-02 16:31:46","","313","https://dr.frex.digital/?p=1024","0","revision","","0"),
("1025","1","2026-06-02 16:31:59","2026-06-02 16:31:59","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"25px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"25px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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=\"20px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 16:31:59","2026-06-02 16:31:59","","313","https://dr.frex.digital/?p=1025","0","revision","","0"),
("1026","1","2026-06-02 16:32:17","2026-06-02 16:32:17","[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=\"260px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"5px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"25px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"25px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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=\"20px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 16:32:17","2026-06-02 16:32:17","","313","https://dr.frex.digital/?p=1026","0","revision","","0"),
("1027","1","2026-06-02 16:33:14","2026-06-02 16:33:14","","Dermal Fillers Pic copy","","inherit","open","closed","","dermal-fillers-pic-copy","","","2026-06-02 16:33:14","2026-06-02 16:33:14","","943","https://dr.frex.digital/wp-content/uploads/2026/06/Dermal-Fillers-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1028","1","2026-06-02 16:33:15","2026-06-02 16:33:15","","Biostimulators-Sculptra Pic copy","","inherit","open","closed","","biostimulators-sculptra-pic-copy","","","2026-06-02 16:33:15","2026-06-02 16:33:15","","943","https://dr.frex.digital/wp-content/uploads/2026/06/Biostimulators-Sculptra-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1029","1","2026-06-02 16:33:17","2026-06-02 16:33:17","","Botox & Anti-Wrinkle Pic copy","","inherit","open","closed","","botox-anti-wrinkle-pic-copy","","","2026-06-02 16:33:17","2026-06-02 16:33:17","","943","https://dr.frex.digital/wp-content/uploads/2026/06/Botox-Anti-Wrinkle-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1030","1","2026-06-02 16:34:45","2026-06-02 16:34:45","","Your Journey Starts with a Consultation Pic copy","","inherit","open","closed","","your-journey-starts-with-a-consultation-pic-copy","","","2026-06-02 16:34:45","2026-06-02 16:34:45","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1031","1","2026-06-02 16:34:47","2026-06-02 16:34:47","","A Natural Approach to Beauty Pic copy","","inherit","open","closed","","a-natural-approach-to-beauty-pic-copy","","","2026-06-02 16:34:47","2026-06-02 16:34:47","","0","https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg","0","attachment","image/jpeg","0"),
("1032","1","2026-06-02 16:35:18","2026-06-02 16:35:18","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1018|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 16:35:18","2026-06-02 16:35:18","","5","https://dr.frex.digital/?p=1032","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1033","1","2026-06-02 16:37:21","2026-06-02 16:37:21","[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" 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\" padding_top=\"200px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"20px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"25px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"25px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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=\"20px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-02 16:37:21","2026-06-02 16:37:21","","313","https://dr.frex.digital/?p=1033","0","revision","","0"),
("1034","1","2026-06-02 16:39:19","2026-06-02 16:39:19","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"var(--awb-color4)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_top=\"-13px\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/forehead-and-crows-feet/\">Forehead &amp; Crow\'s Feet</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/nefertiti-neck-lift-and-lower-face/\">Nefertiti Neck Lift &amp; Lower Face</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/lip-flip/\">Lip Flip</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/underarm-hyperhidrosis/\">Underarm Hyperhidrosis</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/hands-and-feet-hyperhidrosis/\">Hands &amp; Feet Hyperhidrosis</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/botox-for-muscle-spasm/\">Botox for Muscle Spasm</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/botox-anti-wrinkle/trap-barbie-botox/\">Trap / Barbie Botox</a></p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Mesotherapy</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_bottom=\"0\"]\r\n<p data-path-to-node=\"9,3,1,0,0\"><a href=\"https://dr.frex.digital/treatments/mesotherapy/hair-loss/\">Hair Loss</a></p>\r\n<p data-path-to-node=\"9,3,1,0,0\"><a href=\"https://dr.frex.digital/treatments/mesotherapy/skin-rejuvenation/\">Skin Rejuvenation</a></p>\r\n<p data-path-to-node=\"9,3,1,0,0\"><a href=\"https://dr.frex.digital/treatments/mesotherapy/glowing-skin/\">Glowing Skin</a></p>\r\n<p data-path-to-node=\"9,3,1,0,0\"><a href=\"https://dr.frex.digital/treatments/mesotherapy/pigmentation/\">Pigmentation</a></p>\r\n<p data-path-to-node=\"9,3,1,0,0\"><a href=\"https://dr.frex.digital/treatments/mesotherapy/fat-dissolving/\">Fat Dissolving</a></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"var(--awb-color4)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/dermal-fillers/\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_bottom=\"0\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/lip-filler/\">Lip Filler (Natural &amp; Russian)</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/face-lift-with-filler/\">Face Lift with Filler</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/cheek-filler/\">Cheek Filler</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/temple-filler/\">Temple Filler</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/chin-filler/\">Chin Filler</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/jawline-filler/\">Jawline Filler</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/face-contouring/\">Face Contouring</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/smile-lines-nasolabial/\">Smile Lines (Nasolabial)</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/under-eye-filler/\">Under-Eye Filler</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/tear-trough/\">Tear Trough</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/dermal-fillers/filler-dissolving/\">Filler Dissolving</a></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"var(--awb-color4)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/skin-boosters/\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_top=\"-13px\"]<a href=\"https://dr.frex.digital/treatments/skin-boosters/profhilo/\">Profhilo</a>\n\n<a href=\"https://dr.frex.digital/treatments/skin-boosters/jalupro/\">Jalupro</a>\n\n<a href=\"https://dr.frex.digital/treatments/skin-boosters/sunekos/\">Sunekos</a>\n\n<a href=\"https://dr.frex.digital/treatments/skin-boosters/nctf/\">NCTF</a>[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/pdrn-and-salmon-dna/\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_top=\"-13px\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/pdrn-and-salmon-dna/rejuran/\">Rejuran</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/pdrn-and-salmon-dna/plinest/\">Plinest</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/pdrn-and-salmon-dna/twac/\">TWAC</a></p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Subcision</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_bottom=\"0\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/subcision/acne-scar-treatment/\">Acne Scar Treatment</a></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"var(--awb-color4)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/biostimulators/\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_top=\"-13px\"]<p><a href=\"https://dr.frex.digital/treatments/biostimulators/sculptra/\">Sculptra</a></p><p><a href=\"https://dr.frex.digital/treatments/biostimulators/radiesse/\">Radiesse</a></p><p><a href=\"https://dr.frex.digital/treatments/biostimulators/aesthefill/\">Aesthefill</a></p><p><a href=\"https://dr.frex.digital/treatments/biostimulators/lanluma/\">Lanluma</a></p>[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/microneedling/\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_top=\"-13px\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/microneedling/derma-pen/\">Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/microneedling/exosome-microneedling/\">Exosome Microneedling (Face · Hair Loss)</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/microneedling/growth-factor-microneedling/\">Growth Factor Microneedling</a></p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Fat Dissolving</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_bottom=\"0\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/fat-dissolving/cellulite-treatment/\">Cellulite Treatment</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/fat-dissolving/body-fat/\">Body fat</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/fat-dissolving/double-chin/\">Double Chin</a></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"var(--awb-color4)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/prp/\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_top=\"-13px\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/prp/hair-loss/\">Hair Loss</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/prp/face-rejuvenation/\">Face Rejuvenation</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/prp/acne-scar-treatment/\">Acne Scar Treatment</a></p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/\"]\r\n<p><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_top=\"-13px\"]\r\n<p><a href=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/high-dose-vitamin-c/\">High-Dose Vitamin C</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/glutathione-iv/\">Glutathione IV</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/nad-iv/\">NAD+ IV</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/vitamin-injections/\">Vitamin Injections</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/brightening-iv/\">Brightening IV</a></p>\r\n<p><a href=\"https://dr.frex.digital/treatments/iv-therapy-and-wellness/stem-cell-iv/\">Stem Cell IV</a></p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Skin Lesion Removal</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"15px\" /][fusion_text 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=\"13px\" line_height=\"1.3\" text_color=\"var(--awb-color8)\" margin_bottom=\"0\"]\r\n<p data-path-to-node=\"9,3,1,0,0\"><a href=\"https://dr.frex.digital/treatments/skin-lesion-removal/skin-tag-and-mole-removal/\">Skin Tag &amp; Mole Removal</a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","publish","closed","closed","","treatments","","","2026-06-30 13:49:46","2026-06-30 13:49:46","","0","https://dr.frex.digital/fusion_element/treatments/","0","fusion_element","","0"),
("1035","1","2026-06-02 16:47:32","2026-06-02 16:47:32","","Botox & Anti-Wrinkle Pic copy2","","inherit","open","closed","","botox-anti-wrinkle-pic-copy2","","","2026-06-02 16:47:32","2026-06-02 16:47:32","","939","https://dr.frex.digital/wp-content/uploads/2026/06/Botox-Anti-Wrinkle-Pic-copy2.jpg","0","attachment","image/jpeg","0"),
("1036","1","2026-06-02 16:48:21","2026-06-02 16:48:21","","DrSoheila - Picture copy2","","inherit","open","closed","","drsoheila-picture-copy2","","","2026-06-02 16:48:21","2026-06-02 16:48:21","","0","https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg","0","attachment","image/jpeg","0"),
("1037","1","2026-06-02 16:48:26","2026-06-02 16:48: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_images=\"96,217,243\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" aspect_ratio_position=\"\" masonry_image_position=\"\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 16:48:26","2026-06-02 16:48:26","","5","https://dr.frex.digital/?p=1037","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1038","1","2026-06-02 16:52:48","2026-06-02 16:52:48","","topology","","inherit","open","closed","","topology","","","2026-06-02 16:52:48","2026-06-02 16:52:48","","1034","https://dr.frex.digital/wp-content/uploads/2026/06/topology.jpg","0","attachment","image/jpeg","0"),
("1039","1","2026-06-02 16:52:50","2026-06-02 16:52:50","","galery-img-4","","inherit","open","closed","","galery-img-4","","","2026-06-02 16:52:50","2026-06-02 16:52:50","","1034","https://dr.frex.digital/wp-content/uploads/2026/06/galery-img-4.jpg","0","attachment","image/jpeg","0"),
("1040","1","2026-06-02 16:52:52","2026-06-02 16:52:52","","443","","inherit","open","closed","","443","","","2026-06-02 16:52:52","2026-06-02 16:52:52","","1034","https://dr.frex.digital/wp-content/uploads/2026/06/443.jpg","0","attachment","image/jpeg","0"),
("1041","1","2026-06-02 16:53:07","2026-06-02 16:53: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"#111111\" link_hover_color=\"#f63232\"][fusion_builder_row][fusion_builder_column type=\"26.00\" layout=\"26.00\" 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\" padding_top=\"40px\" padding_right=\"45px\" padding_bottom=\"45px\" padding_left=\"45px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"rgba(254,240,240,1)\" last=\"false\" border_position=\"all\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/topology.jpg\" type_medium=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n\r\ncategories\r\n\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(246,49,49,0.3)\" bottom_margin=\"40px\" /][fusion_submenu menu=\"mega-menu-food-categories\" 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=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" fusion_font_variant_typography=\"700\" fusion_font_family_typography=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" gap=\"25px\" color=\"#111111\" border_bottom=\"1px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" active_color=\"#f63232\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" border_color=\"rgba(110,110,110,0)\" active_border_color=\"#6d6d6d\" /][/fusion_builder_column][fusion_builder_column type=\"28.00\" layout=\"28.00\" 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\" padding_top=\"40px\" padding_right=\"45px\" padding_bottom=\"25px\" padding_left=\"45px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n\r\nfeatured recipes\r\n\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n\r\n<a href=\"#\">classic baked salmon</a>\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\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n\r\nMain Dishes\r\n\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n\r\n<a href=\"#\">stuffed chicken</a> Breast\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\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"46.00\" layout=\"46.00\" 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\" padding_top=\"40px\" padding_right=\"45px\" padding_bottom=\"25px\" padding_left=\"45px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]recipes of the day[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" spacing_right=\"8px\" 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=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1039|full\" margin_bottom=\"25px\" borderradius=\"5px\"]https://dr.frex.digital/wp-content/uploads/2026/06/galery-img-4.jpg[/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\" fusion_font_variant_text_font=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]<a href=\"#\">Mexican Taco Recipe</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n\r\n15 mins\r\n\r\n[/fusion_text][/fusion_builder_column_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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" spacing_left=\"8px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1040|full\" margin_bottom=\"25px\" borderradius=\"5px\"]https://dr.frex.digital/wp-content/uploads/2026/06/443.jpg[/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\" fusion_font_variant_text_font=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]<a href=\"#\">italian pizza recipe</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n\r\n28 mins\r\n\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View More</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"100.00\" layout=\"100.00\" align_self=\"stretch\" content_layout=\"row\" align_content=\"center\" 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\" padding_top=\"25px\" padding_right=\"45px\" padding_bottom=\"25px\" padding_left=\"45px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" background_color=\"#f5f5f5\" margin_top=\"0px\" type_medium=\"1_1\" margin_bottom=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"16px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n\r\nsubmit a recipe today!\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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"var(--awb-typography4-line-height)\" letter_spacing=\"var(--awb-typography4-letter-spacing)\" text_transform=\"var(--awb-typography4-text-transform)\" text_color=\"#111111\" content_alignment=\"center\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]Do you have a favorite recipe and want to share it with us? <a href=\"#\"><u><span style=\"color: #f63232;\"> Send your Recipes</span></u></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-02 16:53:07","2026-06-02 16:53:07","","1034","https://dr.frex.digital/?p=1041","0","revision","","0"),
("1042","1","2026-06-02 16:59:32","2026-06-02 16:59: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"#111111\" link_hover_color=\"#f63232\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"rgba(254,240,240,1)\" last=\"false\" border_position=\"all\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/topology.jpg\" type_medium=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>categories</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(246,49,49,0.3)\" bottom_margin=\"40px\" /][fusion_submenu menu=\"mega-menu-food-categories\" 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=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" fusion_font_variant_typography=\"700\" fusion_font_family_typography=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" gap=\"25px\" color=\"#111111\" border_bottom=\"1px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" active_color=\"#f63232\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" border_color=\"rgba(110,110,110,0)\" active_border_color=\"#6d6d6d\" /][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-02 16:59:32","2026-06-02 16:59:32","","1034","https://dr.frex.digital/?p=1042","0","revision","","0"),
("1043","1","2026-06-02 17:03:21","2026-06-02 17:03: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"#111111\" link_hover_color=\"#f63232\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"rgba(254,240,240,1)\" last=\"false\" border_position=\"all\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/topology.jpg\" type_medium=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"#f63232\"]<p>Botox &amp; Anti-Wrinkle</p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(246,49,49,0.3)\" bottom_margin=\"40px\" /][fusion_submenu menu=\"mega-menu-food-categories\" 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=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" fusion_font_variant_typography=\"700\" fusion_font_family_typography=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" gap=\"25px\" color=\"#111111\" border_bottom=\"1px\" border_right=\"0px\" border_top=\"0px\" border_left=\"0px\" active_color=\"#f63232\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" border_color=\"rgba(110,110,110,0)\" active_border_color=\"#6d6d6d\" /][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"28.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" fusion_font_family_title_font=\"Merriweather\" font_size=\"15px\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"0.12em\" text_transform=\"capitalize\" text_color=\"#f63232\"]\r\n<p>featured recipes</p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"rgba(18,18,18,0.3)\" bottom_margin=\"40px\" /][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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\"]\r\n<p><a href=\"#\">classic baked salmon</a></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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]\r\n<p>Main Dishes</p>\r\n[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">homemade pancakes</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Desserts[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]<a href=\"#\">filipino sweet spaghetti</a>[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Traditional Recipes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"700\" fusion_font_family_text_font=\"Merriweather\" font_size=\"16px\" line_height=\"1.2\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"capitalize\" text_color=\"#111111\" margin_bottom=\"5px\" margin_top=\"5px\"]\r\n<p><a href=\"#\">stuffed chicken</a> Breast</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=\"rgba(166,166,166,1)\" fusion_font_variant_text_font=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_top=\"0px\"]Chicken Dishes[/fusion_text][/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=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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=\"400\" fusion_font_family_text_font=\"Merriweather\" font_size=\"14px\" line_height=\"var(--awb-typography5-line-height)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"#f63232\" margin_top=\"5px\"]<a href=\"#\"><u><span style=\"color: #f63232;\">View All</span></u></a>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-02 17:03:21","2026-06-02 17:03:21","","1034","https://dr.frex.digital/?p=1043","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1044","1","2026-06-02 17:04:45","2026-06-02 17:04:45","","0602","","inherit","open","closed","","0602","","","2026-06-02 17:04:45","2026-06-02 17:04:45","","0","https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4","0","attachment","video/mp4","0"),
("1045","1","2026-06-02 17:05:00","2026-06-02 17:05: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 17:05:00","2026-06-02 17:05:00","","5","https://dr.frex.digital/?p=1045","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1046","1","2026-06-02 17:07:45","2026-06-02 17:07: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\" 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_color=\"var(--awb-color6)\" gradient_end_color=\"var(--awb-color7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\" video_webm=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\" video_ogv=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 17:07:45","2026-06-02 17:07:45","","5","https://dr.frex.digital/?p=1046","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1047","1","2026-06-02 17:12:21","2026-06-02 17:12:21","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 17:12:21","2026-06-02 17:12:21","","5","https://dr.frex.digital/?p=1047","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1048","1","2026-06-02 17:18:23","2026-06-02 17:18:23","","0602(1)","","inherit","open","closed","","06021","","","2026-06-02 17:18:23","2026-06-02 17:18:23","","0","https://dr.frex.digital/wp-content/uploads/2026/06/06021.mp4","0","attachment","video/mp4","0"),
("1049","1","2026-06-02 17:19:35","2026-06-02 17:19: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/06021.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 17:19:35","2026-06-02 17:19:35","","5","https://dr.frex.digital/?p=1049","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1050","1","2026-06-02 17:22:26","2026-06-02 17:22: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-5-copy.jpg\" image_id=\"1008\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 17:22:26","2026-06-02 17:22:26","","5","https://dr.frex.digital/?p=1050","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1051","1","2026-06-02 17:31:50","2026-06-02 17:31: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p><strong>Botox &amp; Anti-Wrinkle</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" font_size=\"14px\" line_height=\"1.4\"]<p>Forehead &amp; Crow\'s Feet</p><p>Nefertiti Neck Lift &amp; Lower Face</p><p>Lip Flip</p><p>Underarm Hyperhidrosis</p><p>Hands &amp; Feet Hyperhidrosis</p><p>Botox for Muscle Spasm</p><p>Trap / Barbie Botox</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]<p>Lip Filler (Natural &amp; Russian)</p><p>Face Lift with Filler</p><p>Cheek Filler</p><p>Temple Filler</p><p>Chin Filler</p><p>Jawline Filler</p><p>Face Contouring</p><p>Smile Lines (Nasolabial)</p><p>Under-Eye Filler</p><p>Tear Trough</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p><strong>Skin Boosters</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]<p>Profhilo</p><p>Jalupro</p><p>Sunekos</p><p>NCTF</p>[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p><strong>PDRN / Salmon DNA</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]<p>Rejuran</p><p>Plinest</p><p>TWAC</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p><strong>Biostimulators</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]<p>Sculptra</p><p>Radiesse</p>[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p><strong>Microneedling</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p><p>Exosome Microneedling (Face · Hair Loss)</p><p>Growth Factor Microneedling</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p><strong>PRP</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]<p>Hair Loss</p><p>Face Rejuvenation</p>[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]<p>High-Dose Vitamin C</p><p>Glutathione IV</p><p>NAD+ IV</p><p>Vitamin Injections</p><p>Brightening IV</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-02 17:31:50","2026-06-02 17:31:50","","1034","https://dr.frex.digital/?p=1051","0","revision","","0"),
("1052","1","2026-06-02 17:51:21","2026-06-02 17:51:21","This cookie is used to store the user\'s cookie consent preferences.","Cookie Preferences","","publish","closed","closed","","cookie-preferences","","","2026-06-02 17:51:21","2026-06-02 17:51:21","","0","https://dr.frex.digital/wpconsent_cookie/cookie-preferences/","0","wpconsent_cookie","","0"),
("1053","1","2026-06-02 18:00:59","2026-06-02 18:00:59","","Before After - Lip Filler","","inherit","open","closed","","before-after-lip-filler","","","2026-06-02 18:00:59","2026-06-02 18:00:59","","0","https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg","0","attachment","image/jpeg","0"),
("1054","1","2026-06-02 18:02:33","2026-06-02 18:02: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:02:33","2026-06-02 18:02:33","","5","https://dr.frex.digital/?p=1054","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1055","1","2026-06-02 18:04:20","2026-06-02 18:04: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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=\"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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/banner-1-scaled.jpg\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:04:20","2026-06-02 18:04:20","","5","https://dr.frex.digital/?p=1055","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1056","1","2026-06-02 18:12:54","2026-06-02 18:12:54","","85ba4d1e-7d64-4caa-85a2-e87bd24086b6","","inherit","open","closed","","85ba4d1e-7d64-4caa-85a2-e87bd24086b6","","","2026-06-02 18:12:54","2026-06-02 18:12:54","","0","https://dr.frex.digital/wp-content/uploads/2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6.png","0","attachment","image/png","0"),
("1057","1","2026-06-02 18:13:09","2026-06-02 18:13:09","","85ba4d1e-7d64-4caa-85a2-e87bd24086b6","","inherit","open","closed","","85ba4d1e-7d64-4caa-85a2-e87bd24086b6-2","","","2026-06-02 18:13:09","2026-06-02 18:13:09","","0","https://dr.frex.digital/wp-content/uploads/2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1.png","0","attachment","image/png","0"),
("1058","1","2026-06-02 18:14:44","2026-06-02 18:14: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-scaled.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:14:44","2026-06-02 18:14:44","","5","https://dr.frex.digital/?p=1058","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1059","1","2026-06-02 18:16:34","2026-06-02 18:16: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" background_repeat=\"no-repeat\" fade=\"yes\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/85ba4d1e-7d64-4caa-85a2-e87bd24086b6-1-scaled.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:16:34","2026-06-02 18:16:34","","5","https://dr.frex.digital/?p=1059","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1060","1","2026-06-02 18:17:46","2026-06-02 18:17:46","","4ae13b0d-0273-4b55-aa97-81db8fd465fd","","inherit","open","closed","","4ae13b0d-0273-4b55-aa97-81db8fd465fd","","","2026-06-02 18:17:46","2026-06-02 18:17:46","","0","https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd.png","0","attachment","image/png","0"),
("1061","1","2026-06-02 18:18:03","2026-06-02 18:18: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" background_repeat=\"no-repeat\" fade=\"yes\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:18:03","2026-06-02 18:18:03","","5","https://dr.frex.digital/?p=1061","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1062","1","2026-06-02 18:19:05","2026-06-02 18:19: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:19:05","2026-06-02 18:19:05","","5","https://dr.frex.digital/?p=1062","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1063","1","2026-06-02 18:19:34","2026-06-02 18:19: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:19:34","2026-06-02 18:19:34","","5","https://dr.frex.digital/?p=1063","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1064","1","2026-06-02 18:20:57","2026-06-02 18:20:57","","4ae13b0d-0273-4b55-aa97-81db8fd465fd","","inherit","open","closed","","4ae13b0d-0273-4b55-aa97-81db8fd465fd-2","","","2026-06-02 18:20:57","2026-06-02 18:20:57","","0","https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd-1.png","0","attachment","image/png","0"),
("1065","1","2026-06-02 18:21:21","2026-06-02 18:21: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd-1.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:21:21","2026-06-02 18:21:21","","5","https://dr.frex.digital/?p=1065","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1066","1","2026-06-02 18:27:16","2026-06-02 18:27:16","[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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" background_color=\"var(--awb-color1)\" padding_top=\"105px\" padding_right=\"110px\" padding_bottom=\"105px\" padding_left=\"110px\" padding_top_small=\"30px\" padding_left_small=\"30px\" padding_bottom_small=\"30px\" padding_right_small=\"30px\" first=\"true\" min_height=\"\" link=\"\"][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\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" margin_bottom_small=\"38px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\"]Join Our Dance 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\"]Get the latest news, updates and offers from our studio delivered to your inbox.[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"222|full\"]https://dr.frex.digital/wp-content/uploads/2023/07/signature-1.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" element_content=\"\" padding_left_small=\"0px\" spacing_left_small=\"0%\" spacing_right_small=\"0%\" first=\"false\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"224\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","CTA","","publish","closed","closed","","cta","","","2026-06-02 18:27:16","2026-06-02 18:27:16","","0","https://dr.frex.digital/fusion_element/cta/","0","fusion_element","","0"),
("1067","1","2026-06-02 18:28:08","2026-06-02 18:28:08","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd-1.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:28:08","2026-06-02 18:28:08","","5","https://dr.frex.digital/?p=1067","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1068","1","2026-06-02 18:28:26","2026-06-02 18:28: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd-1.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:28:26","2026-06-02 18:28:26","","5","https://dr.frex.digital/?p=1068","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1069","1","2026-06-02 18:31:33","2026-06-02 18:31: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/4ae13b0d-0273-4b55-aa97-81db8fd465fd-1.png\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" background_color=\"var(--awb-color1)\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-02 18:31:33","2026-06-02 18:31:33","","5","https://dr.frex.digital/?p=1069","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1070","1","2026-06-04 14:28:25","2026-06-04 14:28: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"125px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.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)\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>COSMETIC CLINIC DUBAI</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)\"]\r\n<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]\r\n<p>Quick access</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)\"]\r\n<p><u>Treatments</u></p>\r\n<p><u>Consultation</u></p>\r\n<p><u>Book a Consultation</u></p>\r\n<p><u>About Us</u></p>\r\n[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]\r\n<p>Contact</p>\r\n[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>\r\n[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]\r\n<p>+971 50 514 5129</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHN0eWxlPSJib3JkZXI6MDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-04 14:28:25","2026-06-04 14:28:25","","160","https://dr.frex.digital/?p=1070","0","revision","","0"),
("1071","1","2026-06-04 14:28:40","2026-06-04 14:28: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"50px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.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)\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>COSMETIC CLINIC DUBAI</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)\"]\r\n<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]\r\n<p>Quick access</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)\"]\r\n<p><u>Treatments</u></p>\r\n<p><u>Consultation</u></p>\r\n<p><u>Book a Consultation</u></p>\r\n<p><u>About Us</u></p>\r\n[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]\r\n<p>Contact</p>\r\n[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>\r\n[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]\r\n<p>+971 50 514 5129</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHN0eWxlPSJib3JkZXI6MDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-04 14:28:40","2026-06-04 14:28:40","","160","https://dr.frex.digital/?p=1071","0","revision","","0"),
("1072","1","2026-06-04 14:50:22","2026-06-04 14:50:22","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-04 14:50:22","2026-06-04 14:50:22","","5","https://dr.frex.digital/?p=1072","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1073","1","2026-06-04 14:52:00","2026-06-04 14:52: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"24px\" padding_bottom=\"24px\" background_color=\"#f5c857\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color3)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" gradient_start_color=\"var(--awb-color5)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-04 14:52:00","2026-06-04 14:52:00","","5","https://dr.frex.digital/?p=1073","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1074","1","2026-06-04 14:57:41","2026-06-04 14:57: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" gradient_start_color=\"var(--awb-color5)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]<blockquote style=\"background:\" \"black\";=\"\">\nMy goal is results that look like you refreshed, balanced and never overdone.</blockquote>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-04 14:57:41","2026-06-04 14:57:41","","5","https://dr.frex.digital/?p=1074","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1075","1","2026-06-04 15:00:14","2026-06-04 15:00:14","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-04 15:00:14","2026-06-04 15:00:14","","289","https://dr.frex.digital/?p=1075","0","revision","","0"),
("1076","1","2026-06-04 15:02:16","2026-06-04 15:02:16","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-04 15:02:16","2026-06-04 15:02:16","","289","https://dr.frex.digital/?p=1076","0","revision","","0"),
("1077","1","2026-06-04 15:02:37","2026-06-04 15:02:37","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-04 15:02:37","2026-06-04 15:02:37","","289","https://dr.frex.digital/?p=1077","0","revision","","0"),
("1078","1","2026-06-04 15:04:59","2026-06-04 15:04:59","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-04 15:04:59","2026-06-04 15:04:59","","289","https://dr.frex.digital/?p=1078","0","revision","","0"),
("1079","1","2026-06-04 15:05:54","2026-06-04 15:05: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\"><p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p></blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-04 15:05:54","2026-06-04 15:05:54","","5","https://dr.frex.digital/?p=1079","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1080","1","2026-06-04 15:11:28","2026-06-04 15:11:28","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\">\r\n<p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"below\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-04 15:11:28","2026-06-04 15:11:28","","5","https://dr.frex.digital/?p=1080","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1081","1","2026-06-05 13:43:48","2026-06-05 13:43:48","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" margin_bottom=\"-40px\" padding_top=\"40\" last=\"true\" border_position=\"all\" first=\"true\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-05 13:43:48","2026-06-05 13:43:48","","289","https://dr.frex.digital/?p=1081","0","revision","","0"),
("1082","1","2026-06-05 13:47:25","2026-06-05 13:47:25","[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"auto\" 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\" padding_top=\"200px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" padding_bottom=\"20px\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" padding_top_small=\"233.844px\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" layout=\"1_1\" align_self=\"stretch\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_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=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"25px\" last=\"true\" border_position=\"all\" margin_bottom=\"0px\" padding_bottom=\"25px\" first=\"true\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"5px\" margin_top=\"0\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" font_size=\"16px\"]\n<p>Instructor name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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=\"20px\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_bottom=\"20px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJ0cmVhdG1lbnQiLCJzdG9yZV9pZCI6ImFjZl90ZXh0In19\"]\n<p>class</p>\n[/fusion_text][fusion_social_links show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"14px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color8)\" tooltip_placement=\"bottom\" alignment=\"center\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 10%))\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Instructor 1","","inherit","closed","closed","","313-revision-v1","","","2026-06-05 13:47:25","2026-06-05 13:47:25","","313","https://dr.frex.digital/?p=1082","0","revision","","0"),
("1083","1","2026-06-05 13:51:42","2026-06-05 13:51: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\">\r\n<p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-05 13:51:42","2026-06-05 13:51:42","","5","https://dr.frex.digital/?p=1083","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1084","1","2026-06-05 13:57:22","2026-06-05 13:57:22","[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\" padding_top=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" spacing=\"\" center_content=\"no\" column_tag=\"div\" link=\"\" target=\"_self\" link_description=\"\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" class=\"\" id=\"\" 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\" spacing_left_medium=\"\" spacing_right_medium=\"\" spacing_left_small=\"\" spacing_right_small=\"\" spacing_left=\"\" spacing_right=\"\" margin_top_medium=\"\" margin_bottom_medium=\"\" margin_top_small=\"\" margin_bottom_small=\"\" margin_top=\"\" margin_bottom=\"-40px\" padding_top_medium=\"\" padding_right_medium=\"\" padding_bottom_medium=\"\" padding_left_medium=\"\" padding_top_small=\"\" padding_right_small=\"\" padding_bottom_small=\"\" padding_left_small=\"\" padding_top=\"40\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" hover_type=\"none\" border_sizes_top=\"\" border_sizes_right=\"\" border_sizes_bottom=\"\" border_sizes_left=\"\" border_color_hover=\"\" hue=\"\" saturation=\"\" lightness=\"\" alpha=\"\" border_color=\"\" border_style=\"solid\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" z_index_hover=\"\" z_index=\"999\" overflow=\"\" background_type=\"single\" background_color_medium=\"\" background_color_small=\"\" background_color_medium_hover=\"\" background_color_small_hover=\"\" background_color_hover=\"\" background_color=\"var(--awb-color1)\" 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_image_medium=\"\" background_image_small=\"\" background_image=\"\" background_image_id_medium=\"\" background_image_id_small=\"\" background_image_id=\"\" lazy_load=\"none\" skip_lazy_load=\"\" background_position_medium=\"\" background_position_small=\"\" background_position=\"left top\" background_repeat_medium=\"\" background_repeat_small=\"\" background_repeat=\"no-repeat\" background_size_medium=\"\" background_size_small=\"\" background_size=\"\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode_medium=\"\" background_blend_mode_small=\"\" background_blend_mode=\"none\" background_slider_images=\"\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" background_slider_blend_mode=\"\" render_logics=\"\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"\" absolute=\"off\" absolute_top=\"\" absolute_right=\"\" absolute_bottom=\"\" absolute_left=\"\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"parent\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_origin=\"\" transition_duration=\"300\" transition_easing=\"ease\" transition_custom_easing=\"\" motion_effects=\"W10=\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_type=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" animation_offset=\"\" last=\"no\" border_position=\"all\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\r\n\r\nClass name\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\" content_alignment=\"center\" margin_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\r\n\r\nIn ultricies tristique vestibulum.\r\n\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-05 13:57:22","2026-06-05 13:57:22","","289","https://dr.frex.digital/?p=1084","0","revision","","0"),
("1085","1","2026-06-05 17:00:47","2026-06-05 17:00:47","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"-40px\" padding_top=\"40\" hover_type=\"none\" border_style=\"solid\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"999\" background_type=\"single\" background_color=\"var(--awb-color1)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"parent\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-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\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-05 17:00:47","2026-06-05 17:00:47","","289","https://dr.frex.digital/?p=1085","0","revision","","0"),
("1086","1","2026-06-05 17:11:52","2026-06-05 17:11:52","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"-40px\" padding_top=\"40\" hover_type=\"none\" border_style=\"solid\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color1)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"parent\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-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\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-05 17:11:52","2026-06-05 17:11:52","","289","https://dr.frex.digital/?p=1086","0","revision","","0"),
("1087","1","2026-06-05 17:22:30","2026-06-05 17:22:30","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" overflow=\"hidden\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"-40px\" padding_top=\"40\" hover_type=\"none\" border_style=\"solid\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color1)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"parent\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" overflow=\"visible\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-05 17:22:30","2026-06-05 17:22:30","","289","https://dr.frex.digital/?p=1087","0","revision","","0"),
("1088","1","2026-06-05 17:23:01","2026-06-05 17:23:01","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"-40px\" padding_top=\"40\" hover_type=\"none\" border_style=\"solid\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color1)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"parent\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-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\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-05 17:23:01","2026-06-05 17:23:01","","289","https://dr.frex.digital/?p=1088","0","revision","","0"),
("1089","1","2026-06-05 17:26:54","0000-00-00 00:00:00","Thank you for reading this post, don\'t forget to subscribe!","Display a message after the 1st paragraph of posts","","draft","closed","closed","","","","","2026-06-05 17:26:54","0000-00-00 00:00:00","","0","https://dr.frex.digital/?post_type=wpcode&p=1089","0","wpcode","","0"),
("1090","1","2026-06-05 17:26:54","0000-00-00 00:00:00","add_action(\'admin_init\', function () {\r\n    // Redirect any user trying to access comments page\r\n    global $pagenow;\r\n    \r\n    if ($pagenow === \'edit-comments.php\') {\r\n        wp_safe_redirect(admin_url());\r\n        exit;\r\n    }\r\n\r\n    // Remove comments metabox from dashboard\r\n    remove_meta_box(\'dashboard_recent_comments\', \'dashboard\', \'normal\');\r\n\r\n    // Disable support for comments and trackbacks in post types\r\n    foreach (get_post_types() as $post_type) {\r\n        if (post_type_supports($post_type, \'comments\')) {\r\n            remove_post_type_support($post_type, \'comments\');\r\n            remove_post_type_support($post_type, \'trackbacks\');\r\n        }\r\n    }\r\n});\r\n\r\n// Close comments on the front-end\r\nadd_filter(\'comments_open\', \'__return_false\', 20, 2);\r\nadd_filter(\'pings_open\', \'__return_false\', 20, 2);\r\n\r\n// Hide existing comments\r\nadd_filter(\'comments_array\', \'__return_empty_array\', 10, 2);\r\n\r\n// Remove comments page in menu\r\nadd_action(\'admin_menu\', function () {\r\n    remove_menu_page(\'edit-comments.php\');\r\n});\r\n\r\n// Remove comments links from admin bar\r\nadd_action(\'init\', function () {\r\n    if (is_admin_bar_showing()) {\r\n        remove_action(\'admin_bar_menu\', \'wp_admin_bar_comments_menu\', 60);\r\n    }\r\n});","Completely Disable Comments","","draft","closed","closed","","","","","2026-06-05 17:26:54","0000-00-00 00:00:00","","0","https://dr.frex.digital/?post_type=wpcode&p=1090","0","wpcode","","0"),
("1091","1","2026-06-05 17:28:54","2026-06-05 17:28:54",".fusion-post-cards.awb-carousel {\r\n    overflow-x: clip !important; \r\n    overflow-y: visible !important;\r\n    padding-bottom: 85px !important;\r\n    \r\n    padding-left: 20px !important;\r\n    padding-right: 20px !important;\r\n    margin-left: -20px !important;\r\n    margin-right: -20px !important;\r\n    width: calc(100% + 40px) !important;\r\n    max-width: calc(100% + 40px) !important;\r\n}\r\n\r\n.fusion-post-cards.awb-carousel .swiper-wrapper {\r\n    padding-bottom: 0 !important;\r\n    overflow: visible !important;\r\n}\r\n\r\n.fusion-post-cards.awb-carousel .post-card,\r\n.fusion-post-cards.awb-carousel .fusion-carousel-item-wrapper {\r\n    --awb-overflow: visible !important;\r\n    overflow: visible !important;\r\n}\r\n\r\n.fusion-post-cards .post-card > .fusion-column-wrapper {\r\n    border-radius: var(--awb-border-radius) !important;\r\n}","post cards css","","publish","closed","closed","","post-cards-css","","","2026-06-16 13:34:58","2026-06-16 13:34:58","","0","https://dr.frex.digital/wpcode/post-cards-css/","0","wpcode","","0"),
("1092","1","2026-06-05 17:34:14","2026-06-05 17:34:14","[fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"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_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color7)\" gradient_start_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.6)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" 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_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwiYmFja2dyb3VuZF9pbWFnZSI6IiIsInR5cGUiOiJtYWluIiwiZmFsbGJhY2siOiIifX0=\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"no\" 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\" text_color=\"var(--awb-color1)\" item_border_top=\"1px\" item_border_right=\"1px\" item_border_bottom=\"1px\" item_border_left=\"1px\" border_top=\"0\" border_right=\"0\" border_bottom=\"0\" border_left=\"0\" item_border_color=\"var(--awb-color1)\" item_padding_top=\"6px\" item_padding_right=\"7px\" item_padding_bottom=\"6px\" item_padding_left=\"7px\" item_border_radius_top_left=\"7px\" item_border_radius_top_right=\"7px\" item_border_radius_bottom_right=\"7px\" item_border_radius_bottom_left=\"7px\" /][fusion_separator style_type=\"none\" flex_grow=\"1\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" bottom_margin=\"15vw\" /][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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==\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]Your Content Goes Here[/fusion_title][/fusion_builder_column]","Blog 1","","inherit","closed","closed","","204-revision-v1","","","2026-06-05 17:34:14","2026-06-05 17:34:14","","204","https://dr.frex.digital/?p=1092","0","revision","","0"),
("1093","1","2026-06-05 17:35:07","2026-06-05 17:35: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"50px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.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)\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>COSMETIC CLINIC DUBAI</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)\"]\r\n<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]\r\n<p>Quick access</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)\"]\r\n<p><u>Treatments</u></p>\r\n<p><u>Consultation</u></p>\r\n<p><u>Book a Consultation</u></p>\r\n<p><u>About Us</u></p>\r\n[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\"]\r\n<p>Contact</p>\r\n[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>\r\n[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]\r\n<p>+971 50 514 5129</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHN0eWxlPSJib3JkZXI6MDsgYm9yZGVyLXJhZGl1czogMTBweDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-05 17:35:07","2026-06-05 17:35:07","","160","https://dr.frex.digital/?p=1093","0","revision","","0"),
("1094","1","2026-06-05 17:40:14","2026-06-05 17:40: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color6)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" gradient_start_color=\"rgba(0,0,0,0.4)\" gradient_end_color=\"rgba(0,0,0,0.4)\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0602.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\">\r\n<p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-05 17:40:14","2026-06-05 17:40:14","","5","https://dr.frex.digital/?p=1094","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1095","1","2026-06-05 19:45:30","2026-06-05 19:45:30","","0602(2) (2)","","inherit","open","closed","","06022-2","","","2026-06-05 19:45:30","2026-06-05 19:45:30","","0","https://dr.frex.digital/wp-content/uploads/2026/06/06022-2.mp4","0","attachment","video/mp4","0"),
("1096","1","2026-06-05 19:45:58","2026-06-05 19:45:58","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/06022-2.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\">\r\n<p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-05 19:45:58","2026-06-05 19:45:58","","5","https://dr.frex.digital/?p=1096","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1097","1","2026-06-05 19:47:11","2026-06-05 19:47:11","","0602(2)(1)","","inherit","open","closed","","060221","","","2026-06-05 19:47:11","2026-06-05 19:47:11","","0","https://dr.frex.digital/wp-content/uploads/2026/06/060221.mp4","0","attachment","video/mp4","0"),
("1098","1","2026-06-05 19:47:24","2026-06-05 19:47: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/060221.mp4\" gradient_start_color=\"var(--awb-color2)\" gradient_end_color=\"var(--awb-color2)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\">\r\n<p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-05 19:47:24","2026-06-05 19:47:24","","5","https://dr.frex.digital/?p=1098","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1099","1","2026-06-05 19:48:31","2026-06-05 19:48: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/060221.mp4\" background_color=\"rgba(223,222,224,0.83)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\">\r\n<p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-05 19:48:31","2026-06-05 19:48:31","","5","https://dr.frex.digital/?p=1099","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1100","1","2026-06-05 19:48:57","2026-06-05 19:48: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/060221.mp4\" background_color=\"rgba(45,45,45,0.83)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote style=\"background:\" \"black\";=\"\">\r\n<p>\r\nMy goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-05 19:48:57","2026-06-05 19:48:57","","5","https://dr.frex.digital/?p=1100","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1101","1","2026-06-06 13:41:12","2026-06-06 13:41: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"24px\" border_radius_top_left=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 13:41:12","2026-06-06 13:41:12","","1034","https://dr.frex.digital/?p=1101","0","revision","","0"),
("1102","1","2026-06-06 13:41:49","2026-06-06 13:41: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"20px\" border_radius_top_left=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 13:41:49","2026-06-06 13:41:49","","1034","https://dr.frex.digital/?p=1102","0","revision","","0"),
("1103","1","2026-06-06 13:42:48","2026-06-06 13:42:48","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"16px\" submenu_border_radius_top_right=\"16px\" submenu_border_radius_bottom_right=\"16px\" submenu_border_radius_bottom_left=\"16px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 13:42:48","2026-06-06 13:42:48","","880","https://dr.frex.digital/?p=1103","0","revision","","0"),
("1104","1","2026-06-06 13:44:05","2026-06-06 13:44:05","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 13:44:05","2026-06-06 13:44:05","","880","https://dr.frex.digital/?p=1104","0","revision","","0"),
("1105","1","2026-06-06 13:45:06","2026-06-06 13:45: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 13:45:06","2026-06-06 13:45:06","","1034","https://dr.frex.digital/?p=1105","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1107","1","2026-06-06 16:34:30","2026-06-06 16:34:30","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 16:34:30","2026-06-06 16:34:30","","922","https://dr.frex.digital/?p=1107","0","revision","","0"),
("1108","1","2026-06-06 16:41:16","2026-06-06 16:41:16","","BG03","","inherit","open","closed","","bg03","","","2026-06-06 16:41:16","2026-06-06 16:41:16","","0","https://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg","0","attachment","image/jpeg","0"),
("1109","1","2026-06-06 16:51:50","2026-06-06 16:51: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"60px\" padding_bottom=\"60px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Our Treatment Services</p>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"27px\"]<p>Tailored Solutions For Timeless Beauty</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 16:51:50","2026-06-06 16:51:50","","922","https://dr.frex.digital/?p=1109","0","revision","","0"),
("1110","1","2026-06-06 16:54:50","2026-06-06 16:54: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"90px\" padding_bottom=\"90px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Our Treatment Services</p>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"27px\"]<p>Tailored Solutions For Timeless Beauty</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 16:54:50","2026-06-06 16:54:50","","922","https://dr.frex.digital/?p=1110","0","revision","","0"),
("1111","1","2026-06-06 17:05:40","2026-06-06 17: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"90px\" padding_bottom=\"90px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Our Treatment Services</p>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"27px\"]<p>Tailored Solutions For Timeless Beauty</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column 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\" type_medium=\"\" type_small=\"\" type=\"30.00\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"3\" sep_color=\"var(--awb-color5)\" /][/fusion_builder_column][fusion_builder_column type=\"40.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\" type_medium=\"\" type_small=\"\" type=\"40.00\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"40px\"]<p>Botox &amp; Anti-Wrinkle</p>[/fusion_title][/fusion_builder_column][fusion_builder_column 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\" type=\"30.00\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" border_size=\"3\" sep_color=\"var(--awb-color5)\" /][/fusion_builder_column][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\"]<p>Botox &amp; Anti-Wrinkle</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 17:05:40","2026-06-06 17:05:40","","922","https://dr.frex.digital/?p=1111","0","revision","","0"),
("1112","1","2026-06-06 17:07:55","2026-06-06 17:07:55",".fusion-title .title-sep.sep-single.sep-solid {\r\n    border-top-width: 2px !important;\r\n}","Titles CSS","","publish","closed","closed","","titles-css","","","2026-06-06 17:14:56","2026-06-06 17:14:56","","0","https://dr.frex.digital/wpcode/titles-css/","0","wpcode","","0"),
("1113","1","2026-06-06 17:10:31","2026-06-06 17:10: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"90px\" padding_bottom=\"90px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Our Treatment Services</p>[/fusion_title][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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)\" font_size=\"27px\"]<p>Tailored Solutions For Timeless Beauty</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\"]<p>Botox &amp; Anti-Wrinkle</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 17:10:31","2026-06-06 17:10:31","","922","https://dr.frex.digital/?p=1113","0","revision","","0"),
("1114","1","2026-06-06 17:13:20","2026-06-06 17:13: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"50px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.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)\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>COSMETIC CLINIC DUBAI</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)\"]\r\n<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(255,195,19,0.7)\"]\r\n<p>Quick access</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)\"]\r\n<p><u>Treatments</u></p>\r\n<p><u>Consultation</u></p>\r\n<p><u>Book a Consultation</u></p>\r\n<p><u>About Us</u></p>\r\n[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(255,195,19,0.7)\"]\r\n<p>Contact</p>\r\n[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>\r\n[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]\r\n<p>+971 50 514 5129</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHN0eWxlPSJib3JkZXI6MDsgYm9yZGVyLXJhZGl1czogMTBweDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-06 17:13:20","2026-06-06 17:13:20","","160","https://dr.frex.digital/?p=1114","0","revision","","0"),
("1115","1","2026-06-06 17:14:26","2026-06-06 17:14: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"90px\" padding_bottom=\"90px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 17:14:26","2026-06-06 17:14:26","","922","https://dr.frex.digital/?p=1115","0","revision","","0"),
("1116","1","2026-06-06 17:51:01","2026-06-06 17:51:01","","forehead_1862845","","inherit","open","closed","","forehead_1862845","","","2026-06-06 17:51:01","2026-06-06 17:51:01","","0","https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png","0","attachment","image/png","0"),
("1117","1","2026-06-06 18:38:59","2026-06-06 18:38:59","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"90px\" padding_bottom=\"90px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"20px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 18:38:59","2026-06-06 18:38:59","","922","https://dr.frex.digital/?p=1117","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1118","1","2026-06-06 18:42:50","2026-06-06 18:42: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"90px\" padding_bottom=\"90px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 18:42:50","2026-06-06 18:42:50","","922","https://dr.frex.digital/?p=1118","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1119","1","2026-06-06 18:46:04","2026-06-06 18:46: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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 18:46:04","2026-06-06 18:46:04","","922","https://dr.frex.digital/?p=1119","0","revision","","0"),
("1120","1","2026-06-06 18:47:35","2026-06-06 18:47:35","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" phone=\"tel:+971505145129\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImJhY2tncm91bmRfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoiaGVhZGVyX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12\" submenu_border_radius_top_right=\"12\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Header","","inherit","closed","closed","","7-revision-v1","","","2026-06-06 18:47:35","2026-06-06 18:47:35","","7","https://dr.frex.digital/?p=1120","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1121","1","2026-06-06 18:49:34","2026-06-06 18:49: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"50px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.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)\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>COSMETIC CLINIC DUBAI</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)\"]\r\n<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(255,195,19,0.5)\"]\r\n<p>Quick access</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)\"]\r\n<p><u>Treatments</u></p>\r\n<p><u>Consultation</u></p>\r\n<p><u>Book a Consultation</u></p>\r\n<p><u>About Us</u></p>\r\n[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(255,195,19,0.5)\"]\r\n<p>Contact</p>\r\n[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>\r\n[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]\r\n<p>+971 50 514 5129</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHN0eWxlPSJib3JkZXI6MDsgYm9yZGVyLXJhZGl1czogMTBweDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-06 18:49:34","2026-06-06 18:49:34","","160","https://dr.frex.digital/?p=1121","0","revision","","0"),
("1122","1","2026-06-06 18:50:19","2026-06-06 18:50: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" background_color=\"var(--awb-color8)\" padding_top=\"125px\" padding_bottom=\"50px\" padding_top_small=\"70px\" admin_label=\"Footer - Content\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|full\" max_width=\"250px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X.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)\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>COSMETIC CLINIC DUBAI</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)\"]\r\n<p>Discover your natural beauty in the heart of Dubai. Expert aesthetic treatments for refined, lasting results.Your Content Goes Here</p>\r\n[/fusion_text][fusion_social_links icon_colors=\"var(--awb-color2)\" icon_colors_hover=\"var(--awb-color1)\" facebook=\"#\" show_custom=\"no\" animation_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\" instagram=\"https://www.instagram.com/dr_soheila\" whatsapp=\"https://wa.me/+971505145129\" linkedin=\"#\" font_size=\"22px\" /][/fusion_builder_column][fusion_builder_column type=\"25\" type=\"25\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(255,195,19,0.7)\"]\r\n<p>Quick access</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)\"]\r\n<p><u>Treatments</u></p>\r\n<p><u>Consultation</u></p>\r\n<p><u>Book a Consultation</u></p>\r\n<p><u>About Us</u></p>\r\n[/fusion_text][/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\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"up\" animation_speed=\"0.8\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" margin_top=\"20px\" animation_type=\"fade\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"yes\" text_shadow_blur=\"5\" 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\" font_size=\"25px\" text_color=\"var(--awb-color3)\" text_shadow_vertical=\"2\" text_shadow_horizontal=\"2\" text_shadow_color=\"rgba(255,195,19,0.7)\"]\r\n<p>Contact</p>\r\n[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" textcolor=\"var(--awb-color1)\" item_padding_bottom=\"20px\" size=\"15px\"][fusion_li_item icon=\"fusion-prefix-icon-dance-adress\"]\r\n<p>Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE</p>\r\n[/fusion_li_item][fusion_li_item icon=\"fusion-prefix-icon-dance-phone\"]\r\n<p>+971 50 514 5129</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_code]PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3Lmdvb2dsZS5jb20vbWFwcy9lbWJlZD9wYj0hMW0xOCExbTEyITFtMyExZDcyMjIuNDk5NDQyMDI3MDYxITJkNTUuMjIwNDkzMiEzZDI1LjE2MTA0NDQ5OTk5OTk5NiEybTMhMWYwITJmMCEzZjAhM20yITFpMTAyNCEyaTc2OCE0ZjEzLjEhM20zITFtMiExczB4M2U1ZjZhMjFmOGM2NTgyOSUzQTB4YTQ3NmY0ZWEwMDAyYTM4ZiEyc1JpdmllcmElMjBNZWRpY2FsJTIwQ2VudGVyITVlMCEzbTIhMXNlbiEyc2FlITR2MTc4MDU4MzI1NTE1OSE1bTIhMXNlbiEyc2FlIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIyMDAiIHN0eWxlPSJib3JkZXI6MDsgYm9yZGVyLXJhZGl1czogMTBweDsiIGFsbG93ZnVsbHNjcmVlbj0iIiBsb2FkaW5nPSJsYXp5IiByZWZlcnJlcnBvbGljeT0ibm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUiPjwvaWZyYW1lPg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Footer","","inherit","closed","closed","","160-revision-v1","","","2026-06-06 18:50:19","2026-06-06 18:50:19","","160","https://dr.frex.digital/?p=1122","0","revision","","0"),
("1123","1","2026-06-06 18:53:02","2026-06-06 18:53: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"20px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"60px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.15)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"0px\" background_color=\"rgba(255,195,19,0.15)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 18:53:02","2026-06-06 18:53:02","","922","https://dr.frex.digital/?p=1123","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1124","1","2026-06-06 18:54:36","2026-06-06 18:54: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 18:54:36","2026-06-06 18:54:36","","922","https://dr.frex.digital/?p=1124","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1125","1","2026-06-06 19:07:03","2026-06-06 19:07: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Skin Boosters</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Profhilo</strong></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=\"center\" font_size=\"13px\"]<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jalupro</strong></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=\"center\" font_size=\"13px\"]<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sunekos</strong></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=\"center\" font_size=\"13px\"]<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>NCTF</strong></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=\"center\" font_size=\"13px\"]<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 19:07:03","2026-06-06 19:07:03","","922","https://dr.frex.digital/?p=1125","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1126","1","2026-06-06 19:10:02","2026-06-06 19:10: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Skin Boosters</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Profhilo</strong></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=\"center\" font_size=\"13px\"]<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jalupro</strong></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=\"center\" font_size=\"13px\"]<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sunekos</strong></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=\"center\" font_size=\"13px\"]<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>NCTF</strong></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=\"center\" font_size=\"13px\"]<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>PDRN / Salmon DNA</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Rejuran</strong></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=\"center\" font_size=\"13px\"]<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Plinest</strong></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=\"center\" font_size=\"13px\"]<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>TWAC</strong></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=\"center\" font_size=\"13px\"]<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 19:10:02","2026-06-06 19:10:02","","922","https://dr.frex.digital/?p=1126","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1127","1","2026-06-06 19:12:45","2026-06-06 19:12: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Dermal Fillers</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Skin Boosters</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Profhilo</strong></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=\"center\" font_size=\"13px\"]<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jalupro</strong></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=\"center\" font_size=\"13px\"]<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sunekos</strong></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=\"center\" font_size=\"13px\"]<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>NCTF</strong></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=\"center\" font_size=\"13px\"]<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>PDRN / Salmon DNA</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Rejuran</strong></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=\"center\" font_size=\"13px\"]<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Plinest</strong></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=\"center\" font_size=\"13px\"]<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>TWAC</strong></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=\"center\" font_size=\"13px\"]<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p><strong>Skin Boosters</strong></p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sculptra</strong></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=\"center\" font_size=\"13px\"]<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Radiesse</strong></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=\"center\" font_size=\"13px\"]<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 19:12:45","2026-06-06 19:12:45","","922","https://dr.frex.digital/?p=1127","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1128","1","2026-06-06 19:16:00","2026-06-06 19:16: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Dermal Fillers</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Skin Boosters</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Profhilo</strong></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=\"center\" font_size=\"13px\"]<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jalupro</strong></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=\"center\" font_size=\"13px\"]<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sunekos</strong></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=\"center\" font_size=\"13px\"]<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>NCTF</strong></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=\"center\" font_size=\"13px\"]<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>PDRN / Salmon DNA</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Rejuran</strong></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=\"center\" font_size=\"13px\"]<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Plinest</strong></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=\"center\" font_size=\"13px\"]<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>TWAC</strong></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=\"center\" font_size=\"13px\"]<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Biostimulators</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sculptra</strong></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=\"center\" font_size=\"13px\"]<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Radiesse</strong></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=\"center\" font_size=\"13px\"]<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Microneedling</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</strong></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=\"center\" font_size=\"13px\"]<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Exosome Microneedling (Face · Hair Loss)</strong></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=\"center\" font_size=\"13px\"]<p>Regenerative therapy using cellular signals to repair skin and hair.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Growth Factor Microneedling</strong></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=\"center\" font_size=\"13px\"]<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 19:16:00","2026-06-06 19:16:00","","922","https://dr.frex.digital/?p=1128","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1129","1","2026-06-06 19:18:49","2026-06-06 19:18: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Forehead &amp; Crow\'s Feet</strong></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=\"center\" font_size=\"13px\"]<p>Smooths expression lines to create a refreshed and youthful upper face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Nefertiti Neck Lift &amp; Lower Face</strong></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=\"center\" font_size=\"13px\"]<p>Defines the jawline and slims the neck for an elegant profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Flip</strong></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=\"center\" font_size=\"13px\"]<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Underarm Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hands &amp; Feet Hyperhidrosis</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Botox for Muscle Spasm</strong></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=\"center\" font_size=\"13px\"]<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Trap / Barbie Botox</strong></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=\"center\" font_size=\"13px\"]<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Dermal Fillers</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Lip Filler (Natural &amp; Russian)</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Lift with Filler</strong></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=\"center\" font_size=\"13px\"]<p>Restores lost volume and lifts facial contours without any surgery.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Cheek Filler</strong></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=\"center\" font_size=\"13px\"]<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Temple Filler</strong></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=\"center\" font_size=\"13px\"]<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Chin Filler</strong></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=\"center\" font_size=\"13px\"]<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jawline Filler</strong></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=\"center\" font_size=\"13px\"]<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Contouring</strong></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=\"center\" font_size=\"13px\"]<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Smile Lines (Nasolabial)</strong></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=\"center\" font_size=\"13px\"]<p>Softens deep creases around the mouth for a smoother, younger look.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Under-Eye Filler</strong></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=\"center\" font_size=\"13px\"]<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Tear Trough</strong></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=\"center\" font_size=\"13px\"]<p>Smooths the transition under the eyes to eliminate dark shadows.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Skin Boosters</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Profhilo</strong></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=\"center\" font_size=\"13px\"]<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Jalupro</strong></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=\"center\" font_size=\"13px\"]<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sunekos</strong></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=\"center\" font_size=\"13px\"]<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>NCTF</strong></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=\"center\" font_size=\"13px\"]<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>PDRN / Salmon DNA</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Rejuran</strong></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=\"center\" font_size=\"13px\"]<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Plinest</strong></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=\"center\" font_size=\"13px\"]<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>TWAC</strong></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=\"center\" font_size=\"13px\"]<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Biostimulators</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Sculptra</strong></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=\"center\" font_size=\"13px\"]<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Radiesse</strong></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=\"center\" font_size=\"13px\"]<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Microneedling</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</strong></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=\"center\" font_size=\"13px\"]<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Exosome Microneedling (Face · Hair Loss)</strong></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=\"center\" font_size=\"13px\"]<p>Regenerative therapy using cellular signals to repair skin and hair.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Growth Factor Microneedling</strong></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=\"center\" font_size=\"13px\"]<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>PRP</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Hair Loss</strong></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=\"center\" font_size=\"13px\"]<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Face Rejuvenation</strong></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=\"center\" font_size=\"13px\"]<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 19:18:49","2026-06-06 19:18:49","","922","https://dr.frex.digital/?p=1129","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1130","1","2026-06-06 19:46:29","2026-06-06 19:46:29","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>IV Therapy &amp; Wellness</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>High-Dose Vitamin C</strong></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=\"center\" font_size=\"13px\"]<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Glutathione IV</strong></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=\"center\" font_size=\"13px\"]<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>NAD+ IV</strong></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=\"center\" font_size=\"13px\"]<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Vitamin Injections</strong></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=\"center\" font_size=\"13px\"]<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]<p><strong>Brightening IV</strong></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=\"center\" font_size=\"13px\"]<p>Luxury intravenous blend designed to illuminate and glow from within.</p>[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 19:46:29","2026-06-06 19:46:29","","922","https://dr.frex.digital/?p=1130","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1131","1","2026-06-06 19:48:29","2026-06-06 19:48:29",".swipe-container .fusion-builder-row {\r\n    flex-wrap: nowrap !important;\r\n    overflow-x: auto !important;\r\n    overflow-y: hidden !important;\r\n    -webkit-overflow-scrolling: touch; \r\n    padding-bottom: 15px !important; \r\n    scroll-snap-type: x mandatory; \r\n}\r\n\r\n.swipe-container .fusion-layout-column {\r\n    flex-shrink: 0 !important;\r\n    scroll-snap-align: start; \r\n}\r\n\r\n.swipe-container .fusion-builder-row::-webkit-scrollbar {\r\n    height: 6px; \r\n}\r\n.swipe-container .fusion-builder-row::-webkit-scrollbar-track {\r\n    background: transparent; \r\n}\r\n.swipe-container .fusion-builder-row::-webkit-scrollbar-thumb {\r\n    background: rgba(0, 0, 0, 0.15); \r\n    border-radius: 10px;\r\n}\r\n.swipe-container .fusion-builder-row::-webkit-scrollbar-thumb:hover {\r\n    background: rgba(0, 0, 0, 0.3); \r\n}\r\n\r\n.swipe-container .fusion-builder-row.active {\r\n    cursor: grabbing;\r\n    cursor: -webkit-grabbing;\r\n}\r\n.swipe-container .fusion-builder-row {\r\n    cursor: grab;\r\n    cursor: -webkit-grab;\r\n}\r\n\r\n.swipe-container {\r\n    -webkit-user-select: none; \r\n    -moz-user-select: none;   \r\n    -ms-user-select: none;  \r\n    user-select: none;    \r\n}","swipe-container CSS","","draft","closed","closed","","swipe-container-css","","","2026-06-06 20:19:44","2026-06-06 20:19:44","","0","https://dr.frex.digital/wpcode/swipe-container-css/","0","wpcode","","0"),
("1132","1","2026-06-06 19:49:58","2026-06-06 19:49:58","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 19:49:58","2026-06-06 19:49:58","","922","https://dr.frex.digital/?p=1132","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1133","1","2026-06-06 19:53:16","2026-06-06 19:53:16","document.addEventListener(\'DOMContentLoaded\', function() {\r\n    const sliders = document.querySelectorAll(\'.swipe-container .fusion-builder-row\');\r\n    \r\n    sliders.forEach(slider => {\r\n        \r\n        const alignSlider = () => {\r\n            if (slider.scrollWidth > slider.clientWidth) {\r\n                slider.style.setProperty(\'justify-content\', \'flex-start\', \'important\');\r\n            } else {\r\n                slider.style.setProperty(\'justify-content\', \'center\', \'important\');\r\n            }\r\n        };\r\n        \r\n        alignSlider();\r\n        \r\n        window.addEventListener(\'resize\', alignSlider);\r\n\r\n        let isDown = false;\r\n        let startX;\r\n        let scrollLeft;\r\n\r\n        slider.addEventListener(\'mousedown\', (e) => {\r\n            isDown = true;\r\n            slider.classList.add(\'active\');\r\n            startX = e.pageX - slider.offsetLeft;\r\n            scrollLeft = slider.scrollLeft;\r\n            slider.style.scrollSnapType = \'none\'; \r\n        });\r\n\r\n        slider.addEventListener(\'mouseleave\', () => {\r\n            isDown = false;\r\n            slider.classList.remove(\'active\');\r\n            slider.style.scrollSnapType = \'x mandatory\';\r\n        });\r\n\r\n        slider.addEventListener(\'mouseup\', () => {\r\n            isDown = false;\r\n            slider.classList.remove(\'active\');\r\n            slider.style.scrollSnapType = \'x mandatory\';\r\n        });\r\n\r\n        slider.addEventListener(\'mousemove\', (e) => {\r\n            if (!isDown) return;\r\n            e.preventDefault();\r\n            const x = e.pageX - slider.offsetLeft;\r\n            const walk = (x - startX) * 1.5; \r\n            slider.scrollLeft = scrollLeft - walk;\r\n        });\r\n    });\r\n});","swipe-container JS","","draft","closed","closed","","swipe-container-js","","","2026-06-06 20:19:44","2026-06-06 20:19:44","","0","https://dr.frex.digital/wpcode/swipe-container-js/","0","wpcode","","0"),
("1134","1","2026-06-06 20:02:27","2026-06-06 20:02: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 20:02:27","2026-06-06 20:02:27","","922","https://dr.frex.digital/?p=1134","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1135","1","2026-06-06 20:02:56","2026-06-06 20:02: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:02:56","2026-06-06 20:02:56","","1034","https://dr.frex.digital/?p=1135","0","revision","","0"),
("1136","1","2026-06-06 20:04:46","2026-06-06 20:04: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"fillers\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 20:04:46","2026-06-06 20:04:46","","922","https://dr.frex.digital/?p=1136","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1137","1","2026-06-06 20:05:04","2026-06-06 20:05: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#fillers\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:05:04","2026-06-06 20:05:04","","1034","https://dr.frex.digital/?p=1137","0","revision","","0"),
("1138","1","2026-06-06 20:05:29","2026-06-06 20:05:29","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"fillers\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 20:05:29","2026-06-06 20:05:29","","922","https://dr.frex.digital/?p=1138","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1139","1","2026-06-06 20:05:39","2026-06-06 20:05: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#fillers\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#skin-boosters\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:05:39","2026-06-06 20:05:39","","1034","https://dr.frex.digital/?p=1139","0","revision","","0"),
("1140","1","2026-06-06 20:06:05","2026-06-06 20:06:05","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"fillers\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"pdrn\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 20:06:05","2026-06-06 20:06:05","","922","https://dr.frex.digital/?p=1140","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1141","1","2026-06-06 20:06:36","2026-06-06 20:06:36","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#fillers\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#skin-boosters\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#pdrn\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:06:36","2026-06-06 20:06:36","","1034","https://dr.frex.digital/?p=1141","0","revision","","0"),
("1142","1","2026-06-06 20:07:11","2026-06-06 20:07:11","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#fillers\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#skin-boosters\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#pdrn\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#biostimulators\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:07:11","2026-06-06 20:07:11","","1034","https://dr.frex.digital/?p=1142","0","revision","","0"),
("1143","1","2026-06-06 20:07:32","2026-06-06 20:07: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"fillers\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"pdrn\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Biostimulators</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"microneedling\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Microneedling</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 20:07:32","2026-06-06 20:07:32","","922","https://dr.frex.digital/?p=1143","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1144","1","2026-06-06 20:07:46","2026-06-06 20:07: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#fillers\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#skin-boosters\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#pdrn\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#biostimulators\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#microneedling\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:07:46","2026-06-06 20:07:46","","1034","https://dr.frex.digital/?p=1144","0","revision","","0"),
("1145","1","2026-06-06 20:08:02","2026-06-06 20:08: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"fillers\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"pdrn\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Biostimulators</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"microneedling\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Microneedling</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"prp\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>IV Therapy &amp; Wellness</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 20:08:02","2026-06-06 20:08:02","","922","https://dr.frex.digital/?p=1145","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1146","1","2026-06-06 20:08:11","2026-06-06 20:08:11","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#fillers\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#skin-boosters\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#pdrn\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#biostimulators\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#microneedling\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#prp\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:08:11","2026-06-06 20:08:11","","1034","https://dr.frex.digital/?p=1146","0","revision","","0"),
("1147","1","2026-06-06 20:08:34","2026-06-06 20:08: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"fillers\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"pdrn\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Biostimulators</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"microneedling\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>Microneedling</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"prp\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PRP</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatments designed to stimulate follicles and restore hair density.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Comprehensive therapies to restore a radiant, healthy, and youthful complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"iv\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]<p>IV Therapy &amp; Wellness</p>[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>High-Dose Vitamin C</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Powerful antioxidant infusion that boosts immunity and brightens the skin.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Glutathione IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Premium detoxification drip that promotes a radiant, evenly toned complexion.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NAD+ IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Cellular energy therapy that reverses aging and enhances mental clarity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Vitamin Injections</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Direct nutrient boosts to optimize your energy levels and wellness.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Brightening IV</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Luxury intravenous blend designed to illuminate and glow from within.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-revision-v1","","","2026-06-06 20:08:34","2026-06-06 20:08:34","","922","https://dr.frex.digital/?p=1147","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1148","1","2026-06-06 20:08:41","2026-06-06 20:08: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_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" flex_column_spacing=\"0\" background_color=\"#ffffff\" margin_top=\"0\" padding_top=\"0px\" padding_right=\"0px\" padding_bottom=\"0px\" padding_left=\"0px\" link_color=\"var(--awb-color8)\" link_hover_color=\"var(--awb-custom_color_1)\" border_radius_top_right=\"12px\" border_radius_top_left=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#botox\"]\r\n<p><strong>Botox &amp; Anti-Wrinkle</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Forehead &amp; Crow\'s Feet</p>\r\n<p>Nefertiti Neck Lift &amp; Lower Face</p>\r\n<p>Lip Flip</p>\r\n<p>Underarm Hyperhidrosis</p>\r\n<p>Hands &amp; Feet Hyperhidrosis</p>\r\n<p>Botox for Muscle Spasm</p>\r\n<p>Trap / Barbie Botox</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#fillers\"]\r\n<p><strong>Dermal Fillers</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Lip Filler (Natural &amp; Russian)</p>\r\n<p>Face Lift with Filler</p>\r\n<p>Cheek Filler</p>\r\n<p>Temple Filler</p>\r\n<p>Chin Filler</p>\r\n<p>Jawline Filler</p>\r\n<p>Face Contouring</p>\r\n<p>Smile Lines (Nasolabial)</p>\r\n<p>Under-Eye Filler</p>\r\n<p>Tear Trough</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#skin-boosters\"]\r\n<p><strong>Skin Boosters</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Profhilo</p>\r\n<p>Jalupro</p>\r\n<p>Sunekos</p>\r\n<p>NCTF</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#pdrn\"]\r\n<p><strong>PDRN / Salmon DNA</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Rejuran</p>\r\n<p>Plinest</p>\r\n<p>TWAC</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#biostimulators\"]\r\n<p><strong>Biostimulators</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Sculptra</p>\r\n<p>Radiesse</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#microneedling\"]\r\n<p><strong>Microneedling</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</p>\r\n<p>Exosome Microneedling (Face · Hair Loss)</p>\r\n<p>Growth Factor Microneedling</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" layout=\"26.00\" 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\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index_subgroup=\"regular\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"soft-light\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" type_medium=\"1_2\" first=\"true\" background_color_hover=\"#fff4e2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#prp\"]\r\n<p><strong>PRP</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>Hair Loss</p>\r\n<p>Face Rejuvenation</p>\r\n[/fusion_text][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" fusion_font_variant_title_font=\"700\" font_size=\"15px\" text_transform=\"capitalize\" text_color=\"var(--awb-color7)\" link_url=\"https://dr.frex.digital/treatments/#iv\"]\r\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>IV Therapy &amp; Wellness</strong></p>\r\n[/fusion_title][fusion_separator style_type=\"single|dashed\" flex_grow=\"0\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"var(--awb-color5)\" bottom_margin=\"30px\" /][fusion_text 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=\"14px\" line_height=\"1.4\"]\r\n<p>High-Dose Vitamin C</p>\r\n<p>Glutathione IV</p>\r\n<p>NAD+ IV</p>\r\n<p>Vitamin Injections</p>\r\n<p>Brightening IV</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","1034-revision-v1","","","2026-06-06 20:08:41","2026-06-06 20:08:41","","1034","https://dr.frex.digital/?p=1148","0","revision","","0"),
("1149","1","2026-06-21 15:49:25","2026-06-06 20:14:26"," ","","","publish","closed","closed","","1149","","","2026-06-21 15:49:25","2026-06-21 15:49:25","","0","https://dr.frex.digital/?p=1149","2","nav_menu_item","","0"),
("1150","1","2026-06-06 20:21:50","2026-06-06 20:21:50","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" phone=\"tel:+971505145129\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImJhY2tncm91bmRfY29sb3IiOiIjZmZmZmZmIiwic291cmNlIjoiaGVhZGVyX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12\" submenu_border_radius_top_right=\"12\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Global Header","","inherit","closed","closed","","7-revision-v1","","","2026-06-06 20:21:50","2026-06-06 20:21:50","","7","https://dr.frex.digital/?p=1150","0","revision","","0"),
("1151","1","2026-06-06 20:22:52","2026-06-06 20:22:52","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" sticky_background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 20:22:52","2026-06-06 20:22:52","","880","https://dr.frex.digital/?p=1151","0","revision","","0"),
("1152","1","2026-06-06 20:23:42","2026-06-06 20:23:42","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"medium-visibility,large-visibility\" sticky_offset=\"300px\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" sticky_background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 20:23:42","2026-06-06 20:23:42","","880","https://dr.frex.digital/?p=1152","0","revision","","0"),
("1153","1","2026-06-06 20:24:00","2026-06-06 20:24:00","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"medium-visibility,large-visibility\" sticky_transition_offset=\"300\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" sticky_background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 20:24:00","2026-06-06 20:24:00","","880","https://dr.frex.digital/?p=1153","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1154","1","2026-06-06 20:24:35","2026-06-06 20:24:35","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"medium-visibility,large-visibility\" sticky_transition_offset=\"500\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" sticky_background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 20:24:35","2026-06-06 20:24:35","","880","https://dr.frex.digital/?p=1154","0","revision","","0"),
("1155","1","2026-06-06 20:24:56","2026-06-06 20:24:56","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"152\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" sticky_background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 20:24:56","2026-06-06 20:24:56","","880","https://dr.frex.digital/?p=1155","0","revision","","0"),
("1156","1","2026-06-06 20:25:32","2026-06-06 20:25:32","[fusion_builder_container admin_label=\"Secondary Top Header\" 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=\"medium-visibility,large-visibility\" status=\"published\" margin_top=\"0px\" margin_bottom=\"0px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"1px\" border_sizes_left=\"0px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%))\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_color=\"var(--awb-color8)\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_offset=\"0\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"static\" animation_speed=\"0.9\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImxpbmtfY29sb3IiOiIiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibGlua19ob3Zlcl9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJsaW5rX2hvdmVyX2NvbG9yIjoiIiwic291cmNlIjoic25hdl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImJhY2tncm91bmRfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiYmFja2dyb3VuZF9jb2xvciI6IiM2NWJjN2IiLCJzb3VyY2UiOiJoZWFkZXJfdG9wX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" padding_top_small=\"16px\" padding_bottom_small=\"16px\" padding_bottom=\"8px\" padding_top=\"8px\" animation_type=\"fade\"][fusion_builder_row][fusion_builder_column type=\"80\" type=\"80\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" content_layout=\"row\" spacing_left=\"45px\" spacing_right=\"0px\" type_medium=\"670px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_right=\"35px\" icon=\"fusion-prefix-icon-dance-time\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Open : Mon - Thur : 9am to 4pm[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-phone\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" margin_right=\"36px\" link=\"tel:+971505145129\"]+971 50 514 5129[/fusion_button][fusion_button target=\"_self\" color=\"custom\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" button_gradient_top_color=\"rgba(0,0,0,0)\" button_gradient_bottom_color=\"rgba(0,0,0,0)\" button_gradient_top_color_hover=\"rgba(225,232,253,0)\" button_gradient_bottom_color_hover=\"rgba(225,232,253,0)\" fusion_font_family_button_font=\"var(--awb-typography5-font-family)\" fusion_font_variant_button_font=\"var(--awb-typography5)\" padding_bottom=\"6px\" padding_right=\"0px\" padding_left=\"0px\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"var(--awb-typography5-line-height)\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" border_left=\"0px\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"0px\" accent_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" icon=\"fusion-prefix-icon-dance-adress\" padding_top=\"6px\" alignment=\"right\" accent_color=\"var(--awb-color1)\" border_hover_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" border_color=\"var(--awb-color1)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\"]Riviera Clinic, Villa 956, Umm Suqeim 1, Alwasl Rd, Dubai, UAE[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_2\" align_self=\"auto\" align_content=\"flex-start\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_1\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0\" spacing_right=\"45px\" type_medium=\"200px\" flex_grow_medium=\"1\" flex_grow=\"1\" min_height=\"\" link=\"\"][fusion_social_links facebook=\"#\" instagram=\"https://www.instagram.com/dr_soheila\" show_custom=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"12px\" icons_boxed=\"no\" icons_boxed_radius=\"4px\" icon_colors=\"var(--awb-color1)\" tooltip_placement=\"bottom\" alignment=\"right\" dynamic_params=\"eyJpY29uX2NvbG9ycyI6eyJkYXRhIjoiY29sb3IiLCJzb3VyY2UiOiJzbmF2X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIn19\" alignment_small=\"center\" icon_colors_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 10%))\" whatsapp=\"https://wa.me/+971505145129\" email=\"#\" phone=\"tel:+971505145129\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container admin_label=\"Main Header\" 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\" margin_top=\"0px\" margin_bottom=\"0px\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" padding_top=\"20px\" padding_right=\"30px\" padding_bottom=\"20px\" padding_left=\"30px\" border_sizes_top=\"0px\" border_sizes_right=\"0px\" border_sizes_bottom=\"0px\" border_sizes_left=\"0px\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" z_index=\"99999\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"on\" sticky_devices=\"medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" pattern_bg=\"none\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_opacity=\"15\" background_color_small=\"var(--awb-color8)\" sticky_background_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.3\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"45px\" spacing_right=\"45px\" type_medium=\"287px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" flex_grow_medium=\"1\" type_small=\"1_2\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_imageframe style_type=\"none\" blur=\"3\" hover_type=\"none\" bordersize=\"0\" borderradius=\"0px\" align_medium=\"none\" align_small=\"none\" align=\"none\" lightbox=\"no\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" caption_style=\"off\" caption_title_tag=\"2\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCIsImxpbmsiOiIiLCJiZWZvcmUiOiIiLCJhZnRlciI6IiIsImZhbGxiYWNrIjoiIiwiY29sb3IiOiJ2YXIoLS1hd2ItY29sb3I4KSJ9LCJhbHQiOnsiZGF0YSI6InNpdGVfdGl0bGUifX0=\" image_id=\"896|medium\" max_width=\"120px\"]https://dr.frex.digital/wp-content/uploads/2026/06/logo-drsohiela-white-X-300x117.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"60.00\" type=\"60.00\" layout=\"3_4\" align_self=\"auto\" align_content=\"center\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" type_small=\"1_2\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.6\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" flex_grow=\"1\" spacing_left=\"0px\" spacing_right=\"0px\" padding_top=\"0\" padding_bottom=\"0\" type_medium=\"1_3\" flex_grow_medium=\"1\" spacing_left_medium=\"0px\" spacing_right_medium=\"0px\" animation_type=\"fade\" min_height=\"\" link=\"\"][fusion_menu menu=\"header-blocks-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" margin_top=\"0px\" margin_bottom=\"0px\" transition_time=\"300\" submenu_space=\"0px\" arrows_size_width=\"23px\" arrows_size_height=\"12px\" align_items=\"stretch\" justify_content=\"flex-start\" font_size=\"var(--awb-typography3-font-size)\" text_transform=\"var(--awb-typography3-text-transform)\" main_justify_content=\"left\" items_padding_top=\"0px\" items_padding_right=\"6px\" items_padding_bottom=\"0px\" items_padding_left=\"6px\" gap=\"25px\" border_radius_top_left=\"0px\" border_radius_top_right=\"0px\" border_radius_bottom_right=\"0px\" border_radius_bottom_left=\"0px\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" thumbnail_size_width=\"26px\" thumbnail_size_height=\"14px\" justify_title=\"center\" color=\"var(--awb-color1)\" border_top=\"0px\" border_right=\"0px\" border_bottom=\"1px\" border_left=\"0px\" icons_color=\"var(--awb-color1)\" active_border_top=\"0px\" active_border_right=\"0px\" active_border_bottom=\"1px\" active_border_left=\"0px\" active_border_color=\"var(--awb-color1)\" icons_hover_color=\"var(--awb-color1)\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" expand_direction=\"right\" expand_transition=\"opacity\" submenu_flyout_direction=\"fade\" submenu_font_size=\"14px\" submenu_text_transform=\"none\" submenu_items_padding_top=\"12px\" submenu_items_padding_right=\"20px\" submenu_items_padding_bottom=\"12px\" submenu_items_padding_left=\"20px\" submenu_border_radius_top_left=\"12px\" submenu_border_radius_top_right=\"12px\" submenu_border_radius_bottom_right=\"12px\" submenu_border_radius_bottom_left=\"12px\" box_shadow=\"yes\" box_shadow_vertical=\"3px\" box_shadow_horizontal=\"0px\" box_shadow_blur=\"10\" box_shadow_spread=\"0\" box_shadow_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 97%))\" submenu_sep_color=\"rgba(0,0,0,0)\" submenu_bg=\"var(--awb-color1)\" submenu_color=\"var(--awb-color8)\" submenu_active_bg=\"var(--awb-color6)\" breakpoint=\"medium\" custom_breakpoint=\"1200\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" trigger_padding_top=\"12px\" trigger_padding_right=\"20px\" trigger_padding_bottom=\"12px\" trigger_padding_left=\"20px\" mobile_trigger_background_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" mobile_trigger_color=\"var(--awb-color8)\" collapsed_nav_icon_open=\"fusion-prefix-icon-dance-bars\" collapsed_nav_icon_close=\"fusion-prefix-icon-dance-times\" mobile_trigger_font_size=\"25px\" mobile_nav_button_align_hor=\"flex-end\" mobile_nav_trigger_fullwidth=\"off\" mobile_nav_trigger_bottom_margin=\"20px\" mobile_nav_items_height=\"55\" mobile_justify_content=\"left\" mobile_indent_submenu=\"on\" mobile_font_size=\"1em\" mobile_sep_color=\"var(--awb-color1)\" mobile_color=\"var(--awb-color8)\" mobile_active_bg=\"var(--awb-color6)\" mobile_active_color=\"var(--awb-color1)\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"top-into-view\" dynamic_params=\"eyJjb2xvciI6eyJkYXRhIjoiY29sb3IiLCJjb2xvciI6IiMyMTI5MzQiLCJzb3VyY2UiOiJhd2JfdHlwb2dyYXBoeV9uYXZfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZmZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMDAwMCIsImZhbGxiYWNrIjoiIn0sImljb25zX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsImljb25zX2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfaWNvbl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sImFjdGl2ZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJhY3RpdmVfY29sb3IiOiIiLCJzb3VyY2UiOiJtZW51X2hvdmVyX2ZpcnN0X2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwiaWNvbnNfaG92ZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwiaWNvbnNfaG92ZXJfY29sb3IiOiIjNjViYzdiIiwic291cmNlIjoibWVudV9pY29uX2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9zZXBfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9zZXBfY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwic291cmNlIjoibWVudV9zdWJfc2VwX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9iZyI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2JnIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2JnX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJzdWJtZW51X2NvbG9yIjoiIzIxMjkzNCIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwic3VibWVudV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwic3VibWVudV9hY3RpdmVfYmciOiIjNjViYzdiIiwic291cmNlIjoibWVudV9iZ19ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjp7ImRhdGEiOiJjb2xvciIsInN1Ym1lbnVfYWN0aXZlX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1lbnVfc3ViX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3RyaWdnZXJfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX3RyaWdnZXJfY29sb3IiOiIjMDAwMDAwIiwic291cmNlIjoibW9iaWxlX21lbnVfdG9nZ2xlX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifSwibW9iaWxlX3NlcF9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfc2VwX2NvbG9yIjoiI2ZmZmZmZiIsInNvdXJjZSI6Im1vYmlsZV9tZW51X2JvcmRlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9iZyI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfYmciOiIjZmZmZmZmIiwic291cmNlIjoibW9iaWxlX21lbnVfYmFja2dyb3VuZF9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9jb2xvciI6eyJkYXRhIjoiY29sb3IiLCJtb2JpbGVfY29sb3IiOiIjNGE0ZTU3Iiwic291cmNlIjoiYXdiX3R5cG9ncmFwaHlfbW9iaWxlX21lbnVfdHlwb2dyYXBoeSIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfYmciOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9iZyI6IiM2NWJjN2IiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9ob3Zlcl9jb2xvciIsImFscGhhIjoiMSIsImJyaWdodG5lc3MiOiIwIiwicmVhZGFibGUiOiJubyIsInJlYWRhYmxlX3RocmVzaG9sZCI6Ii41NDciLCJyZWFkYWJsZV9kYXJrIjoiI2ZmZiIsInJlYWRhYmxlX2xpZ2h0IjoiIzAwMCIsImZhbGxiYWNrIjoiIn0sIm1vYmlsZV9hY3RpdmVfY29sb3IiOnsiZGF0YSI6ImNvbG9yIiwibW9iaWxlX2FjdGl2ZV9jb2xvciI6IiNmZmZmZmYiLCJzb3VyY2UiOiJtb2JpbGVfbWVudV9mb250X2hvdmVyX2NvbG9yIiwiYWxwaGEiOiIxIiwiYnJpZ2h0bmVzcyI6IjAiLCJyZWFkYWJsZSI6Im5vIiwicmVhZGFibGVfdGhyZXNob2xkIjoiLjU0NyIsInJlYWRhYmxlX2RhcmsiOiIjZmZmIiwicmVhZGFibGVfbGlnaHQiOiIjMDAwIiwiZmFsbGJhY2siOiIifX0=\" active_color=\"var(--awb-color1)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" fusion_font_variant_typography=\"var(--awb-typography3)\" submenu_active_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" mobile_bg=\"var(--awb-color1)\" class=\"avada-main-menu\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" min_height=\"30px\" /][/fusion_builder_column][fusion_builder_column type=\"20\" type=\"20\" layout=\"1_4\" align_self=\"center\" align_content=\"flex-end\" center_content=\"no\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_top=\"0px\" margin_bottom=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" animation_direction=\"static\" animation_speed=\"1.9\" filter_type=\"regular\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" last=\"true\" border_position=\"all\" first=\"true\" spacing_left=\"0px\" content_layout=\"row\" valign_content=\"center\" type_medium=\"290px\" spacing_left_small=\"20px\" spacing_right_small=\"20px\" animation_type=\"fade\" type_small=\"1_2\" spacing_right=\"45px\" padding_right=\"0\" min_height=\"\" link=\"\"][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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-icon-dance-arrow\" fusion_font_variant_button_font=\"var(--awb-typography5)\" fusion_font_family_button_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)\" 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-color1)\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" padding_top=\"12px\" padding_bottom=\"12px\" padding_right=\"20px\" padding_left=\"20px\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\" alignment=\"right\" link=\"#\"]Consultation[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Homepage Header","","inherit","closed","closed","","880-revision-v1","","","2026-06-06 20:25:32","2026-06-06 20:25:32","","880","https://dr.frex.digital/?p=1156","0","revision","","0"),
("1157","1","2026-06-06 20:30:18","2026-06-06 20:30:18","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/060221.mp4\" background_color=\"rgba(45,45,45,0.83)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]<blockquote><p>My goal is results that look like you refreshed, balanced and never overdone.</p></blockquote>[/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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-06 20:30:18","2026-06-06 20:30:18","","5","https://dr.frex.digital/?p=1157","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1158","1","2026-06-06 20:30:56","2026-06-06 20:30:56",".fusion-text blockquote {\r\n    border-radius: 12px !important;\r\n    overflow: hidden !important;\r\n}","blockquote CSS","","publish","closed","closed","","blockquote-css","","","2026-06-06 20:30:56","2026-06-06 20:30:56","","0","https://dr.frex.digital/wpcode/blockquote-css/","0","wpcode","","0"),
("1159","1","2026-06-07 08:29:16","2026-06-07 08:29:16","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\nOur Treatment Services\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\" text_color=\"var(--awb-color1)\" font_size=\"27px\"]\n\nTailored Solutions For Timeless Beauty\n\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nBotox &amp; Anti-Wrinkle\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Forehead &amp; Crow\'s Feet</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSmooths expression lines to create a refreshed and youthful upper face.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Nefertiti Neck Lift &amp; Lower Face</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nDefines the jawline and slims the neck for an elegant profile.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Lip Flip</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSubtly enhances the upper lip border for a fuller, natural smile.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Underarm Hyperhidrosis</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nEffectively reduces excessive sweating to ensure long-lasting freshness and comfort.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Hands &amp; Feet Hyperhidrosis</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nTargeted treatment to control excessive sweating and restore daily confidence.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Botox for Muscle Spasm</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nRelieves painful muscle tension and spasms for improved comfort and mobility.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Trap / Barbie Botox</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSlims the shoulder contour to create a beautifully elongated neck line.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"fillers\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nDermal Fillers\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Lip Filler (Natural &amp; Russian)</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSculpts and volumizes lips using advanced techniques for perfect harmony.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Face Lift with Filler</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nRestores lost volume and lifts facial contours without any surgery.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Cheek Filler</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nEnhances cheekbone definition and restores youthful volume to the mid-face.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Temple Filler</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSmooths temporal hollows to create a more balanced and youthful facial structure.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Chin Filler</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nElongates and defines the chin profile for enhanced facial symmetry.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Jawline Filler</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSculpts a sharp, defined jawline for a stronger and more attractive profile.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Face Contouring</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nArtistically balances facial features to achieve a beautifully harmonized appearance.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Smile Lines (Nasolabial)</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSoftens deep creases around the mouth for a smoother, younger look.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Under-Eye Filler</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nBrightens tired eyes and restores volume to hollow lower eyelids.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Tear Trough</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSmooths the transition under the eyes to eliminate dark shadows.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nSkin Boosters\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Profhilo</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nDeeply hydrates and bio-remodels the skin to improve overall elasticity.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Jalupro</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nStimulates collagen production to effectively reduce fine lines and wrinkles.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Sunekos</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nRestores the extracellular matrix to deeply rejuvenate aging skin tissue.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>NCTF</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nA premium poly-revitalizing cocktail that boosts skin radiance and hydration.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"pdrn\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nPDRN / Salmon DNA\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Rejuran</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nUtilizes salmon DNA to repair skin barriers and heal damaged tissue.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Plinest</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nAdvanced polynucleotide treatment that significantly improves skin texture and elasticity.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>TWAC</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nSynergistic cell booster that deeply regenerates and hydrates the skin layer.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nBiostimulators\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Sculptra</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nGradually stimulates your own collagen for long-lasting, natural facial volume.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Radiesse</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nProvides immediate lifting and stimulates long-term collagen and elastin production.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"microneedling\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nMicroneedling\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nAdvanced microneedling to smooth acne scars and renew skin texture.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Exosome Microneedling (Face · Hair Loss)</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nRegenerative therapy using cellular signals to repair skin and hair.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Growth Factor Microneedling</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nAccelerates cellular renewal to dramatically improve skin firmness and glow.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"prp\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nPRP\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Hair Loss</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nTargeted treatments designed to stimulate follicles and restore hair density.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Face Rejuvenation</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nComprehensive therapies to restore a radiant, healthy, and youthful complexion.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" background_color=\"rgba(255,195,19,0.1)\" menu_anchor=\"iv\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n\nIV Therapy &amp; Wellness\n\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>High-Dose Vitamin C</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nPowerful antioxidant infusion that boosts immunity and brightens the skin.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Glutathione IV</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nPremium detoxification drip that promotes a radiant, evenly toned complexion.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>NAD+ IV</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nCellular energy therapy that reverses aging and enhances mental clarity.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Vitamin Injections</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nDirect nutrient boosts to optimize your energy levels and wellness.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n\n<strong>Brightening IV</strong>\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\" content_alignment=\"center\" font_size=\"13px\"]\n\nLuxury intravenous blend designed to illuminate and glow from within.\n\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Treatments","","inherit","closed","closed","","922-autosave-v1","","","2026-06-07 08:29:16","2026-06-07 08:29:16","","922","https://dr.frex.digital/?p=1159","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1160","1","2026-06-07 08:37:54","2026-06-07 08:37: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG03.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 08:37:54","2026-06-07 08:37:54","","939","https://dr.frex.digital/?p=1160","0","revision","","0"),
("1161","1","2026-06-07 09:41:15","2026-06-07 09:41:15","","BG04","","inherit","open","closed","","bg04","","","2026-06-07 09:41:15","2026-06-07 09:41:15","","0","https://dr.frex.digital/wp-content/uploads/2026/06/BG04.jpg","0","attachment","image/jpeg","0"),
("1162","1","2026-06-07 09:41:30","2026-06-07 09:41:30","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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>Our Treatment Services</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)\" font_size=\"27px\"]\r\n<p>Tailored Solutions For Timeless Beauty</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 09:41:30","2026-06-07 09:41:30","","939","https://dr.frex.digital/?p=1162","0","revision","","0"),
("1163","1","2026-06-07 09:49:18","2026-06-07 09:49:18","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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\" text_color=\"var(--awb-color1)\" font_size=\"22px\"]<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" margin_bottom=\"30px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" content_alignment=\"center\"]<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 09:49:18","2026-06-07 09:49:18","","939","https://dr.frex.digital/?p=1163","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1164","1","2026-06-07 09:59:43","2026-06-07 09:59: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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\" text_color=\"var(--awb-color1)\" font_size=\"22px\"]<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" margin_bottom=\"30px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" margin_medium=\"\" margin_small=\"\" 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\" content_alignment=\"center\"]<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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 layout=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"28px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"var(--awb-color4)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"24\" hover_accent_color=\"var(--awb-custom_color_1)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color3)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\"][fusion_content_box title=\"Launch Your First Website\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\" backgroundcolor=\"var(--awb-color4)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]Donec nec dignissim risus. Aliquam quis tristique eros. Nullam gravida magna vehicula felis pulvinar vulputate ac nec erat. Donec ornare fermentum massa sed dapibus. Proin orci erat, laoreet ut pulvinar vel, finibus at mi.[/fusion_content_box][fusion_content_box title=\"Launch Your First Website\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\" backgroundcolor=\"var(--awb-color4)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]Donec nec dignissim risus. Aliquam quis tristique eros. Nullam gravida magna vehicula felis pulvinar vulputate ac nec erat. Donec ornare fermentum massa sed dapibus. Proin orci erat, laoreet ut pulvinar vel, finibus at mi.[/fusion_content_box][fusion_content_box title=\"Launch Your First Website\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\" backgroundcolor=\"var(--awb-color4)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]Donec nec dignissim risus. Aliquam quis tristique eros. Nullam gravida magna vehicula felis pulvinar vulputate ac nec erat. Donec ornare fermentum massa sed dapibus. Proin orci erat, laoreet ut pulvinar vel, finibus at mi.[/fusion_content_box][fusion_content_box title=\"Launch Your First Website\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\" backgroundcolor=\"var(--awb-color4)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]Donec nec dignissim risus. Aliquam quis tristique eros. Nullam gravida magna vehicula felis pulvinar vulputate ac nec erat. Donec ornare fermentum massa sed dapibus. Proin orci erat, laoreet ut pulvinar vel, finibus at mi.[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 09:59:43","2026-06-07 09:59:43","","939","https://dr.frex.digital/?p=1164","0","revision","","0"),
("1165","1","2026-06-07 10:31:29","2026-06-07 10:31:29","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" 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\"]\r\n<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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\" margin_bottom=\"40px\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"28px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"var(--awb-color4)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"24\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 10:31:29","2026-06-07 10:31:29","","939","https://dr.frex.digital/?p=1165","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1166","1","2026-06-07 10:38:08","2026-06-07 10:38:08","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" 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\"]\r\n<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"50px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"28px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"var(--awb-color4)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"24\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIG1heC13aWR0aDogODUwcHg7CiAgICAgICAgbWFyZ2luOiAzMHB4IGF1dG87CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDMwJTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIC8qIFJlc3BvbnNpdmUgRGVzaWduIGZvciBNb2JpbGUgRGV2aWNlcyAqLwogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 10:38:08","2026-06-07 10:38:08","","939","https://dr.frex.digital/?p=1166","0","revision","","0"),
("1167","1","2026-06-07 10:47:39","2026-06-07 10:47: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" 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\"]\r\n<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"50px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"var(--awb-color4)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"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\" 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=\"\" dimension_margin=\"\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOyAvKiDYp9i02LrYp9mEINqp2KfZhdmEINm+2YfZhtin24wg2LPYqtmI2YYgKi8KICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogMzBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgewogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7CiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRoIHsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBmb250LXNpemU6IDIwcHg7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAxLjVweDsKICAgICAgICBwYWRkaW5nLWJvdHRvbTogMjBweDsKICAgICAgICBib3JkZXItYm90dG9tOiAycHggc29saWQgI2ZmZTdhMTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuM3MgZWFzZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDIpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgIHBhZGRpbmc6IDIwcHggMTVweDsKICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgICAgIGZvbnQtc2l6ZTogMTVweDsKICAgICAgICBsaW5lLWhlaWdodDogMS42OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6bGFzdC1jaGlsZCB0ZCB7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogbm9uZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAyNSU7IC8qINio2YfbjNmG2YfigIzYs9in2LLbjCDYqtmG2KfYs9ioINiz2KrZiNmG4oCM2YfYpyDYr9ixINit2KfZhNiqINiq2YXYp9mFINi12YHYrdmHICovCiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXZhbHVlIHsKICAgICAgICBjb2xvcjogI2ZmZmZmZjsKICAgICAgICBmb250LXdlaWdodDogNDAwOwogICAgfQogICAgCiAgICAvKiBSZXNwb25zaXZlIERlc2lnbiBmb3IgTW9iaWxlIERldmljZXMgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]<p>FAQ</p>[/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\" 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=\"\" dimension_margin=\"\" 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" background_blend_mode=\"none\" background_slider_position=\"\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"What is a business plan and why it is so important?\" open=\"no\"]A business plan is a written document that outlines your business goals, strategies, target market, financial projections, and operational plans. It’s important because it serves as a roadmap for your business, helps secure funding, and keeps you focused on your objectives.[/fusion_toggle][fusion_toggle title=\"What are the key components of a marketing strategy?\" open=\"no\"]A strong marketing strategy includes:\r\n<ul><li>Target audience identification</li>\r\n<li>Unique selling proposition (USP)</li>\r\n<li>Marketing channels (social media, email, SEO, etc.)</li>\r\n<li>Budget allocation</li>\r\n<li>Performance metrics and analytics</li>\r\n</ul>[/fusion_toggle][fusion_toggle title=\"How do I choose the right business structure?\" open=\"no\"]The right business structure (e.g., sole proprietorship, LLC, corporation) depends on factors like liability protection, tax implications, and ownership flexibility. Consult a legal or financial advisor to determine the best fit for your business goals.[/fusion_toggle][fusion_toggle title=\"What is the difference between revenue and profit?\" open=\"no\"]<ul>\r\n 	<li><strong>Revenue</strong>&nbsp;is the total income generated from sales of goods or services.</li>\r\n<li><strong>Profit</strong>&nbsp;is what remains after subtracting all expenses (e.g., costs, taxes) from revenue. Profit is a key indicator of financial health.</li>\r\n</ul>[/fusion_toggle][fusion_toggle title=\"What is cash flow management in Business?\" open=\"no\"]Cash flow management is the process of tracking and optimizing the money coming in and going out of your business. It’s crucial because it ensures you have enough liquidity to cover expenses, pay employees, and invest in growth opportunities.[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 10:47:39","2026-06-07 10:47:39","","939","https://dr.frex.digital/?p=1167","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1168","1","2026-06-07 10:52:30","2026-06-07 10:52:30","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" 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\"]\r\n<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"50px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"var(--awb-color4)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOyAvKiDYp9i02LrYp9mEINqp2KfZhdmEINm+2YfZhtin24wg2LPYqtmI2YYgKi8KICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogMzBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgewogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7CiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRoIHsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBmb250LXNpemU6IDIwcHg7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAxLjVweDsKICAgICAgICBwYWRkaW5nLWJvdHRvbTogMjBweDsKICAgICAgICBib3JkZXItYm90dG9tOiAycHggc29saWQgI2ZmZTdhMTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuM3MgZWFzZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDIpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgIHBhZGRpbmc6IDIwcHggMTVweDsKICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgICAgIGZvbnQtc2l6ZTogMTVweDsKICAgICAgICBsaW5lLWhlaWdodDogMS42OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6bGFzdC1jaGlsZCB0ZCB7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogbm9uZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAyNSU7IC8qINio2YfbjNmG2YfigIzYs9in2LLbjCDYqtmG2KfYs9ioINiz2KrZiNmG4oCM2YfYpyDYr9ixINit2KfZhNiqINiq2YXYp9mFINi12YHYrdmHICovCiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXZhbHVlIHsKICAgICAgICBjb2xvcjogI2ZmZmZmZjsKICAgICAgICBmb250LXdlaWdodDogNDAwOwogICAgfQogICAgCiAgICAvKiBSZXNwb25zaXZlIERlc2lnbiBmb3IgTW9iaWxlIERldmljZXMgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]<p>FAQ</p>[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]<p>Not at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.</p>[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]<p>On average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.</p>[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]<p>We advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 10:52:30","2026-06-07 10:52:30","","939","https://dr.frex.digital/?p=1168","0","revision","","0"),
("1169","1","2026-06-07 10:56:40","2026-06-07 10:56:40",".fusion-accordian .fusion-panel.fusion-toggle-boxed-mode {\r\n    border-radius: 12px !important;\r\n    overflow: hidden !important;\r\n}","Toggles CSS","","publish","closed","closed","","toggles-css","","","2026-06-07 10:56:40","2026-06-07 10:56:40","","0","https://dr.frex.digital/wpcode/toggles-css/","0","wpcode","","0"),
("1170","1","2026-06-07 10:58:57","2026-06-07 10:58: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" 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\"]\r\n<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOyAvKiDYp9i02LrYp9mEINqp2KfZhdmEINm+2YfZhtin24wg2LPYqtmI2YYgKi8KICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogMzBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgewogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7CiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRoIHsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBmb250LXNpemU6IDIwcHg7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAxLjVweDsKICAgICAgICBwYWRkaW5nLWJvdHRvbTogMjBweDsKICAgICAgICBib3JkZXItYm90dG9tOiAycHggc29saWQgI2ZmZTdhMTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuM3MgZWFzZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDIpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgIHBhZGRpbmc6IDIwcHggMTVweDsKICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgICAgIGZvbnQtc2l6ZTogMTVweDsKICAgICAgICBsaW5lLWhlaWdodDogMS42OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6bGFzdC1jaGlsZCB0ZCB7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogbm9uZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAyNSU7IC8qINio2YfbjNmG2YfigIzYs9in2LLbjCDYqtmG2KfYs9ioINiz2KrZiNmG4oCM2YfYpyDYr9ixINit2KfZhNiqINiq2YXYp9mFINi12YHYrdmHICovCiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXZhbHVlIHsKICAgICAgICBjb2xvcjogI2ZmZmZmZjsKICAgICAgICBmb250LXdlaWdodDogNDAwOwogICAgfQogICAgCiAgICAvKiBSZXNwb25zaXZlIERlc2lnbiBmb3IgTW9iaWxlIERldmljZXMgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"50px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"var(--awb-color4)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" backgroundcolor=\"rgba(255,195,19,0.17)\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]<p>FAQ</p>[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]<p>Not at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.</p>[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]<p>On average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.</p>[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]<p>We advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 10:58:57","2026-06-07 10:58:57","","939","https://dr.frex.digital/?p=1170","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1171","1","2026-06-07 11:02:30","2026-06-07 11:02:30","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" 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\"]\r\n<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOyAvKiDYp9i02LrYp9mEINqp2KfZhdmEINm+2YfZhtin24wg2LPYqtmI2YYgKi8KICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogMzBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgewogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7CiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRoIHsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBmb250LXNpemU6IDIwcHg7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAxLjVweDsKICAgICAgICBwYWRkaW5nLWJvdHRvbTogMjBweDsKICAgICAgICBib3JkZXItYm90dG9tOiAycHggc29saWQgI2ZmZTdhMTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuM3MgZWFzZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDIpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgIHBhZGRpbmc6IDIwcHggMTVweDsKICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgICAgIGZvbnQtc2l6ZTogMTVweDsKICAgICAgICBsaW5lLWhlaWdodDogMS42OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6bGFzdC1jaGlsZCB0ZCB7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogbm9uZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAyNSU7IC8qINio2YfbjNmG2YfigIzYs9in2LLbjCDYqtmG2KfYs9ioINiz2KrZiNmG4oCM2YfYpyDYr9ixINit2KfZhNiqINiq2YXYp9mFINi12YHYrdmHICovCiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXZhbHVlIHsKICAgICAgICBjb2xvcjogI2ZmZmZmZjsKICAgICAgICBmb250LXdlaWdodDogNDAwOwogICAgfQogICAgCiAgICAvKiBSZXNwb25zaXZlIERlc2lnbiBmb3IgTW9iaWxlIERldmljZXMgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]<p>FAQ</p>[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]<p>Not at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.</p>[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]<p>On average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.</p>[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]<p>We advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Botox & Anti-Wrinkle","","inherit","closed","closed","","939-revision-v1","","","2026-06-07 11:02:30","2026-06-07 11:02:30","","939","https://dr.frex.digital/?p=1171","0","revision","","0"),
("1172","1","2026-06-07 11:26:56","2026-06-07 11:26: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n\r\nPremium Botox &amp; Anti-Wrinkle Treatments in Dubai\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)\" font_size=\"22px\"]\r\n\r\nSoften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nBotox &amp; Anti-Wrinkle\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_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\n<span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span>\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSmooths expression lines to create a refreshed and youthful upper face.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nDefines the jawline and slims the neck for an elegant profile.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSubtly enhances the upper lip border for a fuller, natural smile.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nEffectively reduces excessive sweating to ensure long-lasting freshness and comfort.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nTargeted treatment to control excessive sweating and restore daily confidence.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRelieves painful muscle tension and spasms for improved comfort and mobility.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSlims the shoulder contour to create a beautifully elongated neck line.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOyAvKiDYp9i02LrYp9mEINqp2KfZhdmEINm+2YfZhtin24wg2LPYqtmI2YYgKi8KICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogMzBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgewogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7CiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRoIHsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBmb250LXNpemU6IDIwcHg7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAxLjVweDsKICAgICAgICBwYWRkaW5nLWJvdHRvbTogMjBweDsKICAgICAgICBib3JkZXItYm90dG9tOiAycHggc29saWQgI2ZmZTdhMTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuM3MgZWFzZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDIpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgIHBhZGRpbmc6IDIwcHggMTVweDsKICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgICAgIGZvbnQtc2l6ZTogMTVweDsKICAgICAgICBsaW5lLWhlaWdodDogMS42OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6bGFzdC1jaGlsZCB0ZCB7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogbm9uZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAyNSU7IC8qINio2YfbjNmG2YfigIzYs9in2LLbjCDYqtmG2KfYs9ioINiz2KrZiNmG4oCM2YfYpyDYr9ixINit2KfZhNiqINiq2YXYp9mFINi12YHYrdmHICovCiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXZhbHVlIHsKICAgICAgICBjb2xvcjogI2ZmZmZmZjsKICAgICAgICBmb250LXdlaWdodDogNDAwOwogICAgfQogICAgCiAgICAvKiBSZXNwb25zaXZlIERlc2lnbiBmb3IgTW9iaWxlIERldmljZXMgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nGently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDelivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nProvides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nActs as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]\r\n\r\nNot at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]\r\n\r\nOn average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]\r\n\r\nWe advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dermal Fillers","","inherit","closed","closed","","920-revision-v1","","","2026-06-07 11:26:56","2026-06-07 11:26:56","","920","https://dr.frex.digital/?p=1172","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1173","1","2026-06-07 11:31:07","2026-06-07 11:31: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" background_color=\"rgba(255,195,19,0.1)\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\r\n<p><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOyAvKiDYp9i02LrYp9mEINqp2KfZhdmEINm+2YfZhtin24wg2LPYqtmI2YYgKi8KICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogMzBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgewogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7CiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRoIHsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBmb250LXNpemU6IDIwcHg7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAxLjVweDsKICAgICAgICBwYWRkaW5nLWJvdHRvbTogMjBweDsKICAgICAgICBib3JkZXItYm90dG9tOiAycHggc29saWQgI2ZmZTdhMTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuM3MgZWFzZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDIpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgIHBhZGRpbmc6IDIwcHggMTVweDsKICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgICAgIGZvbnQtc2l6ZTogMTVweDsKICAgICAgICBsaW5lLWhlaWdodDogMS42OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6bGFzdC1jaGlsZCB0ZCB7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogbm9uZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAyNSU7IC8qINio2YfbjNmG2YfigIzYs9in2LLbjCDYqtmG2KfYs9ioINiz2KrZiNmG4oCM2YfYpyDYr9ixINit2KfZhNiqINiq2YXYp9mFINi12YHYrdmHICovCiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXZhbHVlIHsKICAgICAgICBjb2xvcjogI2ZmZmZmZjsKICAgICAgICBmb250LXdlaWdodDogNDAwOwogICAgfQogICAgCiAgICAvKiBSZXNwb25zaXZlIERlc2lnbiBmb3IgTW9iaWxlIERldmljZXMgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]\r\n<p>Not at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.</p>\r\n[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]\r\n<p>On average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.</p>\r\n[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]\r\n<p>We advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dermal Fillers","","inherit","closed","closed","","920-revision-v1","","","2026-06-07 11:31:07","2026-06-07 11:31:07","","920","https://dr.frex.digital/?p=1173","0","revision","","0"),
("1174","1","2026-06-07 11:38:12","2026-06-07 11:38: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Dermal Fillers in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]<p>Restore youthful volume, refine your structural contours, and enhance facial symmetry with bespoke, natural-looking Hyaluronic Acid treatments.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Dermal Fillers</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]<p>With time, structural bone resorption, and the demanding environmental factors of Dubai, the face naturally loses its youthful volume, leading to hollow regions and pronounced shadowing. Premium Dermal Fillers offer an instant, sophisticated solution to replenish this lost volume, smooth out deep structural folds, and artistically redefine your features. At Dr. Soheila’s clinic, filler injections are treated as an absolute art form. Every placement is meticulously mapped to enhance your unique facial anatomy, delivering a refreshed, elegant, and perfectly balanced profile without a single day of surgical recovery.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts and volumizes lips using advanced techniques for perfect harmony.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores lost volume and lifts facial contours without any surgery.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Enhances cheekbone definition and restores youthful volume to the mid-face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths temporal hollows to create a more balanced and youthful facial structure.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Elongates and defines the chin profile for enhanced facial symmetry.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Sculpts a sharp, defined jawline for a stronger and more attractive profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Artistically balances facial features to achieve a beautifully harmonized appearance.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Softens deep creases around the mouth for a smoother, younger look.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Brightens tired eyes and restores volume to hollow lower eyelids.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths the transition under the eyes to eliminate dark shadows.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5EZXJtYWwgRmlsbGVycyBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4xNeKAkzQ1IE1pbnV0ZXMgKERlcGVuZGluZyBvbiB0aGUgY29tcGxleGl0eSBvZiB0YXJnZXRlZCBhcmVhcyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlRlY2huaXF1ZSBVc2VkPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+UHJlY2lzaW9uIE1pY3JvLUluamVjdGlvbnMgdmlhIFVsdHJhLUZpbmUgUHJlbWl1bSBOZWVkbGVzIG9yIE1pY3JvLUNhbm51bGFzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5SZXN1bHRzIFZpc2libGU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5JbW1lZGlhdGUgdm9sdW1ldHJpYyBsaWZ0OyBGaW5hbCBvcHRpbWFsIHNldHRsaW5nIGFuZCByZWZpbmVtZW50IHdpdGhpbiA34oCTMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+NiB0byAxOCBNb250aHMgKFZhcmllcyBieSBwcm9kdWN0IGRlbnNpdHksIHRyZWF0ZWQgYXJlYSwgYW5kIGluZGl2aWR1YWwgbWV0YWJvbGlzbSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TWluaW1hbCAoTWlsZCBsb2NhbGl6ZWQgc3dlbGxpbmcgb3Igc3VidGxlIHRlbXBvcmFyeSBicnVpc2luZyB0aGF0IGZhZGVzIHF1aWNrbHkpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3Rib2R5PgogICAgPC90YWJsZT4KPC9kaXY+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Dermal Fillers Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Instant Volumetric Restoration\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Immediately replenishes hollow areas, smoothing deep creases like the nasolabial smile lines.</p>[/fusion_content_box][fusion_content_box title=\"Bespoke Facial Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Artistically sculpts and shapes key structural points, including custom jawline definition, chin elongation, and cheekbone enhancement.</p>[/fusion_content_box][fusion_content_box title=\"Advanced Lip Refinement\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Delivers beautifully proportioned, tailored lips utilizing both soft natural hydration and structured Russian lip techniques.</p>[/fusion_content_box][fusion_content_box title=\"Tear Trough Rejuvenation\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Brightens tired eyes by seamlessly filling under-eye hollows and eliminating dark structural shadows.</p>[/fusion_content_box][fusion_content_box title=\"Durable Structural Support\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Provides a high-density matrix that lifts sagging tissues and holds its shape precisely, ensuring a stable, long-lasting contour that integrates seamlessly with your natural facial movements.</p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will dermal fillers make my face look overfilled or unnatural?\" open=\"no\"]<p>Never. Dr. Soheila strictly operates on a customized \"less is more\" philosophy. The objective is to gently restore lost skeletal support and shadows rather than over-inflating tissues, guaranteeing an elegantly undetectable enhancement.</p>[/fusion_toggle][fusion_toggle title=\"Is the dermal filler treatment painful?\" open=\"no\"]<p>Your absolute comfort is our luxury standard. We apply a premium topical anesthetic cream prior to the procedure, and we exclusively utilize premium global filler brands that contain built-in lidocaine to make the treatment virtually painless.</p>[/fusion_toggle][fusion_toggle title=\"What is the difference between a dermal filler and a wrinkle-relaxing injection?\" open=\"no\"]<p><span data-path-to-node=\"16,2,1,0,1,0\"><span class=\"citation-62\">Dermal fillers use Hyaluronic Acid to add volume, fill deep folds, and sculpt areas like cheeks or lips</span></span><span data-path-to-node=\"16,2,1,0,1,2\">. </span><span data-path-to-node=\"16,2,1,0,1,4\"><span class=\"citation-61\">Wrinkle-relaxers (Botox) work by temporarily relaxing the dynamic muscles that cause expression lines on the upper face</span></span><span data-path-to-node=\"16,2,1,0,1,6\">.</span></p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dermal Fillers","","inherit","closed","closed","","920-revision-v1","","","2026-06-07 11:38:12","2026-06-07 11:38:12","","920","https://dr.frex.digital/?p=1174","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1175","1","2026-06-07 17:41:39","2026-06-07 17:41: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Biostimulator Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]\n<p>Rebuild your skin’s structural foundation from within. Activate progressive collagen synthesis to gradually restore youthful volume, improve firmness, and achieve long-lasting, elegant rejuvenation.</p>\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\n<p>Biostimulators</p>\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\n<p>Traditional treatments often provide temporary cosmetic camouflage, but advanced Biostimulators work by fundamentally changing how your skin ages. Utilizing premium biostimulatory components like Poly-L-Lactic Acid (PLLA) and Calcium Hydroxylapatite (CaHA), these treatments enter the deep dermal layers to act as a scaffold, triggering your body\'s fibroblasts to produce a flood of new, natural collagen and elastin. At Dr. Soheila’s clinic, we do not simply inject volume; we masterfully guide your tissues to regenerate themselves. Over the weeks following your session, your skin undergoes a profound structural remodeling, restoring its youthful thickness, architectural bounce, and natural contours from the inside out.</p>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n<p><strong>Sculptra</strong></p>\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\" font_size=\"13px\"]\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\n<p><strong>Radiesse</strong></p>\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\" font_size=\"13px\"]\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5CaW9zdGltdWxhdG9ycyBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4zMOKAkzQ1IE1pbnV0ZXMgKEluY2x1ZGVzIHByZWNpc2UgZGVybWFsIG1hcmtpbmcgYW5kIG1hcHBpbmcpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IE1lY2hhbmlzbTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk5lb2NvbGxhZ2VuZXNpcyBpbmR1Y3Rpb24gdmlhIHN0cnVjdHVyYWwgUExMQSBvciBDYUhBIG1pY3JvLXBhcnRpY2xlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+R3JhZHVhbCBpbXByb3ZlbWVudHMgYmVnaW4gYXQgNCB3ZWVrczsgUGVhayBzdHJ1Y3R1cmFsIHJlZmluZW1lbnQgc3RhYmlsaXplcyBhdCAzIG1vbnRoczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+VXAgdG8gMjQgTW9udGhzIG9yIGxvbmdlciAoVmFyaWVzIGJhc2VkIG9uIGNlbGx1bGFyIHJlc3BvbnNlIGFuZCBpbml0aWFsIHNraW4gbGF4aXR5KTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+RG93bnRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5NaW5pbWFsIChNaWxkIHRlbXBvcmFyeSBzd2VsbGluZyBvciBzdWJ0bGUgdGVuZGVybmVzcyB0aGF0IHJlc29sdmVzIHdpdGhpbiA0OCBob3Vycyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGJvZHk+CiAgICA8L3RhYmxlPgo8L2Rpdj4=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Biostimulators Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Endogenous Collagen Synthesis\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Directly stimulates the body\'s natural cellular mechanisms to produce structural Type I and Type III collagen.</p>[/fusion_content_box][fusion_content_box title=\"Gradual, Totally Discrete Volumization\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Volume develops progressively over 4 to 8 weeks, ensuring an elegant, organic transformation without sudden structural changes.</p>[/fusion_content_box][fusion_content_box title=\"Advanced Dermal Thickening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Rebuilds the depleted extracellular matrix, restoring thickness, elasticity, and bounce to thin, aging skin.</p>[/fusion_content_box][fusion_content_box title=\"Long-Term Structural Lifting\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Tightens and firms areas prone to laxity, such as hollow cheeks, the jawline silhouette, and the lower face.</p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\n<p>FAQ</p>\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"How do biostimulators differ from traditional dermal fillers?\" open=\"no\"]<p>Dermal fillers are composed of Hyaluronic Acid gel that provides immediate, mechanical volume to fill a specific crease or line. Biostimulators do not rely on an artificial gel; instead, they deposit micro-particles that act as a biological trigger, forcing your own living cells to grow fresh collagen over time to naturally thicken and lift the skin.</p>[/fusion_toggle][fusion_toggle title=\"When will I see the actual results of my biostimulator treatment?\" open=\"no\"]<p>Because this therapy relies on your body’s natural cellular growth cycles, results are not instantaneous. You will notice a progressive improvement in skin firmness, health, and subtle volume starting around week 4, with the most profound, natural structural reveal peaking at 3 months.</p>[/fusion_toggle][fusion_toggle title=\"How many treatment sessions are typically recommended?\" open=\"no\"]<p>While individual skin laxity varies, most clients achieve an optimal, high-density collagen foundation through a tailored series of 2 to 3 sessions, spaced approximately 4 to 6 weeks apart.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Biostimulators","","inherit","closed","closed","","943-autosave-v1","","","2026-06-07 17:41:39","2026-06-07 17:41:39","","943","https://dr.frex.digital/?p=1175","0","revision","","0"),
("1176","1","2026-06-07 11:42:28","2026-06-07 11:42:28","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]\r\n<p>Premium Botox &amp; Anti-Wrinkle Treatments in Dubai</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)\" font_size=\"22px\"]\r\n<p>Soften wrinkles, define your features, and refresh your look with precision-focused, natural-looking results tailored to your lifestyle.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Botox &amp; Anti-Wrinkle</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_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><span data-path-to-node=\"9,1,1,0\"><span class=\"citation-88\">The fast-paced Dubai lifestyle, sun exposure, and daily facial expressions can lead to dynamic lines becoming permanent creases</span></span><span data-path-to-node=\"9,1,1,2\">. </span><span data-path-to-node=\"9,1,1,4\"><span class=\"citation-87\">Our advanced Botulinum Toxin treatments offer a sophisticated solution to gently relax targeted muscles, erasing signs of fatigue while preserving your natural expressions</span></span><span data-path-to-node=\"9,1,1,6\">. </span><span data-path-to-node=\"9,1,1,8\"><span class=\"citation-86\">At Dr. Soheila’s clinic, every treatment is an art form driven by absolute precision and tailored to enhance your unique facial anatomy</span></span><span data-path-to-node=\"9,1,1,10\">.</span></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Forehead &amp; Crow\'s Feet</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Smooths expression lines to create a refreshed and youthful upper face.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Nefertiti Neck Lift &amp; Lower Face</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Defines the jawline and slims the neck for an elegant profile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Lip Flip</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Subtly enhances the upper lip border for a fuller, natural smile.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Underarm Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Effectively reduces excessive sweating to ensure long-lasting freshness and comfort.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Hands &amp; Feet Hyperhidrosis</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Targeted treatment to control excessive sweating and restore daily confidence.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Botox for Muscle Spasm</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Relieves painful muscle tension and spasms for improved comfort and mobility.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Trap / Barbie Botox</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Slims the shoulder contour to create a beautifully elongated neck line.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOyAvKiDYp9i02LrYp9mEINqp2KfZhdmEINm+2YfZhtin24wg2LPYqtmI2YYgKi8KICAgICAgICBib3gtc2l6aW5nOiBib3JkZXItYm94OwogICAgICAgIG1hcmdpbjogMzBweCAwOwogICAgICAgIGZvbnQtZmFtaWx5OiAnU2Vnb2UgVUknLCBSb2JvdG8sIEhlbHZldGljYSwgQXJpYWwsIHNhbnMtc2VyaWY7CiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgewogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7CiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRoIHsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBmb250LXNpemU6IDIwcHg7CiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAxLjVweDsKICAgICAgICBwYWRkaW5nLWJvdHRvbTogMjBweDsKICAgICAgICBib3JkZXItYm90dG9tOiAycHggc29saWQgI2ZmZTdhMTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyIHsKICAgICAgICB0cmFuc2l0aW9uOiBiYWNrZ3JvdW5kLWNvbG9yIDAuM3MgZWFzZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmhvdmVyIHsKICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDIpOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQgewogICAgICAgIHBhZGRpbmc6IDIwcHggMTVweDsKICAgICAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgyNTUsIDIzMSwgMTYxLCAwLjEpOwogICAgICAgIGZvbnQtc2l6ZTogMTVweDsKICAgICAgICBsaW5lLWhlaWdodDogMS42OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6bGFzdC1jaGlsZCB0ZCB7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogbm9uZTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgIHdpZHRoOiAyNSU7IC8qINio2YfbjNmG2YfigIzYs9in2LLbjCDYqtmG2KfYs9ioINiz2KrZiNmG4oCM2YfYpyDYr9ixINit2KfZhNiqINiq2YXYp9mFINi12YHYrdmHICovCiAgICAgICAgZm9udC13ZWlnaHQ6IDYwMDsKICAgICAgICBjb2xvcjogI2ZmZTdhMTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMC41cHg7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXZhbHVlIHsKICAgICAgICBjb2xvcjogI2ZmZmZmZjsKICAgICAgICBmb250LXdlaWdodDogNDAwOwogICAgfQogICAgCiAgICAvKiBSZXNwb25zaXZlIERlc2lnbiBmb3IgTW9iaWxlIERldmljZXMgKi8KICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5UcmVhdG1lbnQgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTDigJMyMCBNaW51dGVzIChEZXBlbmRpbmcgb24gdGFyZ2V0ZWQgYXJlYXMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5UZWNobmlxdWUgVXNlZDwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pY3JvLUluamVjdGlvbnMgd2l0aCBVbHRyYS1GaW5lIFByZW1pdW0gTmVlZGxlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBzbW9vdGhpbmcgaW4gM+KAkzcgZGF5czsgRnVsbCBvcHRpbWFsIGVmZmVjdHMgYXQgMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MyB0byA2IE1vbnRocyAoVmFyaWVzIGJ5IGluZGl2aWR1YWwgbWV0YWJvbGlzbSAmIGxpZmVzdHlsZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Tm9uZSAoTWluaW1hbCBsb2NhbGl6ZWQgcmVkbmVzcyB0aGF0IGZhZGVzIHdpdGhpbiBhbiBob3VyKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Anti-Wrinkle Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]<p>FAQ</p>[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]<p>Not at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.</p>[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]<p>On average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.</p>[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]<p>We advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Biostimulators","","inherit","closed","closed","","943-revision-v1","","","2026-06-07 11:42:28","2026-06-07 11:42:28","","943","https://dr.frex.digital/?p=1176","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1177","1","2026-06-07 11:48:08","2026-06-07 11:48:08","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Biostimulator Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]<p>Rebuild your skin’s structural foundation from within. Activate progressive collagen synthesis to gradually restore youthful volume, improve firmness, and achieve long-lasting, elegant rejuvenation.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]<p>Traditional treatments often provide temporary cosmetic camouflage, but advanced Biostimulators work by fundamentally changing how your skin ages. Utilizing premium biostimulatory components like Poly-L-Lactic Acid (PLLA) and Calcium Hydroxylapatite (CaHA), these treatments enter the deep dermal layers to act as a scaffold, triggering your body\'s fibroblasts to produce a flood of new, natural collagen and elastin. At Dr. Soheila’s clinic, we do not simply inject volume; we masterfully guide your tissues to regenerate themselves. Over the weeks following your session, your skin undergoes a profound structural remodeling, restoring its youthful thickness, architectural bounce, and natural contours from the inside out.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5CaW9zdGltdWxhdG9ycyBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4zMOKAkzQ1IE1pbnV0ZXMgKEluY2x1ZGVzIHByZWNpc2UgZGVybWFsIG1hcmtpbmcgYW5kIG1hcHBpbmcpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IE1lY2hhbmlzbTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk5lb2NvbGxhZ2VuZXNpcyBpbmR1Y3Rpb24gdmlhIHN0cnVjdHVyYWwgUExMQSBvciBDYUhBIG1pY3JvLXBhcnRpY2xlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+R3JhZHVhbCBpbXByb3ZlbWVudHMgYmVnaW4gYXQgNCB3ZWVrczsgUGVhayBzdHJ1Y3R1cmFsIHJlZmluZW1lbnQgc3RhYmlsaXplcyBhdCAzIG1vbnRoczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+VXAgdG8gMjQgTW9udGhzIG9yIGxvbmdlciAoVmFyaWVzIGJhc2VkIG9uIGNlbGx1bGFyIHJlc3BvbnNlIGFuZCBpbml0aWFsIHNraW4gbGF4aXR5KTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+RG93bnRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5NaW5pbWFsIChNaWxkIHRlbXBvcmFyeSBzd2VsbGluZyBvciBzdWJ0bGUgdGVuZGVybmVzcyB0aGF0IHJlc29sdmVzIHdpdGhpbiA0OCBob3Vycyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGJvZHk+CiAgICA8L3RhYmxlPgo8L2Rpdj4=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Biostimulators Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Targeted Expression Softening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Gently relaxes the specific muscles responsible for forehead wrinkles, crow\'s feet, and smile creases , ensuring a naturally refreshed look without a \"frozen\" appearance</p>\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Facial &amp; Body Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Delivers non-surgical structural refinement, from sharpening the jawline and lifting the lower face (Nefertiti) to slimming the shoulder silhouette (Barbie Botox)</p>\r\n[/fusion_content_box][fusion_content_box title=\"Therapeutic Sweat &amp; Tension Relief\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Provides highly effective clinical relief by blocking excessive sweating (Hyperhidrosis) in underarms, hands, or feet , and alleviating painful, persistent muscle spasms</p>\r\n[/fusion_content_box][fusion_content_box title=\"Proactive Age Defense\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Acts as a preventative shield for the upper face, intercepting repetitive muscle movements early enough to prevent fine lines from setting into deep, permanent creases</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will I lose my facial expressions or look unnatural?\" open=\"no\"]\r\n<p>Not at all. Dr. Soheila specializes in advanced, subtle injection techniques designed to preserve your natural expressions while softening tired-looking wrinkles.</p>\r\n[/fusion_toggle][fusion_toggle title=\"long do anti-wrinkle injections typically last?\" open=\"no\"]\r\n<p>On average, the effects last between 3 to 6 months. Results vary depending on your metabolism, muscle strength, and lifestyle.</p>\r\n[/fusion_toggle][fusion_toggle title=\"What is the recommended aftercare?\" open=\"no\"]\r\n<p>We advise remaining upright for 4 hours post-treatment, avoiding intense exercise or saunas for 24 hours, and refraining from rubbing the treated areas to ensure optimal product placement.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Biostimulators","","inherit","closed","closed","","943-revision-v1","","","2026-06-07 11:48:08","2026-06-07 11:48:08","","943","https://dr.frex.digital/?p=1177","0","revision","","0"),
("1178","1","2026-06-07 11:49:59","2026-06-07 11:49:59","[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=\"250px\" padding_right=\"20px\" padding_left=\"20px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"40\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center bottom\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1.02\" transform_scale_y_hover=\"1.02\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" dynamic_params=\"eyJiYWNrZ3JvdW5kX2ltYWdlIjp7ImRhdGEiOiJwb3N0X2ZlYXR1cmVkX2ltYWdlIiwidHlwZSI6Im1haW4ifX0=\" box_shadow_vertical=\"20\" box_shadow_horizontal=\"-1\" box_shadow_color=\"var(--awb-color6)\" border_radius_top_left=\"24px\" border_radius_top_right=\"24px\" border_radius_bottom_right=\"24px\" border_radius_bottom_left=\"24px\" 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=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" margin_bottom=\"-40px\" padding_top=\"40\" hover_type=\"none\" border_style=\"solid\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" background_color=\"var(--awb-color1)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" transform_type=\"regular\" transform_hover_element=\"parent\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"-10\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W10=\" scroll_motion_devices=\"small-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\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"on\" link_target=\"_self\" content_align=\"center\" size=\"5\" 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\" margin_bottom=\"12px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\"]\n<p>Class name</p>\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_right=\"40px\" margin_left=\"40px\" fusion_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)\" margin_bottom=\"25px\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJleGNlcnB0Iiwic3RvcmVfaWQiOiJhY2ZfdGV4dCJ9fQ==\"]\n<p>In ultricies tristique vestibulum.</p>\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\" bottom_margin=\"8px\" width=\"70%\" sep_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 90%))\" /][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\" alignment=\"center\" margin_bottom=\"20px\" icon=\"fusion-prefix-icon-dance-graph\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImFjZl90ZXh0IiwiZmllbGQiOiJhZ2VfYXBwcm9wcmlhdGUiLCJzdG9yZV9pZCI6ImFjZl90ZXh0IiwiYmVmb3JlIjoiRnJvbSAifX0=\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color8)\"]difficulty[/fusion_button][fusion_button target=\"_self\" color=\"custom\" 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\" alignment=\"center\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" padding_top=\"20px\" padding_bottom=\"20px\" border_radius_top_left=\"20\" border_radius_top_right=\"20\" border_radius_bottom_right=\"20\" border_radius_bottom_left=\"20\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJwb3N0X3Blcm1hbGluayJ9fQ==\"]View This Treatment[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]","Class 2","","inherit","closed","closed","","289-revision-v1","","","2026-06-07 11:49:59","2026-06-07 11:49:59","","289","https://dr.frex.digital/?p=1178","0","revision","","0"),
("1179","1","2026-06-07 11:54:01","2026-06-07 11:54:01","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Biostimulator Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]\r\n<p>Rebuild your skin’s structural foundation from within. Activate progressive collagen synthesis to gradually restore youthful volume, improve firmness, and achieve long-lasting, elegant rejuvenation.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Biostimulators</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\r\n<p>Traditional treatments often provide temporary cosmetic camouflage, but advanced Biostimulators work by fundamentally changing how your skin ages. Utilizing premium biostimulatory components like Poly-L-Lactic Acid (PLLA) and Calcium Hydroxylapatite (CaHA), these treatments enter the deep dermal layers to act as a scaffold, triggering your body\'s fibroblasts to produce a flood of new, natural collagen and elastin. At Dr. Soheila’s clinic, we do not simply inject volume; we masterfully guide your tissues to regenerate themselves. Over the weeks following your session, your skin undergoes a profound structural remodeling, restoring its youthful thickness, architectural bounce, and natural contours from the inside out.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Gradually stimulates your own collagen for long-lasting, natural facial volume.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Provides immediate lifting and stimulates long-term collagen and elastin production.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5CaW9zdGltdWxhdG9ycyBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4zMOKAkzQ1IE1pbnV0ZXMgKEluY2x1ZGVzIHByZWNpc2UgZGVybWFsIG1hcmtpbmcgYW5kIG1hcHBpbmcpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IE1lY2hhbmlzbTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk5lb2NvbGxhZ2VuZXNpcyBpbmR1Y3Rpb24gdmlhIHN0cnVjdHVyYWwgUExMQSBvciBDYUhBIG1pY3JvLXBhcnRpY2xlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+R3JhZHVhbCBpbXByb3ZlbWVudHMgYmVnaW4gYXQgNCB3ZWVrczsgUGVhayBzdHJ1Y3R1cmFsIHJlZmluZW1lbnQgc3RhYmlsaXplcyBhdCAzIG1vbnRoczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+VXAgdG8gMjQgTW9udGhzIG9yIGxvbmdlciAoVmFyaWVzIGJhc2VkIG9uIGNlbGx1bGFyIHJlc3BvbnNlIGFuZCBpbml0aWFsIHNraW4gbGF4aXR5KTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+RG93bnRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5NaW5pbWFsIChNaWxkIHRlbXBvcmFyeSBzd2VsbGluZyBvciBzdWJ0bGUgdGVuZGVybmVzcyB0aGF0IHJlc29sdmVzIHdpdGhpbiA0OCBob3Vycyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGJvZHk+CiAgICA8L3RhYmxlPgo8L2Rpdj4=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Biostimulators Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Endogenous Collagen Synthesis\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Directly stimulates the body\'s natural cellular mechanisms to produce structural Type I and Type III collagen.</p>[/fusion_content_box][fusion_content_box title=\"Gradual, Totally Discrete Volumization\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Volume develops progressively over 4 to 8 weeks, ensuring an elegant, organic transformation without sudden structural changes.</p>[/fusion_content_box][fusion_content_box title=\"Advanced Dermal Thickening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Rebuilds the depleted extracellular matrix, restoring thickness, elasticity, and bounce to thin, aging skin.</p>[/fusion_content_box][fusion_content_box title=\"Long-Term Structural Lifting\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Tightens and firms areas prone to laxity, such as hollow cheeks, the jawline silhouette, and the lower face.</p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"How do biostimulators differ from traditional dermal fillers?\" open=\"no\"]<p>Dermal fillers are composed of Hyaluronic Acid gel that provides immediate, mechanical volume to fill a specific crease or line. Biostimulators do not rely on an artificial gel; instead, they deposit micro-particles that act as a biological trigger, forcing your own living cells to grow fresh collagen over time to naturally thicken and lift the skin.</p>[/fusion_toggle][fusion_toggle title=\"When will I see the actual results of my biostimulator treatment?\" open=\"no\"]<p>Because this therapy relies on your body’s natural cellular growth cycles, results are not instantaneous. You will notice a progressive improvement in skin firmness, health, and subtle volume starting around week 4, with the most profound, natural structural reveal peaking at 3 months.</p>[/fusion_toggle][fusion_toggle title=\"How many treatment sessions are typically recommended?\" open=\"no\"]<p>While individual skin laxity varies, most clients achieve an optimal, high-density collagen foundation through a tailored series of 2 to 3 sessions, spaced approximately 4 to 6 weeks apart.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Biostimulators","","inherit","closed","closed","","943-revision-v1","","","2026-06-07 11:54:01","2026-06-07 11:54:01","","943","https://dr.frex.digital/?p=1179","0","revision","","0"),
("1180","1","2026-06-07 11:58:00","2026-06-07 11: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG08.jpg\" padding_bottom_small=\"90px\" padding_top_small=\"90px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"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)\" font_size=\"52px\"]Premium Skin Booster Treatments in Dubai[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"48px\"]Premium Skin Booster Treatments in Dubai[/fusion_title][fusion_text 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)\" font_size=\"22px\"]\r\n\r\nHydro-infuse your skin from within. Eliminate fine crepey lines, restore elite hydration, and unveil a flawless, luminous glow with bespoke bio-remodeling therapies.\r\n\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"18px\"]\r\n\r\nHydro-infuse your skin from within. Eliminate fine crepey lines, restore elite hydration, and unveil a flawless, luminous glow with bespoke bio-remodeling therapies.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nSkin Boosters\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"15px\" min_height=\"\" link=\"\"][fusion_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\nHigh-end skincare products often fail to penetrate beyond the skin\'s tough outer barrier, leaving deeper layers starved of essential moisture—a challenge significantly amplified by Dubai’s intense climate and daily sun exposure. Premium Skin Boosters provide the ultimate medical antidote by micro-injecting pure, non-crosslinked Hyaluronic Acid, essential amino acids, and vital nutrients directly into the living dermis. Instead of mechanically filling a wrinkle like a dermal filler or freezing a gesture like Botox, skin boosters act as an intensive internal moisturizer and bio-remodeler. At Dr. Soheila Eskandari’s clinic, advanced treatments such as Profhilo and Jalupro are meticulously administered to trigger rapid cellular remodeling, instantly upgrading skin texture, smoothing superficial crepey lines, and unleashing a brilliant, lit-from-within glow that topical creams simply cannot match.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1387|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Profhilo-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nDeeply hydrates and bio-remodels the skin to improve overall elasticity.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/profhilo/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1388|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Jalupro-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nStimulates collagen production to effectively reduce fine lines and wrinkles.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/jalupro/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1389|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Sunekos-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRestores the extracellular matrix to deeply rejuvenate aging skin tissue.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/sunekos/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1390|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/NCTF-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nA premium poly-revitalizing cocktail that boosts skin radiance and hydration.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/skin-boosters/nctf/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzVjNWM1YzsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMyk7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDsKICAgICAgICBtYXJnaW46IDMwcHggMDsKICAgICAgICBmb250LWZhbWlseTogJ1NlZ29lIFVJJywgUm9ib3RvLCBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmOwogICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOwogICAgICAgIHRleHQtYWxpZ246IGxlZnQ7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMHB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMS41cHg7CiAgICAgICAgcGFkZGluZy1ib3R0b206IDIwcHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlZmU1ZGM7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ciB7CiAgICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjNzIGVhc2U7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA3KTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICBwYWRkaW5nOiAyMHB4IDE1cHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgICAgICBmb250LXNpemU6IDE1cHg7CiAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgdGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICB3aWR0aDogMjUlOwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDAuNXB4OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgY29sb3I6ICNmZmY7CiAgICAgICAgZm9udC13ZWlnaHQ6IDQwMDsKICAgIH0KICAgIAogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICAgICAgcGFkZGluZzogMTVweCAxMHB4OwogICAgICAgICAgICBmb250LXNpemU6IDE0cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgICAgICB3aWR0aDogNDAlOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPlNraW4gQm9vc3RlcnMgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MTXigJMzMCBNaW51dGVzIChGYXN0LCBwcmVjaXNlLCBhbmQgY29tZm9ydGFibGUgbWljcm8tZHJvcGxldCBzZXNzaW9ucyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByaW1hcnkgQ29tcG9zaXRpb248L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5IaWdoLXB1cml0eSBOb24tQ3Jvc3NsaW5rZWQgSHlhbHVyb25pYyBBY2lkIGNvbWJpbmVkIHdpdGggQW1pbm8gQWNpZHMgJiBQZXB0aWRlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SW5pdGlhbCBpbnRlcm5hbCBwbHVtcGluZyBpbiAz4oCTNSBkYXlzOyBQZWFrIHNraW4gcmFkaWFuY2UgYW5kIHNtb290aG5lc3MgYXQgMuKAkzQgd2Vla3M8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkxvbmdldml0eTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjQgdG8gNiBNb250aHMgKEV4dHJlbWVseSBzY2FsYWJsZSBhbmQgZW5oYW5jZWQgdGhyb3VnaCByZWNvbW1lbmRlZCBtYWludGVuYW5jZSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TWluaW1hbCAoVGlueSwgdGVtcG9yYXJ5IG1pY3JvLWJ1bXBzIGF0IGluamVjdGlvbiBwb2ludHMgdGhhdCBuYXR1cmFsbHkgZGlzcGVyc2Ugd2l0aGluIDEy4oCTMjQgaG91cnMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3Rib2R5PgogICAgPC90YWJsZT4KPC9kaXY+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"Key Benefits of Our Skin Boosters Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" link_type=\"text\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_size=\"23px\" heading_size=\"3\" title_color=\"var(--awb-color8)\" body_color=\"var(--awb-color6)\" backgroundcolor=\"rgba(224,211,192,0.18)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" icon=\"fa-gem fas\" iconspin=\"no\" iconcolor_hover=\"var(--awb-color1)\" iconcolor=\"var(--awb-color1)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordersize=\"0\" circlebordercolor=\"#1d1d1f\" outercirclebordersize=\"1\" outercirclebordercolor=\"var(--awb-color6)\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" margin_bottom=\"0\"][fusion_content_box title=\"Intense Hydro-Dermal Infusion\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nSaturates the deeper dermis with high-concentration moisture-binding molecules, eradicating chronic seasonal dryness and internal dullness.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Superficial Line Smoothing\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nEffortlessly softens fine, crepey skin textures, micro-wrinkles, and skin laxity across the face, neck, décolletage, and hands.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Brilliant (Lit-From-Within) Glow\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\" outercirclebordercolor=\"var(--awb-color5)\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\"]\r\n\r\nIgnites a visible, long-lasting cellular radiance, delivering the highly coveted healthy, plump, and luminous \"glass skin\" appearance.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Natural Bio-Remodeling\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDirectly stimulates fibroblasts to naturally upgrade your skin\'s own elasticity and tone without altering your facial geometry or expressions.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Zero Social Interruption\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nAn ultra-efficient, highly comfortable treatment with negligible downtime, perfectly matching the schedule of Dubai\'s premium high-end routine.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color7)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Will skin boosters change my facial features or make me look puffy?\" open=\"no\"]\r\n\r\nAbsolutely not. Unlike traditional dermal fillers, skin boosters utilize completely fluid, un-linked Hyaluronic Acid that disperses evenly throughout the skin layers. They are scientifically engineered to strictly improve skin quality, thickness, and hydration without adding artificial structure or changing your unique facial features.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How many skin booster sessions are recommended to see optimal results?\" open=\"no\"]\r\n\r\nWhile a single session noticeably boosts internal hydration, achieving an optimal luxury result typically requires an initial protocol of 2 to 3 sessions, spaced 4 weeks apart. This establishes a deep moisture reservoir that can be effortlessly maintained with a single touch-up every 6 months.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"What is the exact difference between a skin booster injection and a high-end topical serum?\" open=\"no\"]\r\n\r\nTopical serums contain large molecular structures that cannot bypass the skin\'s protective epidermal barrier, providing only brief surface-level hydration. Skin boosters are injected directly beneath this barrier, delivering high-concentration nutrients straight to the living dermal cells for authentic, deep rejuvenation.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Skin Boosters","","publish","closed","closed","","skin-boosters","","","2026-06-23 22:15:54","2026-06-23 22:15:54","","922","https://dr.frex.digital/?page_id=1180","0","page","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1181","1","2026-06-07 11:58:00","2026-06-07 11: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Dermal Fillers in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]\r\n\r\nRestore youthful volume, refine your structural contours, and enhance facial symmetry with bespoke, natural-looking Hyaluronic Acid treatments.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"botox\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nDermal Fillers\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\r\n\r\nWith time, structural bone resorption, and the demanding environmental factors of Dubai, the face naturally loses its youthful volume, leading to hollow regions and pronounced shadowing. Premium Dermal Fillers offer an instant, sophisticated solution to replenish this lost volume, smooth out deep structural folds, and artistically redefine your features. At Dr. Soheila’s clinic, filler injections are treated as an absolute art form. Every placement is meticulously mapped to enhance your unique facial anatomy, delivering a refreshed, elegant, and perfectly balanced profile without a single day of surgical recovery.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Lip Filler (Natural &amp; Russian)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSculpts and volumizes lips using advanced techniques for perfect harmony.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Face Lift with Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRestores lost volume and lifts facial contours without any surgery.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Cheek Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nEnhances cheekbone definition and restores youthful volume to the mid-face.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Temple Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSmooths temporal hollows to create a more balanced and youthful facial structure.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Chin Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nElongates and defines the chin profile for enhanced facial symmetry.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Jawline Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSculpts a sharp, defined jawline for a stronger and more attractive profile.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Face Contouring</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nArtistically balances facial features to achieve a beautifully harmonized appearance.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Smile Lines (Nasolabial)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSoftens deep creases around the mouth for a smoother, younger look.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Under-Eye Filler</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nBrightens tired eyes and restores volume to hollow lower eyelids.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Tear Trough</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSmooths the transition under the eyes to eliminate dark shadows.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5EZXJtYWwgRmlsbGVycyBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4xNeKAkzQ1IE1pbnV0ZXMgKERlcGVuZGluZyBvbiB0aGUgY29tcGxleGl0eSBvZiB0YXJnZXRlZCBhcmVhcyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlRlY2huaXF1ZSBVc2VkPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+UHJlY2lzaW9uIE1pY3JvLUluamVjdGlvbnMgdmlhIFVsdHJhLUZpbmUgUHJlbWl1bSBOZWVkbGVzIG9yIE1pY3JvLUNhbm51bGFzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5SZXN1bHRzIFZpc2libGU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5JbW1lZGlhdGUgdm9sdW1ldHJpYyBsaWZ0OyBGaW5hbCBvcHRpbWFsIHNldHRsaW5nIGFuZCByZWZpbmVtZW50IHdpdGhpbiA34oCTMTQgZGF5czwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+NiB0byAxOCBNb250aHMgKFZhcmllcyBieSBwcm9kdWN0IGRlbnNpdHksIHRyZWF0ZWQgYXJlYSwgYW5kIGluZGl2aWR1YWwgbWV0YWJvbGlzbSk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TWluaW1hbCAoTWlsZCBsb2NhbGl6ZWQgc3dlbGxpbmcgb3Igc3VidGxlIHRlbXBvcmFyeSBicnVpc2luZyB0aGF0IGZhZGVzIHF1aWNrbHkpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3Rib2R5PgogICAgPC90YWJsZT4KPC9kaXY+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Dermal Fillers Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Instant Volumetric Restoration\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nImmediately replenishes hollow areas, smoothing deep creases like the nasolabial smile lines.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Bespoke Facial Contouring\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nArtistically sculpts and shapes key structural points, including custom jawline definition, chin elongation, and cheekbone enhancement.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Lip Refinement\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDelivers beautifully proportioned, tailored lips utilizing both soft natural hydration and structured Russian lip techniques.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Tear Trough Rejuvenation\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nBrightens tired eyes by seamlessly filling under-eye hollows and eliminating dark structural shadows.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Durable Structural Support\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nProvides a high-density matrix that lifts sagging tissues and holds its shape precisely, ensuring a stable, long-lasting contour that integrates seamlessly with your natural facial movements.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will dermal fillers make my face look overfilled or unnatural?\" open=\"no\"]\r\n\r\nNever. Dr. Soheila strictly operates on a customized \"less is more\" philosophy. The objective is to gently restore lost skeletal support and shadows rather than over-inflating tissues, guaranteeing an elegantly undetectable enhancement.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Is the dermal filler treatment painful?\" open=\"no\"]\r\n\r\nYour absolute comfort is our luxury standard. We apply a premium topical anesthetic cream prior to the procedure, and we exclusively utilize premium global filler brands that contain built-in lidocaine to make the treatment virtually painless.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"What is the difference between a dermal filler and a wrinkle-relaxing injection?\" open=\"no\"]\r\n\r\n<span data-path-to-node=\"16,2,1,0,1,0\"><span class=\"citation-62\">Dermal fillers use Hyaluronic Acid to add volume, fill deep folds, and sculpt areas like cheeks or lips</span></span><span data-path-to-node=\"16,2,1,0,1,2\">. </span><span data-path-to-node=\"16,2,1,0,1,4\"><span class=\"citation-61\">Wrinkle-relaxers (Botox) work by temporarily relaxing the dynamic muscles that cause expression lines on the upper face</span></span><span data-path-to-node=\"16,2,1,0,1,6\">.</span>\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Skin Boosters","","inherit","closed","closed","","1180-revision-v1","","","2026-06-07 11:58:00","2026-06-07 11:58:00","","1180","https://dr.frex.digital/?p=1181","0","revision","","0"),
("1182","1","2026-06-07 12:03:48","2026-06-07 12:03:48","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Skin Booster Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]<p>Hydro-infuse your skin from within. Eliminate fine crepey lines, restore elite hydration, and unveil a flawless, luminous glow with bespoke bio-remodeling therapies.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]<p>High-end skincare products often fail to penetrate beyond the skin\'s tough outer barrier, leaving deeper layers starved of essential moisture—a challenge significantly amplified by Dubai’s intense climate and daily sun exposure. Premium Skin Boosters provide the ultimate medical antidote by micro-injecting pure, non-crosslinked Hyaluronic Acid, essential amino acids, and vital nutrients directly into the living dermis. Instead of mechanically filling a wrinkle like a dermal filler or freezing a gesture like Botox, skin boosters act as an intensive internal moisturizer and bio-remodeler. At Dr. Soheila’s clinic, advanced treatments such as Profhilo and Jalupro are meticulously administered to trigger rapid cellular remodeling, instantly upgrading skin texture, smoothing superficial crepey lines, and unleashing a brilliant, lit-from-within glow that topical creams simply cannot match.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5Ta2luIEJvb3N0ZXJzIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjE14oCTMzAgTWludXRlcyAoRmFzdCwgcHJlY2lzZSwgYW5kIGNvbWZvcnRhYmxlIG1pY3JvLWRyb3BsZXQgc2Vzc2lvbnMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IENvbXBvc2l0aW9uPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SGlnaC1wdXJpdHkgTm9uLUNyb3NzbGlua2VkIEh5YWx1cm9uaWMgQWNpZCBjb21iaW5lZCB3aXRoIEFtaW5vIEFjaWRzICYgUGVwdGlkZXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkluaXRpYWwgaW50ZXJuYWwgcGx1bXBpbmcgaW4gM+KAkzUgZGF5czsgUGVhayBza2luIHJhZGlhbmNlIGFuZCBzbW9vdGhuZXNzIGF0IDLigJM0IHdlZWtzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj40IHRvIDYgTW9udGhzIChFeHRyZW1lbHkgc2NhbGFibGUgYW5kIGVuaGFuY2VkIHRocm91Z2ggcmVjb21tZW5kZWQgbWFpbnRlbmFuY2UpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pbmltYWwgKFRpbnksIHRlbXBvcmFyeSBtaWNyby1idW1wcyBhdCBpbmplY3Rpb24gcG9pbnRzIHRoYXQgbmF0dXJhbGx5IGRpc3BlcnNlIHdpdGhpbiAxMuKAkzI0IGhvdXJzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Skin Boosters Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Intense Hydro-Dermal Infusion\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Saturates the deeper dermis with high-concentration moisture-binding molecules, eradicating chronic seasonal dryness and internal dullness.</p>[/fusion_content_box][fusion_content_box title=\"Superficial Line Smoothing\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Effortlessly softens fine, crepey skin textures, micro-wrinkles, and skin laxity across the face, neck, décolletage, and hands.</p>[/fusion_content_box][fusion_content_box title=\"Brilliant \"Lit-From-Within\" Glow\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Ignites a visible, long-lasting cellular radiance, delivering the highly coveted healthy, plump, and luminous \"glass skin\" appearance.</p>[/fusion_content_box][fusion_content_box title=\"Natural Bio-Remodeling\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Directly stimulates fibroblasts to naturally upgrade your skin\'s own elasticity and tone without altering your facial geometry or expressions.</p>[/fusion_content_box][fusion_content_box title=\"Zero Social Interruption\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>An ultra-efficient, highly comfortable treatment with negligible downtime, perfectly matching the schedule of Dubai\'s premium high-end routine.</p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will skin boosters change my facial features or make me look puffy?\" open=\"no\"]<p>Absolutely not. Unlike traditional dermal fillers, skin boosters utilize completely fluid, un-linked Hyaluronic Acid that disperses evenly throughout the skin layers. They are scientifically engineered to strictly improve skin quality, thickness, and hydration without adding artificial structure or changing your unique facial features.</p>[/fusion_toggle][fusion_toggle title=\"How many skin booster sessions are recommended to see optimal results?\" open=\"no\"]<p>While a single session noticeably boosts internal hydration, achieving an optimal luxury result typically requires an initial protocol of 2 to 3 sessions, spaced 4 weeks apart. This establishes a deep moisture reservoir that can be effortlessly maintained with a single touch-up every 6 months.</p>[/fusion_toggle][fusion_toggle title=\"What is the exact difference between a skin booster injection and a high-end topical serum?\" open=\"no\"]<p>Topical serums contain large molecular structures that cannot bypass the skin\'s protective epidermal barrier, providing only brief surface-level hydration. Skin boosters are injected directly beneath this barrier, delivering high-concentration nutrients straight to the living dermal cells for authentic, deep rejuvenation.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Skin Boosters","","inherit","closed","closed","","1180-revision-v1","","","2026-06-07 12:03:48","2026-06-07 12:03:48","","1180","https://dr.frex.digital/?p=1182","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1183","1","2026-06-07 12:10:52","2026-06-07 12:10: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/060221.mp4\" background_color=\"rgba(45,45,45,0.83)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"equals\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" custom_field_value=\"sho\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-07 12:10:52","2026-06-07 12:10:52","","5","https://dr.frex.digital/?p=1183","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1184","1","2026-06-07 12:16:35","2026-06-07 12:16: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\" 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=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"162px\" padding_bottom_small=\"103px\" admin_label=\"Home - Hero Not Mobile\" background_slider_animation=\"fade\" background_slider_blend_mode=\"soft-light\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoibW9iaWxlIn1d\" video_aspect_ratio=\"16:9\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/060221.mp4\" background_color=\"rgba(45,45,45,0.83)\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]\r\n<p>Naturally You, Beautifully Refined</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Premium injectables &amp; skin treatments by Dr. Soheila, DHA &amp; MOH licensed, Umm Suqeim, Dubai.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_end_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 70%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"230px\" padding_top=\"270px\" margin_bottom=\"0px\" animation_color=\"var(--awb-color8)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"182px\" padding_bottom_small=\"123px\" admin_label=\"Home - Hero Mobile\" background_slider_animation=\"stack\" background_slider_blend_mode=\"soft-light\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2024/02/mobile-bg.jpg\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJtb2JpbGUifV0=\" skip_lazy_load=\"skip\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" 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\" 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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" font_size=\"50px\"]\r\n<p>Discover the Art of Dance</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]Whether you prefer ballet, jazz, or hip hop , we have a class for you.[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"https://dr.frex.digital/classes/\"]View our dance classes[/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=\"yes\" box_shadow_blur=\"59\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"24px\" padding_bottom=\"24px\" background_color=\"#ffe7a1\" admin_label=\"Home - Promo Banner\" link_hover_color=\"var(--awb-custom_color_1)\" box_shadow_horizontal=\"0\" box_shadow_vertical=\"10\" box_shadow_color=\"#ffc313 \"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" 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-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)\" content_alignment=\"center\" margin_bottom=\"0\"]\r\n<p>New patient offer this month! <a href=\"#\"><u>book your first consultation today!</u></a></p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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=\"125px\" padding_bottom=\"143px\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_top_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Classes\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Our Signature Treatments</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>A curated selection of our most-requested treatments refined, Dr. Soheila and designed for natural-looking results.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"289\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"equals\" 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=\"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=\"3\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"97\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" custom_field_name=\"post_cart\" custom_field_value=\"show\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"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\" margin_bottom=\"125px\" animation_type=\"fade\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][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=\"1\" padding_top=\"110px\" padding_right=\"100px\" padding_bottom=\"110px\" padding_left=\"100px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" padding_top_small=\"70px\" padding_left_small=\"70px\" padding_right_small=\"70px\" padding_bottom_small=\"70px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_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\" margin_bottom=\"10px\"]\r\n<p>Meet Dr. Soheila</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\" font_size=\"22px\"]\r\n<p>DHA &amp; MOH Licensed Aesthetic Doctor</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=\"0px\"]\r\n<p>Dr. Soheila Eskandari is a DHA &amp; MOH licensed aesthetic doctor in Dubai, specialising in injectables and non-surgical facial treatments. She combines medical precision with an artistic eye enhancing your natural features, never changing who you</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=\"35px\" margin_right=\"-40px\" margin_left=\"-40px\"]\r\n<blockquote>\r\n<p>My goal is results that look like you refreshed, balanced and never overdone.</p>\r\n</blockquote>\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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\" button_gradient_top_color=\"var(--awb-color8)\" button_gradient_bottom_color=\"var(--awb-color8)\" accent_color=\"var(--awb-color3)\"]View Full Information[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"2_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/DrSoheila-Picture-copy2.jpg\" last=\"true\" border_position=\"all\" first=\"false\" background_image_id=\"1036|full\" border_radius_top_left=\"10\" border_radius_top_right=\"10\" border_radius_bottom_right=\"10\" border_radius_bottom_left=\"10\" min_height=\"\" link=\"\"][fusion_separator style_type=\"none\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"40vh\" /][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-icon-dance-arrow\" link=\"#\"]Book a Consultation[/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_color=\"rgba(0,0,0,0.7)\" gradient_end_color=\"rgba(0,0,0,0.7)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2023/07/hero-1-scaled.jpg\" padding_bottom=\"190px\" padding_top=\"190px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color3)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"95px\" padding_bottom_small=\"95px\" margin_bottom_small=\"80px\" padding_top_medium=\"130px\" padding_bottom_medium=\"130px\" margin_bottom_medium=\"90px\" animation_type=\"reveal\" admin_label=\"Home - Banner\" video_mp4=\"https://dr.frex.digital/wp-content/uploads/2026/06/0_Beauty_Facial_1920x1080.mp4\"][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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" animation_type=\"fade\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\" font_size=\"73px\" line_height=\"88px\"]\r\n<p>Discover The Art Of Natural Beauty</p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"0px\" margin_top=\"0\"]Discover the Art of Dance[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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\" text_color=\"var(--awb-color1)\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_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=\"55px\" margin_bottom_small=\"60px\"]\r\n<p>Whether you are looking for Botox, premium fillers, or skin rejuvenation, we have the perfect treatment for you.</p>\r\n[/fusion_title][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\" alignment=\"center\" icon=\"fusion-prefix-icon-dance-arrow\" link=\"#\"]View Our Treatments[/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_bottom=\"115px\" border_sizes_bottom=\"2px\" border_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 95%))\" margin_bottom=\"125px\" padding_left_medium=\"50px\" padding_right_medium=\"50px\" padding_bottom_small=\"80px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" padding_bottom_medium=\"90px\" admin_label=\"Home - Instructors\"][fusion_builder_row][fusion_builder_column type=\"23\" type=\"23\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" margin_bottom_small=\"50px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"24px\"]\r\n<p>Solutions by Concern</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\" margin_right=\"15%\"]\r\n<p>Targeted, Dr Soheila solutions for the concerns that matter most to you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]View all Informaton[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"77\" type=\"77\" layout=\"75\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_medium=\"2_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"313\" post_card_list_view=\"0\" source=\"posts\" post_type=\"page\" posts_by=\"awb_custom_field\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" offset=\"0\" 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=\"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=\"stretch\" columns_medium=\"2\" columns_small=\"1\" 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=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" 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\" dots_margin_top=\"80px\" custom_field_name=\"postcart\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Gallery\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"p\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"13px\" margin_bottom=\"0\"]\r\n<p><strong>Real Patients, Natural Results</strong></p>\r\n[/fusion_title][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>Before &amp; After</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>See the natural, balanced results Dr. Soheila creates real transformations from real patients.</p>\r\n[/fusion_text][fusion_gallery order_by=\"desc\" aspect_ratio=\"1-1\" custom_aspect_ratio=\"100\" columns_medium=\"4\" columns_small=\"0\" columns=\"4\" lightbox=\"yes\" load_more_btn_span=\"no\" button_alignment=\"center\" caption_style=\"dario\" caption_title_tag=\"div\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" limit=\"-1\" column_spacing=\"55\" caption_title_size=\"13px\" caption_text_size=\"13px\" border_radius=\"15px\"][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler.jpg\" image_id=\"1053|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Underarm-whitening-1-copy.jpg\" image_id=\"1016|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-4-copy.jpg\" image_id=\"1017|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-2-copy.jpg\" image_id=\"1012|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Full-Face-Filler-1-copy.jpg\" image_id=\"1010|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-3-copy.jpg\" image_id=\"1015|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-calcium-injection-1-copy.jpg\" image_id=\"1011|full\" linktarget=\"_self\" /][fusion_gallery_image image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Before-After-Lip-Filler-1-copy.jpg\" image_id=\"1013|full\" linktarget=\"_self\" /][/fusion_gallery][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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_color=\"rgba(0,0,0,0.6)\" gradient_end_color=\"rgba(0,0,0,0.4)\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" 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\" margin_bottom=\"125px\" background_color=\"var(--awb-color8)\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG01-scaled.jpg\" padding_top=\"140px\" padding_bottom=\"100px\" padding_top_small=\"100px\" padding_bottom_small=\"100px\" margin_bottom_small=\"80px\" padding_top_medium=\"100px\" padding_bottom_medium=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Next Classes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" animation_type=\"fade\" spacing_right=\"5.8%\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" text_color=\"var(--awb-color1)\"]What Our Patients in Dubai Say[/fusion_title][fusion_text animation_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\" text_color=\"var(--awb-color1)\"]\r\n<p>Discover how our patients in Dubai describe their journey of natural transformations and premium luxury treatments at Dr. Soheila\'s Clinic.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color8)\" border_hover_color=\"var(--awb-color1)\" 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-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Lips Filler &amp; Face Contour</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Fatima Al Marzooqi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>Dr. Soheila perfectly tailored my lips (Russian technique) and jawline. Flawless attention to detail and a beautiful, natural result!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>IV Treatment - Glutathione</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Sarah Roberts</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>The IV therapy significantly boosted my energy levels, and the glutathione blend made my skin remarkably clearer. A truly luxurious experience!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Hair Loss Treatment with Exosome</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Mahsa T.</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>After just a few Exosome Microneedling sessions, my severe hair loss stopped completely, and my hair density has visibly returned.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" bottom_margin=\"30px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][fusion_builder_row_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>Barbie Botox &amp; Nefertiti Neck Lift</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"25px\" margin_bottom=\"0\"]\r\n<p><strong>Noor Al Obaidi</strong></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\" font_size=\"18px\" margin_bottom=\"0\"]\r\n<p>⭐️⭐️⭐️⭐️⭐️</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" font_size=\"14px\"]\r\n<p>✔ Verified Patient</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" 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)\" margin_bottom=\"0\"]\r\n<p>By combining the Nefertiti Lift and Barbie Botox, Dr. Soheila made my neck and shoulders look beautifully elongated and elegant. Extremely satisfied!</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"20\" type=\"20\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" amount=\"20\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" top_margin=\"10px\" sep_color=\"rgba(255,195,19,0.3)\" border_size=\"2\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"center center\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/A-Natural-Approach-to-Beauty-Pic-copy.jpg\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" background_image_id=\"1031|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"true\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"false\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>A Natural Approach to Beauty</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=\"35px\"]\r\n<p>Dr. Soheila believes the best results are the ones no one can point to. Every treatment is designed to enhance your natural features and leave you looking refreshed never overdone.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Meet Dr. Soheila[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" flex_justify_content=\"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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" margin_bottom=\"125px\" animation_type=\"fade\" flex_column_spacing=\"120px\" margin_bottom_small=\"0px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Info\"][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\" padding_top=\"110px\" padding_right=\"79px\" padding_bottom=\"110px\" padding_left=\"0px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" last=\"false\" border_position=\"all\" padding_top_small=\"80px\" padding_bottom_small=\"80px\" padding_right_medium=\"0px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" 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\" margin_bottom=\"25px\"]\r\n<p>Your Journey Starts with a Consultation</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=\"35px\"]\r\n<p>Every face is different, so every plan should be too. Book a one-to-one consultation to discuss your goals and discover the treatments that are right for you.</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\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color8)\" icon=\"fusion-prefix-icon-dance-arrow\" button_gradient_top_color_hover=\"var(--awb-color8)\" button_gradient_bottom_color_hover=\"var(--awb-color8)\" accent_hover_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color1)\" link=\"#\"]Book a Consultation[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"flex-end\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"0px\" background_image=\"https://dr.frex.digital/wp-content/uploads/2026/06/Your-Journey-Starts-with-a-Consultation-Pic-copy.jpg\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" background_image_id=\"1030|full\" border_radius_top_left=\"16px\" border_radius_top_right=\"16px\" border_radius_bottom_right=\"16px\" border_radius_bottom_left=\"16px\" 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 top\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"custom\" pattern_custom_bg=\"https://dr.frex.digital/wp-content/uploads/2023/07/pattern-2.svg\" pattern_bg_style=\"default\" pattern_bg_opacity=\"15\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,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.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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-color7)\" padding_bottom=\"150px\" padding_top=\"150px\" margin_bottom=\"125px\" animation_color=\"var(--awb-color7)\" min_height=\"calc(100vh - 130px)\" padding_top_small=\"70px\" padding_bottom_small=\"70px\" margin_bottom_small=\"80px\" padding_top_medium=\"120px\" padding_bottom_medium=\"120px\" margin_bottom_medium=\"90px\" admin_label=\"Home - Newsletter\" background_custom_size=\"1350px\" background_blend_mode=\"overlay\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"50px\" padding_right=\"50px\" padding_bottom=\"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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" min_height=\"\" link=\"\"][fusion_code]W2luc3RhZ3JhbS1mZWVkIGZlZWQ9MV0=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" margin_bottom=\"125px\" margin_bottom_small=\"80px\" margin_bottom_medium=\"90px\" admin_label=\"Home - News\"][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\" margin_bottom=\"0px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" loop_animation=\"once\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_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=\"up\" animation_speed=\"1.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]\r\n<p>Aesthetic Insights &amp; Expert Tips</p>\r\n[/fusion_title][fusion_text animation_direction=\"up\" animation_speed=\"1.3\" animation_delay=\"0.0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" content_alignment=\"center\" margin_right=\"15%\" margin_left=\"15%\" margin_bottom=\"70px\"]\r\n<p>Stay updated with the latest beauty trends, advanced treatment guides, and skincare secrets tailored for Dubai\'s lifestyle.</p>\r\n[/fusion_text][fusion_post_cards post_card=\"204\" 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=\"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=\"stretch\" columns_medium=\"3\" 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=\"up\" animation_speed=\"1.3\" animation_delay=\"0.3\" animation_type=\"fade\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Dance Studio Home","","inherit","closed","closed","","5-revision-v1","","","2026-06-07 12:16:35","2026-06-07 12:16:35","","5","https://dr.frex.digital/?p=1184","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1186","1","2026-06-07 12:23:28","2026-06-07 12:23:28","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" padding_bottom_small=\"90px\" padding_top_small=\"90px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG08.jpg\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"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)\" font_size=\"52px\"]Premium PDRN &amp; Salmon DNA Therapy in Dubai[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"48px\"]Premium PDRN &amp; Salmon DNA Therapy in Dubai[/fusion_title][fusion_text 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)\" font_size=\"22px\"]\r\n\r\nRepair compromised skin barriers, erase deep structural imperfections, and accelerate cellular healing with advanced polynucleotide bio-repair science.\r\n\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"18px\"]\r\n\r\nRepair compromised skin barriers, erase deep structural imperfections, and accelerate cellular healing with advanced polynucleotide bio-repair science.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"pdrn\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nPDRN / Salmon DNA\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"15px\" min_height=\"\" link=\"\"][fusion_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\nDaily exposure to Dubai’s intense UV radiation, environmental oxidative stress, and the natural aging process directly damage our skin’s DNA, slowing down its biological repair cycle. Premium PDRN (Polydeoxyribonucleotide) and Salmon DNA therapies—featuring world-class formulations like Plinest and Rejuran—offer a groundbreaking medical solution. Extracted from salmon DNA, which shares a staggering compatibility with human dermal DNA, these highly purified polynucleotides are micro-injected straight into the damaged skin layers. Instead of creating a temporary camouflage like traditional gel fillers or blocking expressions like Botox, PDRN works as a powerful cellular messenger. It binds to cellular receptors to instantly block inflammation, accelerate cellular turnover, and force the skin to structurally rebuild itself. At Dr. Soheila Eskandari’s clinic, this advanced regenerative therapy is masterfully customized to treat persistent acne scars, erase micro-wrinkles, and fundamentally restore thin, fragile, or sun-damaged skin to its healthiest biological state.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1392|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Rejuran-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nUtilizes salmon DNA to repair skin barriers and heal damaged tissue.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/pdrn-and-salmon-dna/rejuran/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1391|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Plinest-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nAdvanced polynucleotide treatment that significantly improves skin texture and elasticity.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/pdrn-and-salmon-dna/plinest/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1393|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/TWAC-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nSynergistic cell booster that deeply regenerates and hydrates the skin layer.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/pdrn-and-salmon-dna/twac/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzVjNWM1YzsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMyk7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDsKICAgICAgICBtYXJnaW46IDMwcHggMDsKICAgICAgICBmb250LWZhbWlseTogJ1NlZ29lIFVJJywgUm9ib3RvLCBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmOwogICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOwogICAgICAgIHRleHQtYWxpZ246IGxlZnQ7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMHB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMS41cHg7CiAgICAgICAgcGFkZGluZy1ib3R0b206IDIwcHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlZmU1ZGM7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ciB7CiAgICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjNzIGVhc2U7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA3KTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICBwYWRkaW5nOiAyMHB4IDE1cHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgICAgICBmb250LXNpemU6IDE1cHg7CiAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgdGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICB3aWR0aDogMjUlOwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDAuNXB4OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgY29sb3I6ICNmZmY7CiAgICAgICAgZm9udC13ZWlnaHQ6IDQwMDsKICAgIH0KICAgIAogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICAgICAgcGFkZGluZzogMTVweCAxMHB4OwogICAgICAgICAgICBmb250LXNpemU6IDE0cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgICAgICB3aWR0aDogNDAlOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPlBEUk4gLyBTYWxtb24gRE5BIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjIw4oCTNDAgTWludXRlcyAoRmFzdCwgcHJlY2lzZSBtaWNyby1kcm9wbGV0IGRlcm1hbCBhZG1pbmlzdHJhdGlvbik8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByaW1hcnkgTWVjaGFuaXNtPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Q2VsbHVsYXIgcmVjZXB0b3IgYWN0aXZhdGlvbiBhbmQgRE5BIHN5bnRoZXNpcyBhY2NlbGVyYXRpb24gdmlhIFNhbG1vbiBQb2x5bnVjbGVvdGlkZXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkluaXRpYWwgdGV4dHVyZSBzbW9vdGhpbmcgaW4gN+KAkzEwIGRheXM7IFN0cnVjdHVyYWwgc2tpbiBiYXJyaWVyIGhlYWxpbmcgcGVha3MgYXQgNCB3ZWVrczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+NiB0byAxMiBNb250aHMgKEhpZ2hseSBjdW11bGF0aXZlOyBlZmZlY3RzIGluY3JlYXNlIHdpdGggZWFjaCBzdWJzZXF1ZW50IHRyZWF0bWVudCk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TWluaW1hbCAoU21hbGwgdGVtcG9yYXJ5IG1pY3JvLXBhcHVsZXMgYXQgdGhlIGluamVjdGlvbiBzaXRlcyB0aGF0IG5hdHVyYWxseSBkaXNwZXJzZSB3aXRoaW4gMjQgaG91cnMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3Rib2R5PgogICAgPC90YWJsZT4KPC9kaXY+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"Key Benefits of Our PDRN &amp; Salmon DNA Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"DNA-Level Tissue Repair\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nActively provides the vital structural building blocks required to heal and regenerate damaged dermal cells from within.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Skin Barrier Fortification\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDeeply repairs and strengthens compromised, weak, or thinning skin barriers, dramatically upgrading defense against environmental dehydration.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Scar &amp; Pore Refinement\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nHighly effective in treating stubborn acne scars, correcting uneven skin texture, and reducing expanded, loose pores.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Profound Anti-Inflammatory Action\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nRapidly down-regulates chronic skin inflammation, calming redness and reversing structural sun damage caused by extreme climates.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color7)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Will PDRN / Salmon DNA injections add volume or alter my facial geometry?\" open=\"no\"]\r\n\r\nAbsolutely not. PDRN contains zero cross-linked hyaluronic acid gels, meaning it does not have mechanical filling properties. It is purely a bio-regenerative treatment designed to heal, thicken, and texturize the living skin layers, completely preserving your unique facial features while optimizing skin health.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How many sessions are recommended to see real improvements in acne scars and skin quality?\" open=\"no\"]\r\n\r\nBecause cellular remodeling occurs in biological phases, an initial curative protocol of 3 to 4 sessions, spaced 3 to 4 weeks apart, is highly recommended. This builds a permanent structural repair foundation, which can be easily maintained with a single touch-up session every 6 months.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Is Salmon DNA therapy safe for sensitive skin types?\" open=\"no\"]\r\n\r\nYes, it is incredibly safe. The polynucleotides used are highly purified, heat-sterilized biocompatible structures that pose virtually zero risk of allergic reactions. It is actually highly indicated for repairing severely sensitive, inflamed, or hyper-reactive skin barriers.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","PDRN / Salmon DNA","","publish","closed","closed","","pdrn-and-salmon-dna","","","2026-06-23 22:15:53","2026-06-23 22:15:53","","922","https://dr.frex.digital/?page_id=1186","0","page","","0"),
("1187","1","2026-06-07 12:23:28","2026-06-07 12:23:28","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Biostimulator Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]\r\n\r\nRebuild your skin’s structural foundation from within. Activate progressive collagen synthesis to gradually restore youthful volume, improve firmness, and achieve long-lasting, elegant rejuvenation.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"biostimulators\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nBiostimulators\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\r\n\r\nTraditional treatments often provide temporary cosmetic camouflage, but advanced Biostimulators work by fundamentally changing how your skin ages. Utilizing premium biostimulatory components like Poly-L-Lactic Acid (PLLA) and Calcium Hydroxylapatite (CaHA), these treatments enter the deep dermal layers to act as a scaffold, triggering your body\'s fibroblasts to produce a flood of new, natural collagen and elastin. At Dr. Soheila’s clinic, we do not simply inject volume; we masterfully guide your tissues to regenerate themselves. Over the weeks following your session, your skin undergoes a profound structural remodeling, restoring its youthful thickness, architectural bounce, and natural contours from the inside out.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Sculptra</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nGradually stimulates your own collagen for long-lasting, natural facial volume.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Radiesse</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nProvides immediate lifting and stimulates long-term collagen and elastin production.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5CaW9zdGltdWxhdG9ycyBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4zMOKAkzQ1IE1pbnV0ZXMgKEluY2x1ZGVzIHByZWNpc2UgZGVybWFsIG1hcmtpbmcgYW5kIG1hcHBpbmcpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IE1lY2hhbmlzbTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk5lb2NvbGxhZ2VuZXNpcyBpbmR1Y3Rpb24gdmlhIHN0cnVjdHVyYWwgUExMQSBvciBDYUhBIG1pY3JvLXBhcnRpY2xlczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+R3JhZHVhbCBpbXByb3ZlbWVudHMgYmVnaW4gYXQgNCB3ZWVrczsgUGVhayBzdHJ1Y3R1cmFsIHJlZmluZW1lbnQgc3RhYmlsaXplcyBhdCAzIG1vbnRoczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+VXAgdG8gMjQgTW9udGhzIG9yIGxvbmdlciAoVmFyaWVzIGJhc2VkIG9uIGNlbGx1bGFyIHJlc3BvbnNlIGFuZCBpbml0aWFsIHNraW4gbGF4aXR5KTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+RG93bnRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5NaW5pbWFsIChNaWxkIHRlbXBvcmFyeSBzd2VsbGluZyBvciBzdWJ0bGUgdGVuZGVybmVzcyB0aGF0IHJlc29sdmVzIHdpdGhpbiA0OCBob3Vycyk8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGJvZHk+CiAgICA8L3RhYmxlPgo8L2Rpdj4=[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Biostimulators Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Endogenous Collagen Synthesis\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDirectly stimulates the body\'s natural cellular mechanisms to produce structural Type I and Type III collagen.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Gradual, Totally Discrete Volumization\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nVolume develops progressively over 4 to 8 weeks, ensuring an elegant, organic transformation without sudden structural changes.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Advanced Dermal Thickening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nRebuilds the depleted extracellular matrix, restoring thickness, elasticity, and bounce to thin, aging skin.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Long-Term Structural Lifting\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nTightens and firms areas prone to laxity, such as hollow cheeks, the jawline silhouette, and the lower face.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"How do biostimulators differ from traditional dermal fillers?\" open=\"no\"]\r\n\r\nDermal fillers are composed of Hyaluronic Acid gel that provides immediate, mechanical volume to fill a specific crease or line. Biostimulators do not rely on an artificial gel; instead, they deposit micro-particles that act as a biological trigger, forcing your own living cells to grow fresh collagen over time to naturally thicken and lift the skin.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"When will I see the actual results of my biostimulator treatment?\" open=\"no\"]\r\n\r\nBecause this therapy relies on your body’s natural cellular growth cycles, results are not instantaneous. You will notice a progressive improvement in skin firmness, health, and subtle volume starting around week 4, with the most profound, natural structural reveal peaking at 3 months.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How many treatment sessions are typically recommended?\" open=\"no\"]\r\n\r\nWhile individual skin laxity varies, most clients achieve an optimal, high-density collagen foundation through a tailored series of 2 to 3 sessions, spaced approximately 4 to 6 weeks apart.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","PDRN / Salmon DNA","","inherit","closed","closed","","1186-revision-v1","","","2026-06-07 12:23:28","2026-06-07 12:23:28","","1186","https://dr.frex.digital/?p=1187","0","revision","","0"),
("1188","1","2026-06-07 12:37:33","2026-06-07 12:37: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium PDRN &amp; Salmon DNA Therapy in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]<p>Repair compromised skin barriers, erase deep structural imperfections, and accelerate cellular healing with advanced polynucleotide bio-repair science.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"pdrn\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>PDRN / Salmon DNA</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"40px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]<p>Daily exposure to Dubai’s intense UV radiation, environmental oxidative stress, and the natural aging process directly damage our skin’s DNA, slowing down its biological repair cycle. Premium PDRN (Polydeoxyribonucleotide) and Salmon DNA therapies—featuring world-class formulations like Plinest and Rejuran—offer a groundbreaking medical solution. Extracted from salmon DNA, which shares a staggering compatibility with human dermal DNA, these highly purified polynucleotides are micro-injected straight into the damaged skin layers. Instead of creating a temporary camouflage like traditional gel fillers or blocking expressions like Botox, PDRN works as a powerful cellular messenger. It binds to cellular receptors to instantly block inflammation, accelerate cellular turnover, and force the skin to structurally rebuild itself. At Dr. Soheila’s clinic, this advanced regenerative therapy is masterfully customized to treat persistent acne scars, erase micro-wrinkles, and fundamentally restore thin, fragile, or sun-damaged skin to its healthiest biological state.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Rejuran</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Utilizes salmon DNA to repair skin barriers and heal damaged tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Plinest</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced polynucleotide treatment that significantly improves skin texture and elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>TWAC</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Synergistic cell booster that deeply regenerates and hydrates the skin layer.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5QRFJOIC8gU2FsbW9uIEROQSBRdWljayBGYWN0czwvdGg+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90aGVhZD4KICAgICAgICA8dGJvZHk+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UHJvY2VkdXJlIFRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj4yMOKAkzQwIE1pbnV0ZXMgKEZhc3QsIHByZWNpc2UgbWljcm8tZHJvcGxldCBkZXJtYWwgYWRtaW5pc3RyYXRpb24pPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IE1lY2hhbmlzbTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkNlbGx1bGFyIHJlY2VwdG9yIGFjdGl2YXRpb24gYW5kIEROQSBzeW50aGVzaXMgYWNjZWxlcmF0aW9uIHZpYSBTYWxtb24gUG9seW51Y2xlb3RpZGVzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5SZXN1bHRzIFZpc2libGU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5Jbml0aWFsIHRleHR1cmUgc21vb3RoaW5nIGluIDfigJMxMCBkYXlzOyBTdHJ1Y3R1cmFsIHNraW4gYmFycmllciBoZWFsaW5nIHBlYWtzIGF0IDQgd2Vla3M8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkxvbmdldml0eTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjYgdG8gMTIgTW9udGhzIChIaWdobHkgY3VtdWxhdGl2ZTsgZWZmZWN0cyBpbmNyZWFzZSB3aXRoIGVhY2ggc3Vic2VxdWVudCB0cmVhdG1lbnQpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pbmltYWwgKFNtYWxsIHRlbXBvcmFyeSBtaWNyby1wYXB1bGVzIGF0IHRoZSBpbmplY3Rpb24gc2l0ZXMgdGhhdCBuYXR1cmFsbHkgZGlzcGVyc2Ugd2l0aGluIDI0IGhvdXJzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our PDRN &amp; Salmon DNA Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"DNA-Level Tissue Repair\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Actively provides the vital structural building blocks required to heal and regenerate damaged dermal cells from within.</p>[/fusion_content_box][fusion_content_box title=\"Skin Barrier Fortification\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Deeply repairs and strengthens compromised, weak, or thinning skin barriers, dramatically upgrading defense against environmental dehydration.</p>[/fusion_content_box][fusion_content_box title=\"Advanced Scar &amp; Pore Refinement\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Highly effective in treating stubborn acne scars, correcting uneven skin texture, and reducing expanded, loose pores.</p>[/fusion_content_box][fusion_content_box title=\"Profound Anti-Inflammatory Action\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Rapidly down-regulates chronic skin inflammation, calming redness and reversing structural sun damage caused by extreme climates.</p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will PDRN / Salmon DNA injections add volume or alter my facial geometry?\" open=\"no\"]<p>Absolutely not. PDRN contains zero cross-linked hyaluronic acid gels, meaning it does not have mechanical filling properties. It is purely a bio-regenerative treatment designed to heal, thicken, and texturize the living skin layers, completely preserving your unique facial features while optimizing skin health.</p>[/fusion_toggle][fusion_toggle title=\"How many sessions are recommended to see real improvements in acne scars and skin quality?\" open=\"no\"]<p>Because cellular remodeling occurs in biological phases, an initial curative protocol of 3 to 4 sessions, spaced 3 to 4 weeks apart, is highly recommended. This builds a permanent structural repair foundation, which can be easily maintained with a single touch-up session every 6 months.</p>[/fusion_toggle][fusion_toggle title=\"Is Salmon DNA therapy safe for sensitive skin types?\" open=\"no\"]<p>Yes, it is incredibly safe. The polynucleotides used are highly purified, heat-sterilized biocompatible structures that pose virtually zero risk of allergic reactions. It is actually highly indicated for repairing severely sensitive, inflamed, or hyper-reactive skin barriers.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","PDRN / Salmon DNA","","inherit","closed","closed","","1186-revision-v1","","","2026-06-07 12:37:33","2026-06-07 12:37:33","","1186","https://dr.frex.digital/?p=1188","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1189","1","2026-06-07 12:43:44","2026-06-07 12:43: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" padding_bottom_small=\"90px\" padding_top_small=\"90px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG08.jpg\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"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)\" font_size=\"52px\"]Premium Microneedling in Dubai[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"48px\"]Premium Microneedling in Dubai[/fusion_title][fusion_text 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)\" font_size=\"22px\"]\r\n\r\nErase acne scars, shrink dilated pores, and accelerate cellular rebuilding through advanced medical needle channeling combined with elite Exosomes and Growth Factors.\r\n\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"18px\"]\r\n\r\nErase acne scars, shrink dilated pores, and accelerate cellular rebuilding through advanced medical needle channeling combined with elite Exosomes and Growth Factors.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"microneedling\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nMicroneedling\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"15px\" min_height=\"\" link=\"\"][fusion_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\nEnvironmental stressors, aging, and old inflammatory acne can leave permanent structural marks, large pores, and fibrous scars on the skin\'s surface. Advanced Microneedling offers a highly controlled, mechanical solution to completely overhaul skin texture. Utilizing medical-grade automated needles (Derma Pen), the treatment creates thousands of temporary, microscopic channels down into the dermis. This safely triggers the body\'s organic wound-healing cascade, forcing fibroblast cells to sweep away damaged tissue and synthesize fresh, beautifully organized collagen and elastin fibers. Instead of freezing features or artificially inflating volume, microneedling resets your skin from the surface down. At Dr. Soheila Eskandari’s clinic, we elevate this therapy by utilizing these micro-channels to deliver ultra-potent, cell-signaling Exosomes and cellular Growth Factors directly into the living skin layers, delivering an immaculate, smooth, and refined complexion without the heat or risk of aggressive lasers.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1397|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Derma_Pen_Skin_Rejuvenation_·_Scars_·_Acne_Scars_200x200_copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nAdvanced microneedling to smooth acne scars and renew skin texture.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/microneedling/derma-pen/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1396|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Exosome-Microneedling-Face-·-Hair-Loss-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRegenerative therapy using cellular signals to repair skin and hair.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/microneedling/exosome-microneedling/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1398|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Growth-Factor-Microneedling-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nAccelerates cellular renewal to dramatically improve skin firmness and glow.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/microneedling/growth-factor-microneedling/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzVjNWM1YzsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMyk7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDsKICAgICAgICBtYXJnaW46IDMwcHggMDsKICAgICAgICBmb250LWZhbWlseTogJ1NlZ29lIFVJJywgUm9ib3RvLCBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmOwogICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOwogICAgICAgIHRleHQtYWxpZ246IGxlZnQ7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMHB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMS41cHg7CiAgICAgICAgcGFkZGluZy1ib3R0b206IDIwcHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlZmU1ZGM7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ciB7CiAgICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjNzIGVhc2U7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA3KTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICBwYWRkaW5nOiAyMHB4IDE1cHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgICAgICBmb250LXNpemU6IDE1cHg7CiAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgdGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICB3aWR0aDogMjUlOwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDAuNXB4OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgY29sb3I6ICNmZmY7CiAgICAgICAgZm9udC13ZWlnaHQ6IDQwMDsKICAgIH0KICAgIAogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICAgICAgcGFkZGluZzogMTVweCAxMHB4OwogICAgICAgICAgICBmb250LXNpemU6IDE0cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgICAgICB3aWR0aDogNDAlOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPk1pY3JvbmVlZGxpbmcgUXVpY2sgRmFjdHM8L3RoPgogICAgICAgICAgICA8L3RyPgogICAgICAgIDwvdGhlYWQ+CiAgICAgICAgPHRib2R5PgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByb2NlZHVyZSBUaW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+MzDigJM2MCBNaW51dGVzIChJbmNsdWRlcyBwcmVjaXNlIHRvcGljYWwgbnVtYmluZyBhbmQgdW5pZm9ybSBzZXJ1bSBpbmZ1c2lvbik8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlByaW1hcnkgTWVjaGFuaXNtPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TWVjaGFuaWNhbCBDb2xsYWdlbiBJbmR1Y3Rpb24gVGhlcmFweSAoQ0lUKSBwYWlyZWQgd2l0aCBkZWVwIHRyYW5zZGVybWFsIGRlbGl2ZXJ5PC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5SZXN1bHRzIFZpc2libGU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5UZXh0dXJhbCBicmlnaHRuZXNzIGluIDcgZGF5czsgQWR2YW5jZWQgc2NhciByZW1vZGVsaW5nIGFuZCBwb3JlIHRpZ2h0ZW5pbmcgZGV2ZWxvcCBzbW9vdGhseSBvdmVyIDTigJM2IHdlZWtzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5DdW11bGF0aXZlIGFuZCBsb25nLWxhc3Rpbmc7IFN0cnVjdHVyYWwgc2NhciByZXZpc2lvbnMgYW5kIHRpc3N1ZSBzbW9vdGhpbmcgYXJlIHBlcm1hbmVudDwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+RG93bnRpbWU8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj5NaW5pbWFsIChNaWxkLCB3YXJtIGVyeXRoZW1hL3JlZG5lc3MgZm9yIDI04oCTNDggaG91cnMsIGVhc2lseSBtYW5hZ2VkIHdpdGggcHJlbWl1bSBwb3N0LWNhcmUpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3Rib2R5PgogICAgPC90YWJsZT4KPC9kaXY+[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\" padding_top_small=\"30px\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"Key Benefits of Our Microneedling Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color7)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Advanced Acne Scar Revision\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nMechanically breaks down stubborn, fibrous acne scars and uneven pitted textures, replacing them with a smooth epidermal layer.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Dermal Pore Refinement\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nStimulates structural collagen synthesis directly around expanded micro-channels, causing dilated and lax pores to noticeably contract and tighten.\r\n\r\n[/fusion_content_box][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\" title=\"Massive Transdermal Meso-Absorption\"]\r\n\r\nOpens micro-conduits that increase the uptake and penetration of topically applied premium Exosomes and Growth Factors by up to 80%.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Tone &amp; Pigmentation Correction\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nRapidly accelerates cellular turnover to shed damaged, hyperpigmented cells, fading sunspots and evening out the global skin tone.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color7)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"What is the benefit of adding Exosomes or Growth Factors to my microneedling treatment?\" open=\"no\"]\r\n\r\nStandard microneedling relies entirely on the body\'s mechanical healing ability. By infusing premium Exosomes or Growth Factors through the open micro-channels, we send direct biochemical signals to your cells. This dramatically accelerates tissue repair, shortens redness downtime, and multiplies the overall collagen output for superior scar and pore revision.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Does microneedling hurt or cause severe bleeding?\" open=\"no\"]\r\n\r\nYour absolute comfort is our luxury clinical standard. We apply a medical-grade topical numbing cream before the treatment, making the micro-needling process feel like a mild, vibrating pressure. There is only a minimal, safe pinpoint bleeding during the procedure, which stops completely by the end of the session.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How many microneedling sessions do I need to clear deep acne scars?\" open=\"no\"]\r\n\r\nWhile a single session noticeably upgrades skin texture and brightness, remodeling deep structural scars (like rolling or boxcar scars) requires a biological phase of tissue building. An initial curative series of 3 to 6 sessions, spaced 4 to 6 weeks apart, is highly recommended to achieve maximum, permanent structural smoothing.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Microneedling","","publish","closed","closed","","microneedling","","","2026-06-23 22:15:51","2026-06-23 22:15:51","","922","https://dr.frex.digital/?page_id=1189","0","page","","0"),
("1190","1","2026-06-07 12:43:44","2026-06-07 12:43: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Skin Booster Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]\r\n\r\nHydro-infuse your skin from within. Eliminate fine crepey lines, restore elite hydration, and unveil a flawless, luminous glow with bespoke bio-remodeling therapies.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nSkin Boosters\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\r\n\r\nHigh-end skincare products often fail to penetrate beyond the skin\'s tough outer barrier, leaving deeper layers starved of essential moisture—a challenge significantly amplified by Dubai’s intense climate and daily sun exposure. Premium Skin Boosters provide the ultimate medical antidote by micro-injecting pure, non-crosslinked Hyaluronic Acid, essential amino acids, and vital nutrients directly into the living dermis. Instead of mechanically filling a wrinkle like a dermal filler or freezing a gesture like Botox, skin boosters act as an intensive internal moisturizer and bio-remodeler. At Dr. Soheila’s clinic, advanced treatments such as Profhilo and Jalupro are meticulously administered to trigger rapid cellular remodeling, instantly upgrading skin texture, smoothing superficial crepey lines, and unleashing a brilliant, lit-from-within glow that topical creams simply cannot match.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nDeeply hydrates and bio-remodels the skin to improve overall elasticity.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nStimulates collagen production to effectively reduce fine lines and wrinkles.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRestores the extracellular matrix to deeply rejuvenate aging skin tissue.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nA premium poly-revitalizing cocktail that boosts skin radiance and hydration.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5Ta2luIEJvb3N0ZXJzIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjE14oCTMzAgTWludXRlcyAoRmFzdCwgcHJlY2lzZSwgYW5kIGNvbWZvcnRhYmxlIG1pY3JvLWRyb3BsZXQgc2Vzc2lvbnMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IENvbXBvc2l0aW9uPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SGlnaC1wdXJpdHkgTm9uLUNyb3NzbGlua2VkIEh5YWx1cm9uaWMgQWNpZCBjb21iaW5lZCB3aXRoIEFtaW5vIEFjaWRzICYgUGVwdGlkZXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkluaXRpYWwgaW50ZXJuYWwgcGx1bXBpbmcgaW4gM+KAkzUgZGF5czsgUGVhayBza2luIHJhZGlhbmNlIGFuZCBzbW9vdGhuZXNzIGF0IDLigJM0IHdlZWtzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj40IHRvIDYgTW9udGhzIChFeHRyZW1lbHkgc2NhbGFibGUgYW5kIGVuaGFuY2VkIHRocm91Z2ggcmVjb21tZW5kZWQgbWFpbnRlbmFuY2UpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pbmltYWwgKFRpbnksIHRlbXBvcmFyeSBtaWNyby1idW1wcyBhdCBpbmplY3Rpb24gcG9pbnRzIHRoYXQgbmF0dXJhbGx5IGRpc3BlcnNlIHdpdGhpbiAxMuKAkzI0IGhvdXJzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Skin Boosters Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Intense Hydro-Dermal Infusion\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nSaturates the deeper dermis with high-concentration moisture-binding molecules, eradicating chronic seasonal dryness and internal dullness.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Superficial Line Smoothing\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nEffortlessly softens fine, crepey skin textures, micro-wrinkles, and skin laxity across the face, neck, décolletage, and hands.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Brilliant \"Lit-From-Within\" Glow\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nIgnites a visible, long-lasting cellular radiance, delivering the highly coveted healthy, plump, and luminous \"glass skin\" appearance.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Natural Bio-Remodeling\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDirectly stimulates fibroblasts to naturally upgrade your skin\'s own elasticity and tone without altering your facial geometry or expressions.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Zero Social Interruption\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nAn ultra-efficient, highly comfortable treatment with negligible downtime, perfectly matching the schedule of Dubai\'s premium high-end routine.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will skin boosters change my facial features or make me look puffy?\" open=\"no\"]\r\n\r\nAbsolutely not. Unlike traditional dermal fillers, skin boosters utilize completely fluid, un-linked Hyaluronic Acid that disperses evenly throughout the skin layers. They are scientifically engineered to strictly improve skin quality, thickness, and hydration without adding artificial structure or changing your unique facial features.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How many skin booster sessions are recommended to see optimal results?\" open=\"no\"]\r\n\r\nWhile a single session noticeably boosts internal hydration, achieving an optimal luxury result typically requires an initial protocol of 2 to 3 sessions, spaced 4 weeks apart. This establishes a deep moisture reservoir that can be effortlessly maintained with a single touch-up every 6 months.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"What is the exact difference between a skin booster injection and a high-end topical serum?\" open=\"no\"]\r\n\r\nTopical serums contain large molecular structures that cannot bypass the skin\'s protective epidermal barrier, providing only brief surface-level hydration. Skin boosters are injected directly beneath this barrier, delivering high-concentration nutrients straight to the living dermal cells for authentic, deep rejuvenation.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Microneedling","","inherit","closed","closed","","1189-revision-v1","","","2026-06-07 12:43:44","2026-06-07 12:43:44","","1189","https://dr.frex.digital/?p=1190","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1191","1","2026-06-07 13:02:20","2026-06-07 13:02: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Microneedling in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]<p>Erase acne scars, shrink dilated pores, and accelerate cellular rebuilding through advanced medical needle channeling combined with elite Exosomes and Growth Factors.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"microneedling\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Microneedling</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]<p>Environmental stressors, aging, and old inflammatory acne can leave permanent structural marks, large pores, and fibrous scars on the skin\'s surface. Advanced Microneedling offers a highly controlled, mechanical solution to completely overhaul skin texture. Utilizing medical-grade automated needles (Derma Pen), the treatment creates thousands of temporary, microscopic channels down into the dermis. This safely triggers the body\'s organic wound-healing cascade, forcing fibroblast cells to sweep away damaged tissue and synthesize fresh, beautifully organized collagen and elastin fibers. Instead of freezing features or artificially inflating volume, microneedling resets your skin from the surface down. At Dr. Soheila’s clinic, we elevate this therapy by utilizing these micro-channels to deliver ultra-potent, cell-signaling Exosomes and cellular Growth Factors directly into the living skin layers, delivering an immaculate, smooth, and refined complexion without the heat or risk of aggressive lasers.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Derma Pen (Skin Rejuvenation · Scars · Acne Scars)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Advanced microneedling to smooth acne scars and renew skin texture.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Exosome Microneedling (Face · Hair Loss)</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Regenerative therapy using cellular signals to repair skin and hair.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Growth Factor Microneedling</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Accelerates cellular renewal to dramatically improve skin firmness and glow.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5NaWNyb25lZWRsaW5nIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjMw4oCTNjAgTWludXRlcyAoSW5jbHVkZXMgcHJlY2lzZSB0b3BpY2FsIG51bWJpbmcgYW5kIHVuaWZvcm0gc2VydW0gaW5mdXNpb24pPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IE1lY2hhbmlzbTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1lY2hhbmljYWwgQ29sbGFnZW4gSW5kdWN0aW9uIFRoZXJhcHkgKENJVCkgcGFpcmVkIHdpdGggZGVlcCB0cmFuc2Rlcm1hbCBkZWxpdmVyeTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+VGV4dHVyYWwgYnJpZ2h0bmVzcyBpbiA3IGRheXM7IEFkdmFuY2VkIHNjYXIgcmVtb2RlbGluZyBhbmQgcG9yZSB0aWdodGVuaW5nIGRldmVsb3Agc21vb3RobHkgb3ZlciA04oCTNiB3ZWVrczwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+TG9uZ2V2aXR5PC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+Q3VtdWxhdGl2ZSBhbmQgbG9uZy1sYXN0aW5nOyBTdHJ1Y3R1cmFsIHNjYXIgcmV2aXNpb25zIGFuZCB0aXNzdWUgc21vb3RoaW5nIGFyZSBwZXJtYW5lbnQ8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkRvd250aW1lPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+TWluaW1hbCAoTWlsZCwgd2FybSBlcnl0aGVtYS9yZWRuZXNzIGZvciAyNOKAkzQ4IGhvdXJzLCBlYXNpbHkgbWFuYWdlZCB3aXRoIHByZW1pdW0gcG9zdC1jYXJlKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Microneedling Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Advanced Acne Scar Revision\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Mechanically breaks down stubborn, fibrous acne scars and uneven pitted textures, replacing them with a smooth epidermal layer.</p>[/fusion_content_box][fusion_content_box title=\"Dermal Pore Refinement\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Stimulates structural collagen synthesis directly around expanded micro-channels, causing dilated and lax pores to noticeably contract and tighten.</p>[/fusion_content_box][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\" title=\"Massive Transdermal Meso-Absorption\"]<p>Opens micro-conduits that increase the uptake and penetration of topically applied premium Exosomes and Growth Factors by up to 80%.</p>[/fusion_content_box][fusion_content_box title=\"Tone &amp; Pigmentation Correction\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]<p>Rapidly accelerates cellular turnover to shed damaged, hyperpigmented cells, fading sunspots and evening out the global skin tone.</p>[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"What is the benefit of adding Exosomes or Growth Factors to my microneedling treatment?\" open=\"no\"]<p>Standard microneedling relies entirely on the body\'s mechanical healing ability. By infusing premium Exosomes or Growth Factors through the open micro-channels, we send direct biochemical signals to your cells. This dramatically accelerates tissue repair, shortens redness downtime, and multiplies the overall collagen output for superior scar and pore revision.</p>[/fusion_toggle][fusion_toggle title=\"Does microneedling hurt or cause severe bleeding?\" open=\"no\"]<p>Your absolute comfort is our luxury clinical standard. We apply a medical-grade topical numbing cream before the treatment, making the micro-needling process feel like a mild, vibrating pressure. There is only a minimal, safe pinpoint bleeding during the procedure, which stops completely by the end of the session.</p>[/fusion_toggle][fusion_toggle title=\"How many microneedling sessions do I need to clear deep acne scars?\" open=\"no\"]<p>While a single session noticeably upgrades skin texture and brightness, remodeling deep structural scars (like rolling or boxcar scars) requires a biological phase of tissue building. An initial curative series of 3 to 6 sessions, spaced 4 to 6 weeks apart, is highly recommended to achieve maximum, permanent structural smoothing.</p>[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Microneedling","","inherit","closed","closed","","1189-revision-v1","","","2026-06-07 13:02:20","2026-06-07 13:02:20","","1189","https://dr.frex.digital/?p=1191","0","revision","","0"),
("1192","1","2026-06-07 13:04:43","2026-06-07 13:04: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\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Skin Booster Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]\r\n<p>Hydro-infuse your skin from within. Eliminate fine crepey lines, restore elite hydration, and unveil a flawless, luminous glow with bespoke bio-remodeling therapies.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n<p>Skin Boosters</p>\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\r\n<p>High-end skincare products often fail to penetrate beyond the skin\'s tough outer barrier, leaving deeper layers starved of essential moisture—a challenge significantly amplified by Dubai’s intense climate and daily sun exposure. Premium Skin Boosters provide the ultimate medical antidote by micro-injecting pure, non-crosslinked Hyaluronic Acid, essential amino acids, and vital nutrients directly into the living dermis. Instead of mechanically filling a wrinkle like a dermal filler or freezing a gesture like Botox, skin boosters act as an intensive internal moisturizer and bio-remodeler. At Dr. Soheila’s clinic, advanced treatments such as Profhilo and Jalupro are meticulously administered to trigger rapid cellular remodeling, instantly upgrading skin texture, smoothing superficial crepey lines, and unleashing a brilliant, lit-from-within glow that topical creams simply cannot match.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Deeply hydrates and bio-remodels the skin to improve overall elasticity.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Stimulates collagen production to effectively reduce fine lines and wrinkles.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>Restores the extracellular matrix to deeply rejuvenate aging skin tissue.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" type=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n<p><strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n<p>A premium poly-revitalizing cocktail that boosts skin radiance and hydration.</p>\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5Ta2luIEJvb3N0ZXJzIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjE14oCTMzAgTWludXRlcyAoRmFzdCwgcHJlY2lzZSwgYW5kIGNvbWZvcnRhYmxlIG1pY3JvLWRyb3BsZXQgc2Vzc2lvbnMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IENvbXBvc2l0aW9uPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SGlnaC1wdXJpdHkgTm9uLUNyb3NzbGlua2VkIEh5YWx1cm9uaWMgQWNpZCBjb21iaW5lZCB3aXRoIEFtaW5vIEFjaWRzICYgUGVwdGlkZXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkluaXRpYWwgaW50ZXJuYWwgcGx1bXBpbmcgaW4gM+KAkzUgZGF5czsgUGVhayBza2luIHJhZGlhbmNlIGFuZCBzbW9vdGhuZXNzIGF0IDLigJM0IHdlZWtzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj40IHRvIDYgTW9udGhzIChFeHRyZW1lbHkgc2NhbGFibGUgYW5kIGVuaGFuY2VkIHRocm91Z2ggcmVjb21tZW5kZWQgbWFpbnRlbmFuY2UpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pbmltYWwgKFRpbnksIHRlbXBvcmFyeSBtaWNyby1idW1wcyBhdCBpbmplY3Rpb24gcG9pbnRzIHRoYXQgbmF0dXJhbGx5IGRpc3BlcnNlIHdpdGhpbiAxMuKAkzI0IGhvdXJzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Skin Boosters Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Intense Hydro-Dermal Infusion\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Saturates the deeper dermis with high-concentration moisture-binding molecules, eradicating chronic seasonal dryness and internal dullness.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Superficial Line Smoothing\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Effortlessly softens fine, crepey skin textures, micro-wrinkles, and skin laxity across the face, neck, décolletage, and hands.</p>\r\n[/fusion_content_box][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\" title=\"Brilliant \"Lit-From-Within\" Glow\"]\r\n<p>Ignites a visible, long-lasting cellular radiance, delivering the highly coveted healthy, plump, and luminous \"glass skin\" appearance.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Natural Bio-Remodeling\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>Directly stimulates fibroblasts to naturally upgrade your skin\'s own elasticity and tone without altering your facial geometry or expressions.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Zero Social Interruption\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n<p>An ultra-efficient, highly comfortable treatment with negligible downtime, perfectly matching the schedule of Dubai\'s premium high-end routine.</p>\r\n[/fusion_content_box][/fusion_content_boxes][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n<p>FAQ</p>\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will skin boosters change my facial features or make me look puffy?\" open=\"no\"]\r\n<p>Absolutely not. Unlike traditional dermal fillers, skin boosters utilize completely fluid, un-linked Hyaluronic Acid that disperses evenly throughout the skin layers. They are scientifically engineered to strictly improve skin quality, thickness, and hydration without adding artificial structure or changing your unique facial features.</p>\r\n[/fusion_toggle][fusion_toggle title=\"How many skin booster sessions are recommended to see optimal results?\" open=\"no\"]\r\n<p>While a single session noticeably boosts internal hydration, achieving an optimal luxury result typically requires an initial protocol of 2 to 3 sessions, spaced 4 weeks apart. This establishes a deep moisture reservoir that can be effortlessly maintained with a single touch-up every 6 months.</p>\r\n[/fusion_toggle][fusion_toggle title=\"What is the exact difference between a skin booster injection and a high-end topical serum?\" open=\"no\"]\r\n<p>Topical serums contain large molecular structures that cannot bypass the skin\'s protective epidermal barrier, providing only brief surface-level hydration. Skin boosters are injected directly beneath this barrier, delivering high-concentration nutrients straight to the living dermal cells for authentic, deep rejuvenation.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","Skin Boosters","","inherit","closed","closed","","1180-revision-v1","","","2026-06-07 13:04:43","2026-06-07 13:04:43","","1180","https://dr.frex.digital/?p=1192","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1193","1","2026-06-07 13:07:16","2026-06-07 13:07:16","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG10.jpg\" padding_top=\"120px\" padding_bottom=\"120px\" padding_top_small=\"90px\" padding_bottom_small=\"90px\" background_image_small=\"https://dr.frex.digital/wp-content/uploads/2026/06/BG08.jpg\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"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)\" font_size=\"52px\"]Premium PRP Therapy in Dubai[/fusion_title][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"48px\"]Premium PRP Therapy in Dubai[/fusion_title][fusion_text 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)\" font_size=\"22px\"]\r\n\r\nHarness the regenerative power of your own growth factors to reverse hair thinning, erase under-eye fatigue, and organically deeply rebuild your skin’s vitality.\r\n\r\n[/fusion_text][fusion_text animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"18px\"]\r\n\r\nHarness the regenerative power of your own growth factors to reverse hair thinning, erase under-eye fatigue, and organically deeply rebuild your skin’s vitality.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"prp\" padding_top_small=\"40px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nPRP\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" first=\"true\" margin_bottom_small=\"15px\" min_height=\"\" link=\"\"][fusion_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\nWhile synthetic formulations have their place in aesthetic design, the ultimate key to tissue repair lies naturally within your own biology. Premium Platelet-Rich Plasma (PRP) therapy is a highly sophisticated, autologous treatment that utilizes the concentrated growth factors found inside your own blood. By drawing a small sample and spinning it in an advanced medical centrifuge, we separate and isolate a golden plasma super-charged with platelets, cytokines, and cellular repair signals. When masterfully re-introduced into depleted areas, PRP acts as an organic catalyst for deep tissue restoration. At Dr. Soheila Eskandari’s clinic, we customize PRP therapy to specifically target two of Dubai\'s most demanding concerns: activating weak or dormant hair follicles to combat thinning, and repairing the delicate vascular networks under the eyes to erase chronic structural dark circles—delivering a flawless, completely organic rejuvenation with zero risk of foreign body reactions.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1400|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Hair-Loss-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Hair Loss</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nTargeted treatments designed to stimulate follicles and restore hair density.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/prp/hair-loss/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_style=\"off\" caption_align_medium=\"none\" caption_align_small=\"none\" caption_align=\"none\" caption_title_tag=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1399|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/Face-Rejuvenation-200x200-copy.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Face Rejuvenation</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nComprehensive therapies to restore a radiant, healthy, and youthful complexion.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/prp/face-rejuvenation/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"70px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Acne Scar Treatment</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nTargeted clinical therapies that dramatically smooth and repair deep acne scars.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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://dr.frex.digital/treatments/prp/acne-scar-treatment/\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\" accent_color=\"var(--awb-color7)\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_bottom_small=\"30px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzVjNWM1YzsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDIyNCwgMjExLCAxOTIsIDAuMyk7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDsKICAgICAgICBtYXJnaW46IDMwcHggMDsKICAgICAgICBmb250LWZhbWlseTogJ1NlZ29lIFVJJywgUm9ib3RvLCBIZWx2ZXRpY2EsIEFyaWFsLCBzYW5zLXNlcmlmOwogICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHsKICAgICAgICB3aWR0aDogMTAwJTsKICAgICAgICBib3JkZXItY29sbGFwc2U6IGNvbGxhcHNlOwogICAgICAgIHRleHQtYWxpZ246IGxlZnQ7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgZm9udC1zaXplOiAyMHB4OwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgdGV4dC10cmFuc2Zvcm06IHVwcGVyY2FzZTsKICAgICAgICBsZXR0ZXItc3BhY2luZzogMS41cHg7CiAgICAgICAgcGFkZGluZy1ib3R0b206IDIwcHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlZmU1ZGM7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ciB7CiAgICAgICAgdHJhbnNpdGlvbjogYmFja2dyb3VuZC1jb2xvciAwLjNzIGVhc2U7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpob3ZlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMjQsIDIxMSwgMTkyLCAwLjA3KTsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICBwYWRkaW5nOiAyMHB4IDE1cHg7CiAgICAgICAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkIHJnYmEoMjI0LCAyMTEsIDE5MiwgMC4zKTsKICAgICAgICBmb250LXNpemU6IDE1cHg7CiAgICAgICAgbGluZS1oZWlnaHQ6IDEuNjsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRyOmxhc3QtY2hpbGQgdGQgewogICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICB3aWR0aDogMjUlOwogICAgICAgIGZvbnQtd2VpZ2h0OiA2MDA7CiAgICAgICAgY29sb3I6ICNlZmU1ZGM7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDAuNXB4OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS12YWx1ZSB7CiAgICAgICAgY29sb3I6ICNmZmY7CiAgICAgICAgZm9udC13ZWlnaHQ6IDQwMDsKICAgIH0KICAgIAogICAgQG1lZGlhIChtYXgtd2lkdGg6IDc2OHB4KSB7CiAgICAgICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgICAgIHBhZGRpbmc6IDIwcHg7CiAgICAgICAgICAgIG1hcmdpbjogMTVweCAwOwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0aCB7CiAgICAgICAgICAgIGZvbnQtc2l6ZTogMThweDsKICAgICAgICAgICAgcGFkZGluZy1ib3R0b206IDE1cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkIHsKICAgICAgICAgICAgcGFkZGluZzogMTVweCAxMHB4OwogICAgICAgICAgICBmb250LXNpemU6IDE0cHg7CiAgICAgICAgfQogICAgICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdGl0bGUgewogICAgICAgICAgICB3aWR0aDogNDAlOwogICAgICAgIH0KICAgIH0KPC9zdHlsZT4KCjxkaXYgY2xhc3M9InByZW1pdW0tdGFibGUtd3JhcHBlciI+CiAgICA8dGFibGUgY2xhc3M9InByZW1pdW0tZmFjdHMtdGFibGUiPgogICAgICAgIDx0aGVhZD4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49IjIiPlBSUCBUaGVyYXB5IFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjQ14oCTNjAgTWludXRlcyAoSW5jbHVkZXMgaGlnaC1wcmVjaXNpb24gYmxvb2QgZHJhdywgY2VudHJpZnVnYXRpb24sIGFuZCBtaWNyby10YXJnZXRpbmcpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IFNvdXJjZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjEwMCUgQXV0b2xvZ291cyAoSGFydmVzdGVkIGRpcmVjdGx5IGZyb20gdGhlIGNsaWVudCdzIG93biBjb25jZW50cmF0ZWQgYmxvb2QgcGxhc21hKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS10aXRsZSI+UmVzdWx0cyBWaXNpYmxlPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+U2tpbiBsdW1pbm9zaXR5IGltcHJvdmVzIGluIDIgd2Vla3M7IEhhaXIgZGVuc2l0eSB1cGdyYWRlcyBhbmQgc3RydWN0dXJhbCB1bmRlci1leWUgaGVhbGluZyBtYXR1cmUgb3ZlciAy4oCTMyBtb250aHM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPkxvbmdldml0eTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkxvbmctbGFzdGluZyBjZWxsdWxhciByZXN1bHRzOyBIaWdobHkgb3B0aW1pemVkIHdoZW4gbWFpbnRhaW5lZCB3aXRoIHNlYXNvbmFsIHRvdWNoLXVwIHNlc3Npb25zPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pbmltYWwgKFN1YnRsZSB0ZW1wb3Jhcnkgc3dlbGxpbmcgb3IgbGlnaHQgbG9jYWxpemVkIHRlbmRlcm5lc3MgdGhhdCBuYXR1cmFsbHkgcmVzb2x2ZXMgd2l0aGluIDI0IGhvdXJzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"0px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\" margin_top_small=\"0\"]\"Key Benefits of Our PRP Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color7)\" backgroundcolor=\"rgba(224,211,192,0.18)\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color6)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color6)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Natural Hair Follicle Restoration\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDelivers a massive concentration of autologous growth factors directly to the scalp, significantly reversing hair thinning and stimulating dormant follicles into an active growth phase.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Vascular Under-Eye Brightening\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nEffectively repairs thin dermal layers and improves local micro-circulation under the eyes, dramatically reducing dark structural shadows and tired vascular pooling.\r\n\r\n[/fusion_content_box][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\" title=\"100% Biocompatible &amp; Autologous\"]\r\n\r\nBecause the serum is derived entirely from your own blood, the procedure guarantees absolute biological safety with zero risk of allergic rejection or foreign-product complications.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Accelerated Organic Tissue Repair\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nTriggers your body’s natural wound-healing cascade, sweeping away damaged cells and rapidly upgrading surface skin texture and tone.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Flawless Synergistic Integration\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nPerfectly complements mechanical clinical treatments like microneedling, working as a high-octane biological booster to dramatically shorten recovery times.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\" padding_top_small=\"40px\" padding_bottom_small=\"40px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-color7)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color6)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-color7)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"var(--awb-color4)\"][fusion_toggle title=\"Can PRP therapy be used for both hair loss and face rejuvenation?\" open=\"no\"]\r\n\r\nYes, absolutely. Because PRP relies on universal cellular growth signals, it is incredibly versatile. When delivered to the scalp, it directly revitalizes weak hair roots to fight thinning. When delivered to the face—especially the under-eye zone—it thickens fragile skin, strengthens blood vessels, and smooths out fine micro-textures.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"Is there any risk of an allergic reaction or infection with PRP?\" open=\"no\"]\r\n\r\nThere is virtually zero risk of an allergic reaction or rejection. Because the platelet gel is created entirely from your own autologous blood, your body perfectly recognizes the formula as its own biological tissue. We strictly maintain absolute sterile, premium clinical protocols during extraction and injection.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How many PRP sessions are typically required to see stable results for hair and skin?\" open=\"no\"]\r\n\r\nBecause cellular tissue and hair growth cycles operate in biological waves, an initial intensive protocol of 3 to 4 sessions, spaced 4 weeks apart, is standard to build a solid regenerative foundation. After this, maintaining your results requires only a single touch-up session every 6 months.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","PRP","","publish","closed","closed","","prp","","","2026-06-23 22:15:49","2026-06-23 22:15:49","","922","https://dr.frex.digital/?page_id=1193","0","page","","0"),
("1194","1","2026-06-07 13:07:16","2026-06-07 13:07:16","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium Skin Booster Treatments in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]\r\n\r\nHydro-infuse your skin from within. Eliminate fine crepey lines, restore elite hydration, and unveil a flawless, luminous glow with bespoke bio-remodeling therapies.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"skin-boosters\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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=\"single solid\" 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=\"40px\" sep_color=\"var(--awb-color5)\"]\r\n\r\nSkin Boosters\r\n\r\n[/fusion_title][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"stretch\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" class=\"swipe-container\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"30px\" last=\"true\" border_position=\"all\" 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\"]\r\n\r\nHigh-end skincare products often fail to penetrate beyond the skin\'s tough outer barrier, leaving deeper layers starved of essential moisture—a challenge significantly amplified by Dubai’s intense climate and daily sun exposure. Premium Skin Boosters provide the ultimate medical antidote by micro-injecting pure, non-crosslinked Hyaluronic Acid, essential amino acids, and vital nutrients directly into the living dermis. Instead of mechanically filling a wrinkle like a dermal filler or freezing a gesture like Botox, skin boosters act as an intensive internal moisturizer and bio-remodeler. At Dr. Soheila’s clinic, advanced treatments such as Profhilo and Jalupro are meticulously administered to trigger rapid cellular remodeling, instantly upgrading skin texture, smoothing superficial crepey lines, and unleashing a brilliant, lit-from-within glow that topical creams simply cannot match.\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=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" 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=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Profhilo</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nDeeply hydrates and bio-remodels the skin to improve overall elasticity.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Jalupro</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nStimulates collagen production to effectively reduce fine lines and wrinkles.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>Sunekos</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nRestores the extracellular matrix to deeply rejuvenate aging skin tissue.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"1_4\" layout=\"1_4\" align_self=\"auto\" content_layout=\"column\" align_content=\"space-between\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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_top=\"2px\" border_sizes_right=\"2px\" border_sizes_bottom=\"2px\" border_sizes_left=\"2px\" border_color=\"var(--awb-color3)\" border_radius_top_left=\"12px\" border_radius_top_right=\"12px\" border_radius_bottom_right=\"12px\" border_radius_bottom_left=\"12px\" padding_top=\"30px\" padding_right=\"30px\" padding_bottom=\"30px\" padding_left=\"30px\" margin_bottom=\"40px\" background_color=\"var(--awb-color1)\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"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=\"1116|full\" max_width=\"50px\"]https://dr.frex.digital/wp-content/uploads/2026/06/forehead_1862845.png[/fusion_imageframe][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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=\"16px\" margin_top=\"20px\" margin_bottom=\"10px\"]\r\n\r\n<strong>NCTF</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\" content_alignment=\"center\" font_size=\"13px\"]\r\n\r\nA premium poly-revitalizing cocktail that boosts skin radiance and hydration.\r\n\r\n[/fusion_text][fusion_button enable_hover_text_icon=\"no\" target=\"_self\" aria_role_button=\"0\" color=\"custom\" 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=\"#\" alignment=\"center\" button_gradient_top_color=\"rgba(255,255,255,0)\" button_gradient_bottom_color=\"rgba(255,255,255,0)\" button_gradient_top_color_hover=\"rgba(255,255,255,0)\" button_gradient_bottom_color_hover=\"rgba(255,255,255,0)\" accent_hover_color=\"var(--awb-custom_color_1)\" border_hover_color=\"var(--awb-custom_color_1)\" border_color=\"var(--awb-color5)\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" padding_top=\"0\" padding_right=\"2px\" padding_left=\"2px\" padding_bottom=\"5px\" border_bottom=\"1px\"]Learn More[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_code]PHN0eWxlPgogICAgLnByZW1pdW0tdGFibGUtd3JhcHBlciB7CiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzJiMmIyYjsKICAgICAgICBwYWRkaW5nOiAzNXB4OwogICAgICAgIGJvcmRlci1yYWRpdXM6IDE2cHg7CiAgICAgICAgYm94LXNoYWRvdzogMCAxNXB4IDM1cHggcmdiYSgwLCAwLCAwLCAwLjQpLCAwIDAgNTBweCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMDMpOwogICAgICAgIHdpZHRoOiAxMDAlOwogICAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7CiAgICAgICAgbWFyZ2luOiAzMHB4IDA7CiAgICAgICAgZm9udC1mYW1pbHk6ICdTZWdvZSBVSScsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjsKICAgICAgICBib3JkZXI6IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB7CiAgICAgICAgd2lkdGg6IDEwMCU7CiAgICAgICAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTsKICAgICAgICB0ZXh0LWFsaWduOiBsZWZ0OwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGZvbnQtc2l6ZTogMjBweDsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIHRleHQtdHJhbnNmb3JtOiB1cHBlcmNhc2U7CiAgICAgICAgbGV0dGVyLXNwYWNpbmc6IDEuNXB4OwogICAgICAgIHBhZGRpbmctYm90dG9tOiAyMHB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAjZmZlN2ExOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHIgewogICAgICAgIHRyYW5zaXRpb246IGJhY2tncm91bmQtY29sb3IgMC4zcyBlYXNlOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdHI6aG92ZXIgewogICAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyMzEsIDE2MSwgMC4wMik7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgcGFkZGluZzogMjBweCAxNXB4OwogICAgICAgIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2JhKDI1NSwgMjMxLCAxNjEsIDAuMSk7CiAgICAgICAgZm9udC1zaXplOiAxNXB4OwogICAgICAgIGxpbmUtaGVpZ2h0OiAxLjY7CiAgICB9CiAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0cjpsYXN0LWNoaWxkIHRkIHsKICAgICAgICBib3JkZXItYm90dG9tOiBub25lOwogICAgfQogICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGQuZmVhdHVyZS10aXRsZSB7CiAgICAgICAgd2lkdGg6IDI1JTsKICAgICAgICBmb250LXdlaWdodDogNjAwOwogICAgICAgIGNvbG9yOiAjZmZlN2ExOwogICAgICAgIGxldHRlci1zcGFjaW5nOiAwLjVweDsKICAgIH0KICAgIC5wcmVtaXVtLWZhY3RzLXRhYmxlIHRkLmZlYXR1cmUtdmFsdWUgewogICAgICAgIGNvbG9yOiAjZmZmZmZmOwogICAgICAgIGZvbnQtd2VpZ2h0OiA0MDA7CiAgICB9CiAgICAKICAgIEBtZWRpYSAobWF4LXdpZHRoOiA3NjhweCkgewogICAgICAgIC5wcmVtaXVtLXRhYmxlLXdyYXBwZXIgewogICAgICAgICAgICBwYWRkaW5nOiAyMHB4OwogICAgICAgICAgICBtYXJnaW46IDE1cHggMDsKICAgICAgICB9CiAgICAgICAgLnByZW1pdW0tZmFjdHMtdGFibGUgdGggewogICAgICAgICAgICBmb250LXNpemU6IDE4cHg7CiAgICAgICAgICAgIHBhZGRpbmctYm90dG9tOiAxNXB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZCB7CiAgICAgICAgICAgIHBhZGRpbmc6IDE1cHggMTBweDsKICAgICAgICAgICAgZm9udC1zaXplOiAxNHB4OwogICAgICAgIH0KICAgICAgICAucHJlbWl1bS1mYWN0cy10YWJsZSB0ZC5mZWF0dXJlLXRpdGxlIHsKICAgICAgICAgICAgd2lkdGg6IDQwJTsKICAgICAgICB9CiAgICB9Cjwvc3R5bGU+Cgo8ZGl2IGNsYXNzPSJwcmVtaXVtLXRhYmxlLXdyYXBwZXIiPgogICAgPHRhYmxlIGNsYXNzPSJwcmVtaXVtLWZhY3RzLXRhYmxlIj4KICAgICAgICA8dGhlYWQ+CiAgICAgICAgICAgIDx0cj4KICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPSIyIj5Ta2luIEJvb3N0ZXJzIFF1aWNrIEZhY3RzPC90aD4KICAgICAgICAgICAgPC90cj4KICAgICAgICA8L3RoZWFkPgogICAgICAgIDx0Ym9keT4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Qcm9jZWR1cmUgVGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPjE14oCTMzAgTWludXRlcyAoRmFzdCwgcHJlY2lzZSwgYW5kIGNvbWZvcnRhYmxlIG1pY3JvLWRyb3BsZXQgc2Vzc2lvbnMpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5QcmltYXJ5IENvbXBvc2l0aW9uPC90ZD4KICAgICAgICAgICAgICAgIDx0ZCBjbGFzcz0iZmVhdHVyZS12YWx1ZSI+SGlnaC1wdXJpdHkgTm9uLUNyb3NzbGlua2VkIEh5YWx1cm9uaWMgQWNpZCBjb21iaW5lZCB3aXRoIEFtaW5vIEFjaWRzICYgUGVwdGlkZXM8L3RkPgogICAgICAgICAgICA8L3RyPgogICAgICAgICAgICA8dHI+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdGl0bGUiPlJlc3VsdHMgVmlzaWJsZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPkluaXRpYWwgaW50ZXJuYWwgcGx1bXBpbmcgaW4gM+KAkzUgZGF5czsgUGVhayBza2luIHJhZGlhbmNlIGFuZCBzbW9vdGhuZXNzIGF0IDLigJM0IHdlZWtzPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Mb25nZXZpdHk8L3RkPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXZhbHVlIj40IHRvIDYgTW9udGhzIChFeHRyZW1lbHkgc2NhbGFibGUgYW5kIGVuaGFuY2VkIHRocm91Z2ggcmVjb21tZW5kZWQgbWFpbnRlbmFuY2UpPC90ZD4KICAgICAgICAgICAgPC90cj4KICAgICAgICAgICAgPHRyPgogICAgICAgICAgICAgICAgPHRkIGNsYXNzPSJmZWF0dXJlLXRpdGxlIj5Eb3dudGltZTwvdGQ+CiAgICAgICAgICAgICAgICA8dGQgY2xhc3M9ImZlYXR1cmUtdmFsdWUiPk1pbmltYWwgKFRpbnksIHRlbXBvcmFyeSBtaWNyby1idW1wcyBhdCBpbmplY3Rpb24gcG9pbnRzIHRoYXQgbmF0dXJhbGx5IGRpc3BlcnNlIHdpdGhpbiAxMuKAkzI0IGhvdXJzKTwvdGQ+CiAgICAgICAgICAgIDwvdHI+CiAgICAgICAgPC90Ym9keT4KICAgIDwvdGFibGU+CjwvZGl2Pg==[/fusion_code][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"60px\" background_color=\"rgba(223,222,224,0.2)\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\"Key Benefits of Our Skin Boosters Treatments\"[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"timeline-vertical\" columns=\"1\" heading_size=\"3\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" link_type=\"text\" title_size=\"23px\" body_color=\"var(--awb-color6)\" title_color=\"var(--awb-color8)\" backgroundcolor=\"#fff2d6\" icon_circle_radius=\"round\" circlecolor=\"var(--awb-color5)\" circlebordercolor=\"#1d1d1f\" circlebordersize=\"0\" outercirclebordersize=\"1\" icon_size=\"22\" hover_accent_color=\"var(--awb-color6)\" outercirclebordercolor=\"var(--awb-color5)\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color1)\" border_radius_top_left=\"20px\" border_radius_top_right=\"20px\" border_radius_bottom_right=\"20px\" border_radius_bottom_left=\"20px\" margin_bottom=\"0\" icon=\"fa-gem fas\"][fusion_content_box title=\"Intense Hydro-Dermal Infusion\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nSaturates the deeper dermis with high-concentration moisture-binding molecules, eradicating chronic seasonal dryness and internal dullness.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Superficial Line Smoothing\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nEffortlessly softens fine, crepey skin textures, micro-wrinkles, and skin laxity across the face, neck, décolletage, and hands.\r\n\r\n[/fusion_content_box][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\" title=\"Brilliant \"Lit-From-Within\" Glow\"]\r\n\r\nIgnites a visible, long-lasting cellular radiance, delivering the highly coveted healthy, plump, and luminous \"glass skin\" appearance.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Natural Bio-Remodeling\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nDirectly stimulates fibroblasts to naturally upgrade your skin\'s own elasticity and tone without altering your facial geometry or expressions.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Zero Social Interruption\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-gem fas\" iconcolor=\"var(--awb-color1)\" circlecolor=\"var(--awb-color5)\" outercirclebordercolor=\"var(--awb-color5)\" circlebordercolor=\"var(--awb-custom_color_1)\"]\r\n\r\nAn ultra-efficient, highly comfortable treatment with negligible downtime, perfectly matching the schedule of Dubai\'s premium high-end routine.\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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_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=\"80px\" padding_top=\"80px\"][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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_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=\"40px\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" font_size=\"35px\"]\r\n\r\nFAQ\r\n\r\n[/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=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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_accordion border_size=\"1\" title_tag=\"div\" icon_size=\"14\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" inactive_icon=\"fa-caret-right fas\" active_icon=\"fa-caret-down fas\" divider_line=\"yes\" divider_color=\"rgba(79,134,216,0.2)\" fusion_font_variant_title_font=\"600\" title_text_transform=\"var(--awb-typography1-text-transform)\" icon_box_color=\"rgba(79,134,216,0.1)\" fusion_font_variant_content_font=\"400\" content_text_transform=\"var(--awb-typography4-text-transform)\" toggle_hover_accent_color=\"var(--awb-custom_color_1)\" padding_top=\"10px\" padding_bottom=\"10px\" icon_color=\"var(--awb-color7)\" background_color=\"rgba(223,222,224,0.25)\" border_color=\"var(--awb-color2)\" icon_boxed_mode=\"no\" content_color=\"var(--awb-color6)\" divider_hover_color=\"#4e85d8\" icon_alignment=\"left\" toggle_active_accent_color=\"var(--awb-custom_color_1)\" type=\"toggles\" boxed_mode=\"yes\" title_color=\"var(--awb-color8)\" hover_color=\"rgba(255,195,19,0.06)\"][fusion_toggle title=\"Will skin boosters change my facial features or make me look puffy?\" open=\"no\"]\r\n\r\nAbsolutely not. Unlike traditional dermal fillers, skin boosters utilize completely fluid, un-linked Hyaluronic Acid that disperses evenly throughout the skin layers. They are scientifically engineered to strictly improve skin quality, thickness, and hydration without adding artificial structure or changing your unique facial features.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"How many skin booster sessions are recommended to see optimal results?\" open=\"no\"]\r\n\r\nWhile a single session noticeably boosts internal hydration, achieving an optimal luxury result typically requires an initial protocol of 2 to 3 sessions, spaced 4 weeks apart. This establishes a deep moisture reservoir that can be effortlessly maintained with a single touch-up every 6 months.\r\n\r\n[/fusion_toggle][fusion_toggle title=\"What is the exact difference between a skin booster injection and a high-end topical serum?\" open=\"no\"]\r\n\r\nTopical serums contain large molecular structures that cannot bypass the skin\'s protective epidermal barrier, providing only brief surface-level hydration. Skin boosters are injected directly beneath this barrier, delivering high-concentration nutrients straight to the living dermal cells for authentic, deep rejuvenation.\r\n\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]","PRP","","inherit","closed","closed","","1193-revision-v1","","","2026-06-07 13:07:16","2026-06-07 13:07:16","","1193","https://dr.frex.digital/?p=1194","0","revision","","0");

INSERT IGNORE INTO `wp_posts` VALUES 
("1195","1","2026-06-07 13:11:31","2026-06-07 13:11:31","[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" 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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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://dr.frex.digital/wp-content/uploads/2026/06/BG04-scaled.jpg\" padding_top=\"120px\" padding_bottom=\"120px\"][fusion_builder_row][fusion_builder_column type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"regular\" transform_hover_element=\"self\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" 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=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" scroll_reveal_effect=\"color_change\" scroll_reveal_basis=\"chars\" scroll_reveal_behavior=\"always\" scroll_reveal_duration=\"500\" scroll_reveal_stagger=\"200\" scroll_reveal_delay=\"0\" scroll_reveal_above_fold=\"yes\" marquee_direction=\"left\" marquee_mask_edges=\"no\" marquee_speed=\"15000\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"once\" highlight_animation_duration=\"1500\" highlight_width=\"9\" highlight_smudge_effect=\"no\" highlight_top_margin=\"0\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"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\"]Premium PRP Therapy in Dubai[/fusion_title][fusion_text animation_direction=\"left\" animation_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=\"22px\"]<p>Harness the regenerative power of your own growth factors to reverse hair thinning, erase under-eye fatigue, and organically deeply rebuild your skin’s vitality.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"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\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" padding_top=\"80px\" padding_bottom=\"40px\" padding_right=\"0px\" padding_left=\"0px\" menu_anchor=\"prp\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"avada\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" background_slider_skip_lazy_loading=\"no\" background_slider_loop=\"yes\" background_slider_pause_on_hover=\"no\" background_slider_slideshow_speed=\"5000\" background_slider_animation=\"fade\" background_slider_direction=\"up\" background_slider_animation_speed=\"800\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" filter_type=\"regular\" filter_hover_element=\"self\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"100\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" transform_type=\"